﻿


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #ff6b9d;
    --dark: #2d3748;
    --light: #f7fafc;
    --gray: #718096;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

/* Header */
header {
    background: linear-gradient( to top, #0b1f16 0%, /* very dark bottom */
    #163d2b 40%, /* dark middle */
    #1f4f3a 100% /* original color top */
    );
    backdrop-filter: blur(15px);
    color: rgb(0, 0, 0);
    padding: 0.1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 107, 157, 0.2);
}

    header.scrolled {
        padding: 0.1rem 0;
        background: linear-gradient( to top, #06140e 0%, /* extra dark bottom */
        #1f4f3a 50%, /* middle */
        #1f4f3a 100% /* top */
        );
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #fff 0%, #ffd1dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

    .logo:hover {
        transform: scale(1.05);
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

    .nav-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s;
        padding: 0.7rem 1.3rem;
        border-radius: 25px;
        font-weight: 500;
        position: relative;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #0000002f;
            color: #ffffff;
        }

            .nav-links a:hover::after,
            .nav-links a.active::after {
                width: 60%;
            }

.cta-btn {
    background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
    padding: 0.95rem 2.5rem;
    border-radius: 34px;
    text-decoration: none;
    color: #1f2933; /* dark text looks more premium on gold */
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.6px;
    border: 1px solid rgba(234, 179, 8, 0.8);
    box-shadow: 0 12px 32px rgba(234, 179, 8, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}


    .cta-btn:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 22px 55px rgba(234, 179, 8, 0.65), inset 0 2px 4px rgba(255, 255, 255, 0.55);
    }


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: 0.4s;
        border-radius: 2px;
    }

/* Hero Section */
.hero-slider {
    margin-top: 20px;
    position: relative;
    height: 800px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .slide.active {
        opacity: 1;
    }

.slide-1 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/img/carousel-1.jpg');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/img/carousel3.jpg');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),url('/img/carousle2.jpg');
    background-size: cover;
    background-position: center;
}

.slide-content {
    color: white;
    max-width: 900px;
    padding: 3rem;
    animation: slideInUp 1.2s ease-out;
}

    .slide-content h1 {
        font-size: 4.2rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s;
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        text-shadow: 0 6px 35px rgba(0, 0, 0, 0.4);
        line-height: 1.2;
        letter-spacing: 5px;
    }

    .slide-content p {
        font-size: 1.0rem;
        margin-bottom: 2.5rem;
        animation: fadeInUp 1s 0.3s backwards;
        font-weight: 300;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.5px;
    }

.slide-btn {
    background: linear-gradient(to top, #0b1f16 0%, /* very dark bottom */ #163d2b 40%, /* dark middle */ #1f4f3a 100% /* original color top */ );
    /* background: linear-gradient(135deg, #facc15 0%, #fde68a 35%, #eab308 60%, #134e4a 100%); */
    padding: 0.95rem 2.5rem;
    border-radius: 34px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.6px;
    border: 1px solid rgb(21 113 73);
    box-shadow: 0 12px 32px rgb(25 75 53 / 77%), inset 0 1px 2px rgba(255, 255, 255, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .slide-btn:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 22px 55px rgba(234, 179, 8, 0.65), inset 0 2px 4px rgba(255, 255, 255, 0.55);
    }

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border: 2px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); */
}

    .slider-dot:hover {
        background: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }

    .slider-dot.active {
        background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
        width: 45px;
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(255, 107, 157, 0.8);
        /* border-color: var(--accent); */
    }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 7rem 3rem;
    background-color: #d2dcb669;
    position: relative;
    overflow: hidden;
}

/* .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(111, 112, 116, 0.15) 0%, transparent 70%);
            animation: float 20s infinite;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(178, 255, 245, 0.15) 0%, transparent 70%);
            animation: float 25s infinite reverse;
        } */

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-50px, 50px) rotate(180deg);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s ease;
    }

    .about-card:hover::before {
        transform: scaleX(1);
    }

    .about-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.6s;
    }

    .about-card:hover::after {
        opacity: 1;
    }

    .about-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 30px 80px rgba(21, 23, 36, 0.25);
        border-color: #257049;
        background: rgba(255, 255, 255, 0.98);
    }

.about-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(to top, #1f4d38 0%, /* very dark bottom */ #193b2b 40%, /* dark middle */ #23875b 100% /* original color top */ );
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd447; /* classic metallic gold */
    font-size: 2.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgb(29 92 63 / 26%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.about-card:hover .about-icon {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 20px 60px rgba(17, 18, 24, 0.5);
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #085532;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1rem;
}

/* Services */
.services {
    padding: 7rem 3rem;
    background-color: #F1F3E0;
    position: relative;
}

    .services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .services > .container {
        position: relative;
        z-index: 1;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 100%;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    color: var(--dark);
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid #e8eef7;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s;
    }

    .service-card:hover::after {
        opacity: 1;
    }

    .service-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
        border-color: #257049;
        background: linear-gradient(145deg, #ffffff 0%, #f5f8ff 100%);
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgb(117 142 131 / 8%), rgb(15 41 30 / 4%));
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient( 135deg, rgba(240, 240, 240, 0.9), rgba(220, 220, 220, 0.9) );
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.6rem 0;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-time {
    opacity: 0.7;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-weight: 500;
}

.discount-badge {
    opacity: 0.95;
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 107, 157, 0.1));
    padding: 0.6rem;
    border-radius: 10px;
    margin: 0.8rem 0;
    color: var(--accent);
    font-weight: 700;
    border: 1.5px solid rgba(255, 107, 157, 0.3);
}

/* Gallery Section */
.gallery {
    background-color: #f3f3f3;
    padding: 7rem 3rem;
    /* background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%); */
    position: relative;
}

    .gallery::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .gallery > .container {
        position: relative;
        z-index: 1;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    grid-auto-rows: 350px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(8) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        grid-column: span 1;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gallery-item:hover img {
        transform: scale(1.25) rotate(3deg);
        filter: brightness(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(255, 107, 157, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

.gallery-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-text p {
    font-size: 1rem;
    opacity: 0.98;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
    padding: 7rem 3rem;
    background: linear-gradient(to top, #000000 0%, /* extra dark bottom */ #09201691 50%, /* middle */ #09120eaf 100% /* top */ ), url(/img/about.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

    .testimonials::before {
        content: '❝';
        position: absolute;
        top: 5%;
        left: 5%;
        font-size: 15rem;
        color: rgba(255, 255, 255, 0.1);
        font-family: Georgia, serif;
    }

    .testimonials .section-title {
        color: #ffffff !important;
        background: none;
        -webkit-text-fill-color: unset;
    }

    .testimonials .section-subtitle {
        color: rgba(255, 255, 255, 0.95) !important;
    }

.testimonial-slider {
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

    .testimonial.active {
        display: block;
        animation: fadeIn 0.8s;
    }

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #ffd447;
    font-weight: bold;
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.4);
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    font-size: 1.0rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 300;
}

.testimonial-author {
    font-weight: 600;
    color: #1f4f3a;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: var(--gray);
    font-size: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.test-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid white;
    color: #1f4f3a;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .test-nav-btn:hover {
        background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
        color: rgb(0, 0, 0);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        transform: scale(1.1);
    }

/* Contact */
.contact {
    padding: 7rem 3rem;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #0f291d 100% /* top */ );
    color: white;
    position: relative;
    overflow: hidden;
}

    .contact::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-left {
    text-align: left;
}

    .contact-left .section-title {
        text-align: left;
        color: #e8ce04 !important;
        background: none;
        -webkit-text-fill-color: unset;
        font-size: 2.8rem;
    }

    .contact-left .section-subtitle {
        text-align: left;
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 2.5rem;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
    backdrop-filter: blur(15px);
    padding: 0.8rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

    .contact-item:hover {
        background: linear-gradient(135deg, #facc15 0%, #fde68a 35%, #eab308 60%, #e8eb00 100%);
        transform: translateX(15px);
        border-color: rgba(255, 107, 157, 0.4);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.5s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    transform: scale(1.1) rotateY(360deg);
}

.contact-item strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f4f3a;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.85);
}

/* Contact Form */
.contact-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

    .contact-right h3 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .contact-right p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: all 0.3s;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
    color: rgb(0, 0, 0);
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.3);
    letter-spacing: 1px;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(2, 2, 2, 0.5);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

.book-now-btn {
    display: none;
}

/* Footer */
footer {
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    color: #cbd5e0;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1rem;
}

    footer p {
        max-width: 1200px;
        margin: 0 auto;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    nav {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient( to top, #0b1f16 0%, /* very dark bottom */
        #163d2b 40%, /* dark middle */
        #1f4f3a 100% /* original color top */
        );
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        transition: 0.4s;
        gap: 1rem;
    }

        .nav-links.active {
            left: 0;
        }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .hero-slider {
        height: 500px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .service-card {
        padding: 1.6rem 1.3rem;
    }

    .service-icon {
        font-size: 2.5rem;
        width: 75px;
        height: 75px;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        grid-auto-rows: 250px;
    }

    .gallery-item {
        border-radius: 18px;
    }

    .gallery-text h3 {
        font-size: 1.3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-left {
        text-align: center;
    }

        .contact-left .section-title {
            text-align: center;
            font-size: 2.2rem;
        }

        .contact-left .section-subtitle {
            text-align: center;
        }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .contact-right {
        padding: 2.5rem;
    }

        .contact-right h3 {
            font-size: 1.5rem;
        }

    .about, .services, .testimonials, .contact, .gallery {
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    .gallery-text h3 {
        font-size: 1.1rem;
    }

    .contact-right {
        padding: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .about, .services, .testimonials, .contact, .gallery {
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-slider {
        height: 556px;
    }

    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card > p {
        font-size: 0.85rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-text h3 {
        font-size: 1.1rem;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Before & After Section */
.before-after {
    background-color: #d2dcb669;
    padding: 5rem 2rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.transformation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

    .transformation-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }

.transformation-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

    .transformation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.transformation-card:hover .transformation-image img {
    transform: scale(1.1);
}

.transformation-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .transformation-content h3 {
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
    }

    .transformation-content p {
        color: var(--gray);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

.service-badge {
    background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
    color: rgb(0, 0, 0);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
}

/* Client Photos Slider */
.client-photos {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 50%, rgba(255, 107, 157, 0.08) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

    .client-photos::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .client-photos .container {
        position: relative;
        z-index: 1;
    }

    .client-photos .section-title {
        font-size: 2.8rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

.client-slider-container {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    padding: 2rem 0;
}

.client-slider {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1.5rem 0;
    width: 100%;
    /* Hide scrollbar but keep scrolling functional */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    /* Hide scrollbar for Chrome, Safari and Opera */
    .client-slider::-webkit-scrollbar {
        display: none;
    }

.client-photo {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    position: relative;
    border: 2px solid transparent;
}

    .client-photo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        z-index: 10;
    }

    .client-photo:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 25px 70px rgba(102, 126, 234, 0.35);
        border-color: rgba(255, 107, 157, 0.3);
    }

    .client-photo img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        position: relative;
        transition: transform 0.5s ease;
    }

    .client-photo:hover img {
        transform: scale(1.08);
    }

.client-info {
    padding: 1.8rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #ffffff 0%, rgba(102, 126, 234, 0.02) 100%);
}

    .client-info h4 {
        font-size: 1.2rem;
        color: var(--dark);
        margin-bottom: 0.5rem;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
    }

    .client-info p {
        color: var(--gray);
        font-size: 0.9rem;
        margin: 0.3rem 0;
    }

.client-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

.client-quote {
    font-style: italic;
    color: var(--primary);
    margin-top: 0.8rem;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

    .slider-btn:hover {
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
        background: linear-gradient(135deg, var(--secondary), var(--primary));
    }

    .slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .slider-btn.prev {
        left: -5px;
    }

    .slider-btn.next {
        right: -5px;
    }

/* Client counter badge */
.client-counter {
    position: absolute;
    top: -30px;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* Instagram Section */
.instagram {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.05), rgba(233, 30, 99, 0.05));
    padding: 5rem 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instagram-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

    .instagram-post:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(244, 67, 54, 0.2);
    }

.post-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

    .post-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.instagram-post:hover .post-image img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.post-caption {
    padding: 1.5rem;
}

    .post-caption h4 {
        color: var(--dark);
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-family: 'Playfair Display', serif;
    }

    .post-caption p {
        color: var(--gray);
        font-size: 0.9rem;
    }

.instagram-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

    .instagram-footer h3 {
        font-size: 2rem;
        color: var(--dark);
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
    }

    .instagram-footer p {
        color: var(--gray);
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

.instagram-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E4405F, #F77737);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

    .instagram-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 45px rgba(244, 67, 54, 0.4);
    }

/* Responsive Styles */
@media (max-width: 1100px) {
    .transformation-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .client-slider {
        gap: 2rem;
    }

    .client-photo {
        width: 260px;
        min-width: 260px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .client-slider {
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .client-photo {
        width: 240px;
        min-width: 240px;
    }

    .client-slider-container {
        width: 100%;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

        .slider-btn.prev {
            left: 5px;
        }

        .slider-btn.next {
            right: 5px;
        }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .before-after, .client-photos, .instagram {
        padding: 3rem 1rem;
    }

        .client-photos .section-title {
            font-size: 2rem;
        }

    .client-counter {
        top: -25px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .transformation-card {
        margin-bottom: 1rem;
    }

    .client-slider {
        gap: 1rem;
        padding: 0.8rem 0;
    }

    .client-photo {
        width: 200px;
        min-width: 200px;
    }

        .client-photo img {
            height: 160px;
        }

    .client-info {
        padding: 1rem;
    }

        .client-info h4 {
            font-size: 0.95rem;
        }

    .client-stars {
        font-size: 0.85rem;
    }

    .client-quote {
        font-size: 0.75rem;
        margin-top: 0.4rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .post-stats {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .instagram-footer {
        padding: 2rem 1rem;
    }

        .instagram-footer h3 {
            font-size: 1.5rem;
        }

    .transformation-image {
        height: 200px;
    }

    .client-photos .section-title {
        font-size: 1.8rem;
    }

    .client-counter {
        top: -20px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Expert Team Section */
.expert-team {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s ease;
    }

    .why-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        border-color: rgba(102, 126, 234, 0.3);
    }

        .why-card:hover::before {
            transform: scaleX(1);
        }

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.why-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

    .why-features li {
        color: var(--gray);
        margin: 0.6rem 0;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .why-features li:hover {
            color: var(--primary);
            padding-left: 0.5rem;
        }

.why-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.8rem;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* TEAM MEMBER CARD */
.team-member {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
    }

/* IMAGE SECTION (LEFT) */
.team-image {
    position: relative;
    min-width: 370px;
    max-width: 237px;
    border-radius: 18px;
    overflow: hidden;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
    }

/* BADGE */
/* .team-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */

/* INFO SECTION (RIGHT) */
.team-info {
    flex: 1;
}

/* NAME */
.team-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    /* font-family: 'Playfair Display', serif; */
}

/* ROLE */
.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

/* EXPERIENCE */
.team-experience {
    display: inline-block;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

/* SPECIALTIES */
.team-specialties {
    list-style: none;
    display: grid;
    /* grid-template-columns: repeat(2, minmax(160px, 1fr)); */
    gap: 0.6rem 1.2rem;
    padding: 0;
    margin: 0;
}

    .team-specialties li {
        font-size: 0.95rem;
        color: var(--gray);
        position: relative;
        padding-left: 18px;
    }

        .team-specialties li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 0.75rem;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .team-image {
        max-width: 100%;
        width: 100%;
    }

    .team-specialties {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Premium Pricing Section */
.premium-pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.08) 0%, rgba(255, 107, 157, 0.06) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .pricing-card.featured {
        transform: scale(1.05);
        border-color: var(--primary);
        box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
    }

        .pricing-card.featured::before {
            content: '⭐ MOST POPULAR ⭐';
            position: absolute;
            top: -35px;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            transform: rotate(-5deg);
        }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

.price-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.price-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

    .price-features li {
        color: var(--gray);
        margin: 0.7rem 0;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }

        .price-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

.price-savings {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
    border-left: 4px solid var(--accent);
}

    .price-savings strong {
        color: var(--accent);
        font-size: 1.1rem;
    }

.price-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: auto;
}

    .price-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    }

@media (max-width: 768px) {
    .premium-pricing {
        padding: 3rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.8rem;
    }

        .pricing-card.featured {
            transform: scale(1);
        }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

    .price-amount {
        font-size: 2rem;
    }
}

/* Expert Team Section */
.expert-team {
    padding: 5rem 2rem;
    background-color: #d4d7cd69;
    position: relative;
    overflow: hidden;
}

    .expert-team::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.team-member {
    background: linear-gradient(135deg, #facc15 0%, /* rich gold */ #fde68a 35%, /* soft highlight */ #eab308 60%, /* deep gold */ #e8eb00 100% /* very subtle teal depth */ );
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

    .team-member:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        border-color: rgba(102, 126, 234, 0.3);
    }

.team-image {
    position: relative;
    overflow: hidden;
    /* height: 320px;
            background: linear-gradient(135deg, var(--primary), var(--secondary)); */
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-badge {
    max-width: fit-content;
    /* max-block-size: fit-content; */
    /* position: absolute; */
    top: 15px;
    right: 15px;
    margin-bottom: 20px;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.team-info {
    /* padding: 2rem; */
}

.team-name {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.team-role {
    color: #1f4f3a;
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.team-experience {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    /* display: flex; */
    align-items: center;
    gap: 0.5rem;
}

.team-specialties {
    list-style: none;
    margin: 1rem 0;
    padding-top: 1rem;
    /* border-left: 2px solid rgba(5, 5, 5, 0.062); */
}

    .team-specialties li {
        color: #174531;
        font-size: 0.9rem;
        margin: 0.2rem 0;
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }

        .team-specialties li::before {
            font-size: 16px;
            content: '★';
            color: #235139;
        }

.team-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.team-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.team-reviews {
    color: var(--gray);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .expert-team {
        padding: 3rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .team-image {
        height: 260px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-name {
        font-size: 1.2rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #eafffd 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

    .how-it-works::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
}

    .process-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #1f4f3a 100% /* top */ );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd447;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.step-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-checklist {
    list-style: none;
    text-align: left;
    background: rgba(102, 126, 234, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

    .step-checklist li {
        color: var(--gray);
        font-size: 0.9rem;
        margin: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

        .step-checklist li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
        }

@media (max-width: 768px) {
    .how-it-works {
        padding: 3rem 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.1rem;
    }
}

/* Premium Footer Section */
footer {
    background: linear-gradient(to top, #06140e 0%, /* extra dark bottom */ #1f4f3a 50%, /* middle */ #0f291d 100% /* top */ );
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin: 0.8rem 0;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 0.5rem;
        }

.footer-hours {
    background: rgba(102, 126, 234, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary);
}

    .footer-hours h4 {
        color: white;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }

    .footer-hours p {
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }

.footer-contact {
    background: rgba(255, 107, 157, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--accent);
}

    .footer-contact h4 {
        color: white;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }

    .footer-contact a {
        color: var(--accent);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-contact a:hover {
            text-decoration: underline;
        }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom-text {
        text-align: center;
    }
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: white;
    padding: 3rem 2rem;
    margin: 4rem auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

    .promo-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.promo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.promo-detail {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .promo-detail:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-5px);
    }

.promo-detail-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-detail-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.promo-cta {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .promo-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

.promo-terms {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    max-width: 600px;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-subtitle {
        font-size: 1.1rem;
    }

    .promo-details {
        gap: 1rem;
    }

    .promo-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: clamp(16px, 2.5vw, 24px);
    white-space: nowrap;
}

    .logo img {
        width: clamp(280px, 4vw, 40px);
        height: auto;
        object-fit: contain;
    }

    .logo span {
        line-height: 1;
    }

@media (max-width: 480px) {
    .logo img {
        width: 130px;
    }
}
/* Hide on mobile */
@media (max-width: 768px) {
    .cta-btn {
        display: none;
    }
}


.section-title {
    color: #000; /* black text */
    font-weight: 700;
}

.gold-text {
    background: linear-gradient(to top, #0b1f16 0%, /* very dark bottom */ #1b6342 40%, /* dark middle */ #1f4f3a 100% /* original color top */ );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.image-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-center img {
        width: 320px;
        max-width: 100%;
        height: auto;
    }


.team-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.team-info-left {
    flex: 1;
}

.team-specialties {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .team-info {
        flex-direction: column;
    }
}




.cta-btn {
    position: relative;
    overflow: hidden;
    animation: pulse 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 18px 8px rgba(250, 204, 21, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.6);
    }
}

/* Shine effect */
.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.6), transparent );
    animation: shine 2.5s linear infinite;
    animation-delay: 2s;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}



