* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
 /* Navbar */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            z-index: 1001;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #FFD700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .contact-btn {
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border: none;
            border-radius: 25px;
            color: #0a0a0a;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }

        .mobile-contact {
            display: none;
        }

        .desktop-contact {
            display: block;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 3px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Demo Content */
        .content {
            margin-top: 80px;
            padding: 2rem;
            text-align: center;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                flex-direction: column;
                background: rgba(10, 10, 10, 0.98);
                width: 70%;
                height: 100vh;
                padding: 5rem 2rem 2rem;
                gap: 2rem;
                transition: right 0.3s ease-in-out;
                border-left: 1px solid rgba(255, 215, 0, 0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                opacity: 0;
                transform: translateX(20px);
                animation: fadeInRight 0.5s forwards;
            }

            .nav-links.active li:nth-child(1) {
                animation-delay: 0.1s;
            }

            .nav-links.active li:nth-child(2) {
                animation-delay: 0.2s;
            }

            .nav-links.active li:nth-child(3) {
                animation-delay: 0.3s;
            }

            .nav-links.active li:nth-child(4) {
                animation-delay: 0.4s;
            }

            .nav-links.active li:nth-child(5) {
                animation-delay: 0.5s;
            }

            .nav-links.active li:nth-child(6) {
                animation-delay: 0.6s;
            }

            .nav-links a {
                font-size: 1.2rem;
            }

            .mobile-contact {
                display: block;
                margin-top: 1rem;
            }

            .desktop-contact {
                display: none;
            }

            .nav-container {
                padding: 1rem 1.5rem;
            }

            .logo {
                font-size: 1.5rem;
            }
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 480px) {
            .nav-links {
                width: 80%;
            }

            .logo {
                font-size: 1.3rem;
            }
        }

               /* City Selector Section */
        .city-section {
            width: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            padding: 3rem 2rem;
            margin: 2rem 0;
        }

        .city-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .city-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

      
        .city-selector {
            width: 100%;
            position: relative;
            display: inline-block;
            z-index: 999;
        }

        .city-dropdown {
            padding: 1rem 3rem 1rem 2rem;
            background: rgba(26, 26, 26, 0.95);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 30px;
            color: #FFD700;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            appearance: none;
             width: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFD700' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.5rem center;
        }

        .city-dropdown:hover {
            border-color: #FFD700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        .city-dropdown:focus {
            outline: none;
            border-color: #FFA500;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
        }

        .city-dropdown option {
            background: #1a1a1a;
            color: #FFD700;
            padding: 1rem;
        }

        /* Selected City Display */
        .selected-city-display {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            display: none;
            animation: fadeIn 0.5s;
        }

        .selected-city-display.active {
            display: block;
        }

        .selected-city-display h3 {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .selected-city-display p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* City Grid (Optional - shows available cities) */
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .city-card {
            padding: 1rem;
            background: rgba(26, 26, 26, 0.5);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .city-card:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: #FFD700;
            transform: translateY(-3px);
        }

        .city-card span {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .city-section {
                padding: 2rem 1rem;
            }

            .city-title {
                font-size: 2rem;
            }

            .city-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .city-dropdown {
                min-width: 250px;
                font-size: 1rem;
                padding: 0.9rem 2.5rem 0.9rem 1.5rem;
            }

            .city-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 0.8rem;
            }

            .city-card {
                padding: 0.8rem;
            }

            .city-card span {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .city-title {
                font-size: 1.5rem;
            }

            .city-subtitle {
                font-size: 0.9rem;
            }

            .city-dropdown {
                min-width: 100%;
                max-width: 300px;
            }

            .city-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        


        /* Header */
        header {
            margin-top: 80px;
            height: 90vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Full screen background video */
        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* Dark overlay for better text visibility */
        .header-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        /* Animated gradient overlay */
        .header-content::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            animation: pulse 4s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        /* Content overlay */
        .overlay-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            color: white;
        }

        .overlay-content h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
            font-weight: bold;
        }

        .overlay-content p {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .overlay-content .cta-button {
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .overlay-content .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                margin-top: 60px;
                height: 70vh;
            }

            .overlay-content h1 {
                font-size: 2.5rem;
            }

            .overlay-content p {
                font-size: 1.2rem;
            }

            .overlay-content .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }
.header-content p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;

}

.cta-primary,
.cta-secondary {
    padding: .5rem .5rem;
    font-size: 12px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.cta-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* Model Showcase */
.showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #999;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.model-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(255, 215, 0, 0.1);
    cursor: pointer;
}

.model-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.model-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.model-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.model-card:hover .model-image::after {
    left: 100%;
}

.model-image img {
    width: 100%;
    height: 100%;
}

.model-info {
    padding: 1.5rem;
}

.model-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.model-info p {
    color: #999;
    margin-bottom: 1rem;
}

.model-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2%;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.stat {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 4%
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
}

.stat-label {
    font-size: 1rem;
    color: #a9a9a9;
}

/* Model Showcase Sections */
.showcase-sections {
    padding: .5rem 0;
}

.showcase-section {
    max-width: 1400px;
    margin: 0 auto 0rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-section:nth-child(even) {
    direction: rtl;
}

.showcase-section:nth-child(even)>* {
    direction: ltr;
}

.section-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.5s;
}

.section-image:hover {
    transform: scale(1.02);
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
    z-index: 2;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
}

.section-content {
    padding: 2rem;
}

.section-number {
    font-size: 1rem;
    color: #FFD700;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    line-height: 1.2;
}

.section-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 2rem;
    
    text-align: justify;
}

.section-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.section-features li {
    padding: 0.8rem 0;
    color: #999;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-features li::before {
    content: '✦';
    color: #FFD700;
    font-size: 1.2rem;
}

.section-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.section-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Rate Section */
.rate-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 2rem;
      overflow-x: auto;

}

.rate-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rate-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rate-header p {
    font-size: 1rem;
    color: #999;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pricing-table thead {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.pricing-table thead th {
    padding: 1rem 1.5rem;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
}

.pricing-table thead th:first-child {
    border-radius: 20px 0 0 0;
}

.pricing-table thead th:last-child {
    border-radius: 0 20px 0 0;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.01);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 1rem 1.5rem;
    color: #ccc;
    font-size: 1.05rem;
}

.pricing-table tbody td:first-child {
    color: #FFD700;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-table tbody td:first-child::before {
    content: '⭐';
    font-size: 1.2rem;
}

.price-cell {
    color: #FFD700 !important;
    font-weight: bold;
    font-size: 1.3rem;
}

.rate-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #FFD700;
    border-radius: 10px;
}

.rate-note p {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.8;
}

.rate-cta {
    text-align: center;
    margin-top: 3rem;
}

.rate-cta-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.rate-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}
 /* Service Locations Section */
        .locations-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: .5rem 2rem;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .locations-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .locations-header h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .locations-header p {
            font-size: 1.2rem;
            color: #999;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .location-card {
            background: #1a1a1a;
            padding: 1.5rem 1rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(255, 215, 0, 0.1);
            transition: all 0.4s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.5s;
        }

        .location-card:hover::before {
            left: 100%;
        }

        .location-card:hover {
            transform: translateY(-10px);
            border-color: #FFD700;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
            background: linear-gradient(135deg, #1a1a1a, #222);
        }

        .location-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .location-name {
            font-size: 1.8rem;
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .location-tag {
            font-size: 0.95rem;
            color: #999;
            position: relative;
            z-index: 1;
        }

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    font-size: 1.2rem;
    color: #999;
}

.faq-container {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #1a1a1a;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #222;
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: #FFD700;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #0f0f0f;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-column h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FFD700;
}

.newsletter-form button {
    padding: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 968px) {
  

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .showcase-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-section:nth-child(even) {
        direction: ltr;
    }

    .section-image {
        height: 400px;
    }

    .section-content h2 {
        font-size: 2rem;
    }

    .image-placeholder {
        font-size: 5rem;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .section-content {
        padding: 0;
    }
    .showcase {
        padding: 0;
    }
}

