    
:root {
    --primary-color: #BA824F;
    --background-color: #11141b;
    --text-color: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #11141b, #1a1a1a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loading Screen */
     .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
      }

      .loading-logo {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite, rotate 10s linear infinite;
              }

       @keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 15px 0;
        }

        header.scrolled {
            background-color: rgba(17, 20, 27, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(186, 130, 79, 0.1);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            z-index: 1001;
        }

        .logo img {
            width: 140px;
            height: 50px;
            transition: var(--transition);
        }

        /* Desktop Navigation */
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        /* Mobile Menu Button */
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* Mobile Menu */
        @media (max-width: 991px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, rgba(17, 20, 27, 0.98) 0%, rgba(23, 27, 35, 0.98) 100%);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                gap: 30px;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-link {
                font-size: 20px;
                opacity: 0;
                transform: translateY(20px);
                transition: var(--transition);
            }

            .nav-links.active .nav-link {
                opacity: 1;
                transform: translateY(0);
            }

            /* Staggered animation for nav links */
            .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
            .nav-links.active .nav-link:nth-child(6) { transition-delay: 0.6s; }

            /* Menu Toggle Animation */
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
            }
        }

        /* Phone Link Special Styling */
        .nav-link.phone {
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link.phone i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .nav-link.phone:hover i {
            transform: rotate(15deg);
        }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: var(--text-color);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Statement Section */
.statement {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.statement::before,
.statement::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--primary-color);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.statement::before {
    top: -150px;
    left: -150px;
}

.statement::after {
    bottom: -150px;
    right: -150px;
}

.statement h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.4;
    text-align: center;
}

.statement em {
    font-style: normal;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.statement em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.statement em:hover::after {
    transform: scaleX(1);
}

/* Image Split Section */
.image-split {
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex 0.7s ease;
    position: relative;
    overflow: hidden;
}

.split-image:hover {
    flex: 2;
}

.split-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.split-image:hover::before {
    opacity: 0;
}

.split-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.split-image:hover .split-content {
    opacity: 1;
    transform: translateY(0);
}

.split-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.split-description {
    font-size: 16px;
    max-width: 300px;
}
   /* Luxury Decorative Elements */
   .luxury-border {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(186, 130, 79, 0.2);
    pointer-events: none;
    z-index: 9999;
}

.luxury-corner {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    z-index: 10000;
}

.luxury-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.luxury-corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.luxury-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.luxury-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}
/* Process Section */
.process {
    padding: 150px 0;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.process::before,
.process::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #11141b;
    opacity: 0.05;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite alternate;
}

.process::before {
    top: -100px;
    left: -100px;
}

.process::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.process-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.process-item:hover::before {
    opacity: 0.1;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.process-number {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 200;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.process-item:hover .process-number {
    opacity: 1;
    transform: translateY(0);
}

.process-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-description {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* New Section: Inspiration Gallery */
.inspiration-gallery {
    padding: 150px 0;
    background-color: #0d0f14;
    position: relative;
    overflow: hidden;
}

.inspiration-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.inspiration-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

/* Projects Section */
.projects {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.project {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: cover;
    background-position: center;
}

.project.active {
    opacity: 1;
}

.project-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-subtitle {
    font-size: 64px;
    font-weight: 200;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.2s;
}

.project-location {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.4s;
}

.project.active .project-title,
.project.active .project-subtitle,
.project.active .project-location {
    opacity: 1;
    transform: translateY(0);
}

.project-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.project-nav-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.project-nav-dot.active {
    background-color: var(--text-color);
}

/* Contact Section */
.contact {
    padding: 150px 0;
    position: relative;
    background-color: #11141b;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 1px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-control + .form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    pointer-events: none;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: -20px;
    font-size: 12px;
    color: var(--primary-color);
}

.submit-btn {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    padding: 15px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    color: var(--background-color);
}
.background-text {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.background-text p {
    font-size: 20vw;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
}
/* Footer */
footer {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0d0f14;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
}

.footer-content {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Order Call Button */
.order-call {
    position: fixed;
    right: 0;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: right;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 1000;
    transition: var(--transition);
}

.order-call:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .statement h2,
    .contact h2 {
        font-size: 36px;
    }

    .project-title {
        font-size: 64px;
    }

    .project-subtitle {
        font-size: 48px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .image-split {
        flex-direction: column;
        height: auto;
    }

    .split-image {
        height: 50vh;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }
}
/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup.active .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--primary-color);
}

header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 0;
z-index: 1000;
transition: var(--transition);
}

header.scrolled {
background-color:#11141b6b;
backdrop-filter: blur(10px);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-links {
display: flex;
gap: 30px;
}

  .nav-link {
color: var(--text-color);
text-decoration: none;
font-size: 14px;
font-weight: 300;
letter-spacing: 1px;
transition: var(--transition);
position: relative;
overflow: hidden;
}

  .nav-link::before {
content: '';
position: absolute;
bottom: 0;
left: -100%;
width: 100%;
height: 2px;
background-color: var(--primary-color);
transition: var(--transition);
}

.nav-link:hover::before {
left: 0;
}
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, #11141b, #1a1a1a);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .decoration {
            position: absolute;
            pointer-events: none;
            opacity: 0.1;
        }

        .decoration-1 {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            border: 2px solid var(--primary-color);
            animation: rotate 20s linear infinite;
        }

        .decoration-2 {
            bottom: 15%;
            right: 8%;
            width: 150px;
            height: 150px;
            border: 2px solid var(--primary-color);
            animation: rotate 25s linear infinite reverse;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile menu styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(28, 28, 28, 0.9);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-link {
                margin: 10px 0;
            }
        }