:root {
    --primary: #c79800;
    --dark: #0d143f;
    --light: #ffffffde;
    --accent: #2b5337;
    --gray: #566117;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin:  auto;
    padding: 0 15px;

}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
   
    padding: 15px 0;
    background-color:rgb(6, 31, 23);
    transition: all calc(00.3s);
    
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;   
}


.logo-img img {
  height: 70px;   /* beddel hadii uu weyn yahay */
  width: auto;
  display: block;
}

.logo-img {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    color: var(--light);
    font-size: 16px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    position: relative;
    margin: 0 12px;
    list-style: none;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--light);
    padding: 8px 0;
    position: relative;
}

.nav-menu li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.nav-menu li a:hover:after,
.nav-menu li.active a:after {
    width: 100%;
    transform: rotate(360deg);
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: var(--primary);
    
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
  color: var(--primary);
  transform: rotate(90deg);
}
/* hero section */

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: pulse 2s infinite;
        }

        .progress-bar {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin: 0 auto;
        }

        .progress {
            height: 100%;
            background: linear-gradient(to right, var(--primary), var(--accent));
            width: 0%;
            border-radius: 10px;
            animation: loading 2s ease-in-out forwards;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.squarespace-cdn.com/content/v1/54c6bc46e4b0798595118465/4a7388ec-261d-49cb-8b2a-2da86c525a76/Karimah_Gheddai_Photography_JL_Royal_Ambassador_Banquet_Hall.jpeg?format=2500w');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
            transform: scale(1.1);
            animation: kenBurns 30s infinite alternate;
        }

        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(36, 28, 41, 0.37) 0%, rgba(146, 146, 146, 0.7) 100%);
            z-index: 2;
        }

        /* Animated Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle 15s infinite linear;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 4;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Column */
        .hero-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease 0.8s forwards;
        }

        .studio-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-transform: uppercase;
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
            animation: badgeGlow 3s infinite alternate;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--light), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 500px;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 35px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-services {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--light);
            box-shadow: 0 10px 30px rgba(245, 245, 245, 0.4);
        }

        .btn-book {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0, 201, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 201, 255, 0.5);
        }

        .btn i {
            font-size: 1.1rem;
        }

        /* Right Column - Services */
        .hero-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1s ease 1s forwards;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transform: translateX(-100%);
        }

        .service-card:hover::before {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.03);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: var(--accent);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            box-shadow: 0 10px 20px rgba(255, 77, 141, 0.3);
            animation: iconFloat 3s infinite ease-in-out;
        }

        .service-icon:nth-child(2) {
            animation-delay: 0.5s;
        }

        .service-icon:nth-child(3) {
            animation-delay: 1s;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--light);
        }

        .service-card p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            animation: fadeInUp 1s ease 1.5s forwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            opacity: 0;
            animation: fadeIn 1s ease 2s forwards;
        }

        .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid var(--light);
            border-radius: 20px;
            position: relative;
            margin: 0 auto 10px;
        }

        .wheel {
            width: 4px;
            height: 10px;
            background: var(--accent);
            border-radius: 2px;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s infinite;
        }

        .scroll-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Animations */
        @keyframes loading {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes kenBurns {
            0% { transform: scale(1.1) translate(0, 0); }
            100% { transform: scale(1.15) translate(-20px, 20px); }
        }

        @keyframes floatParticle {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(-1000px) translateX(100px); }
        }

        @keyframes slideInLeft {
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 5px 20px rgba(255, 77, 141, 0.3); }
            50% { box-shadow: 0 5px 30px rgba(255, 77, 141, 0.6); }
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes scrollWheel {
            0% { transform: translateX(-50%) translateY(0); opacity: 1; }
            100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-left, .hero-right {
                transform: none;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .services-container {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 2.4rem;
            }

            .services-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .stats {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .service-card {
                padding: 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }


/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-main-title {
    font-size: 32px;
    position: relative;
    padding-bottom: 12px;
}

.section-main-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(182, 141, 64, 0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--primary);
    color: var(--light);
}

.service-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Videography Section */
.videography {
    background: var(--light);
}

.video-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.category-btn {
    padding: 8px 16px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(182, 141, 64, 0.05);
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 40px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.video-item:hover .play-overlay i {
    transform: scale(1.1);
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.video-info p {
    font-size: 14px;
    color: var(--dark);
    opacity: 0.8;
}

/* Photography Section */
.photography {
    background: var(--dark);
    color: var(--light);
}

.photography .section-main-title,
.photography .section-subtitle {
    color: var(--primary);
}

.photography-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.photography-btn {
    padding: 8px 16px;
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.photography-btn:hover,
.photography-btn.active {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.photography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    height: 220px;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.photo-thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover .photo-thumbnail img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 40px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay i {
    transform: scale(1.1);
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(15px);
    transition: transform 0.3s ease;
    opacity: 0;
}

.photo-item:hover .photo-info {
    transform: translateY(0);
    opacity: 1;
}

.photo-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary);
}

.photo-info p {
    font-size: 14px;
    color: var(--light);
}

/* Graphic Design Section */
    .graphic-design {
        background: var(--dark);
        color: var(--light);
    }

    .graphic-design .section-main-title,
    .graphic-design .section-subtitle {
        color: var(--primary);
    }

    .design-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .design-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 250px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .design-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .design-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .design-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(18, 38, 32, 0.9), transparent);
        display: flex;
        align-items: flex-end;
        opacity: 0;
        transition: all 0.3s ease;
        padding: 20px;
    }

    .design-card:hover .design-overlay {
        opacity: 1;
    }

    .design-card:hover .design-img {
        transform: scale(1.1);
    }

    .design-info {
        text-align: left;
        color: var(--light);
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .design-card:hover .design-info {
        transform: translateY(0);
    }

    .design-title {
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--primary);
    }

    .design-info p {
        font-size: 14px;
    }

    /* Portfolio Section */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .portfolio-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 220px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .portfolio-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .portfolio-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(182, 141, 64, 0.9) 0%, rgba(214, 173, 96, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-item:hover .portfolio-img {
        transform: scale(1.1);
    }

    .portfolio-info {
        text-align: center;
        color: white;
        transform: scale(0.9);
        transition: all 0.3s ease;
    }

    .portfolio-item:hover .portfolio-info {
        transform: scale(1);
    }

    .portfolio-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    /* Lightbox Styles */
    .lightbox {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .lightbox.active {
        display: flex;
    }

    .lightbox-content {
        position: relative;
        width: 90%;
        max-width: 900px;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    }

    .lightbox-info {
        color: white;
        text-align: center;
        margin-top: 20px;
    }

    .lightbox-info h3 {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .lightbox-info p {
        font-size: 16px;
        color: var(--light);
    }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 30px;
        cursor: pointer;
        transition: color 0.3s;
        z-index: 1001;
    }

    .lightbox-close:hover {
        color: var(--primary);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        transform: translateY(-50%);
    }

    .lightbox-prev,
    .lightbox-next {
        color: white;
        font-size: 40px;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        color: var(--primary);
        background: rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 768px) {
        .lightbox-prev,
        .lightbox-next {
            font-size: 30px;
            width: 40px;
            height: 40px;
        }
        
        .lightbox-close {
            top: 10px;
            right: 10px;
            font-size: 24px;
        }
    }

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0;
}

.booking-container {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-section,
.calendar-section,
.booking-details {
    flex: 1;
    min-width: 280px;
    padding: 30px;
}

.service-section {
    background: var(--light);
}

.service-section h3,
.booking-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
}

.calendar-section {
    background: white;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.booking-details {
    background: var(--light);
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    padding: 15px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
}

.service-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-option.selected {
    border-color: var(--primary);
    background: rgba(182, 141, 64, 0.1);
}

.service-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(182, 141, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.service-info p {
    color: var(--gray);
    font-size: 13px;
}

.service-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* Calendar Styles */
.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-navigation button {
    background: var(--dark);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.calendar-navigation button:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.month-year {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 14px;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    font-size: 14px;
}

.day:hover {
    background: rgba(182, 141, 64, 0.2);
}

.day.selected {
    background: var(--primary);
    color: white;
}

.day.inactive {
    color: #ccc;
    cursor: default;
}

.day.today {
    border: 2px solid var(--primary);
}

.day.has-booking::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

/* Booking Summary */
.booking-summary {
    padding: 20px;
    background: rgb(29, 36, 52);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-summary h3 {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 18px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--accent);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #555;
    font-size: 14px;
    color: var(--light);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item.user-input {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.summary-item.user-input label {
    font-size: 13px;
    color: #bbb;
    font-weight: 500;
}

.summary-item.user-input input,
.summary-item.user-input textarea {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--dark);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.summary-item.user-input input:focus,
.summary-item.user-input textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(182, 141, 64, 0.1);
}

.book-btn {
    width: 100%;
    padding: 14px;
    background: var(#183321);
    color: var(#eb8d8d);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.book-btn:hover:not(:disabled) {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 141, 64, 0.3);
}

.book-btn:disabled {
    background: var(--gray);
    
    
}

/* Booking Success Message */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.booking-success h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 24px;
}

.booking-success p {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 16px;
}

/* About Section */
.about {
    background: #e0e9d3;
    padding: 70px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 28px;
    color: #183321;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.about-divider {
    height: 2px;
    background: linear-gradient(to right, #183321, #e74c3c);
    width: 50%;
    margin: 20px 0;
    border-radius: 5px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}





/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: var(--accent);
    transform: rotate(10deg);
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-details p {
    color: var(--gray);
    font-size: 14px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    background: white;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(182, 141, 64, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 0;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    color: var(--primary);
}

.footer-widget h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--primary);
}

.footer-about p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 8px;
    list-style: none;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(3px);
}

.footer-links li a {
    color: var(--light);
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--primary);
}

.footer-newsletter p {
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    background: rgba(244, 235, 208, 0.1);
    color: var(--light);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 0 15px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent);
}

.social-icons {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(182, 141, 64, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-icons a i {
    color: var(--light);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 235, 208, 0.1);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

/* Lightbox Styles */
.lightbox,
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active,
.video-lightbox.active {
    display: flex;
}

.lightbox-content,
.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.video-lightbox-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-lightbox-player iframe,
.video-lightbox-player video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.lightbox-info,
.video-lightbox-info {
    color: white;
    text-align: center;
    margin-top: 20px;
}

.lightbox-info h3,
.video-lightbox-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.lightbox-info p,
.video-lightbox-info p {
    font-size: 16px;
    color: var(--light);
}

.lightbox-close,
.video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
}

.lightbox-close:hover,
.video-lightbox-close:hover {
    color: var(--primary);
}

.lightbox-nav,
.video-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next,
.video-lightbox-prev,
.video-lightbox-next {
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.video-lightbox-prev:hover,
.video-lightbox-next:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1001;
    transition: width 0.2s ease;
}

/* Designer Elements */
.designer-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    transition: all 20s linear;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.square {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 69.3px solid var(--primary);
    opacity: 0.1;
}