@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
    --bg: #090909;
    --bg2: #101010;
    --card: #141210;
    --card2: #1a1713;

    --gold: #ffae00;
    --gold-light: #ffd166;
    --gold-dark: #d88900;

    --white: #f7f4ef;
    --muted: #a9a19a;
    --border: rgba(255, 174, 0, 0.16);

    --green: #25D366;

    --gradient-gold: linear-gradient(
        135deg,
        #ff9d00,
        #ffd166,
        #ff9d00
    );

    --gradient-text: linear-gradient(
        90deg,
        #fff,
        #ffd166,
        #ff9d00
    );

    --shadow:
        0 20px 60px rgba(0,0,0,.45);

    --radius: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(255,174,0,.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(255,174,0,.05),
            transparent 30%
        ),
        var(--bg);

    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;

    height: 78px;

    display: flex;
    align-items: center;

    z-index: 1000;

    background: rgba(9,9,9,.75);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
    width: min(1200px, 92%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

/* =========================================
   SITARAM SOUND - NAVBAR LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 82px;
    flex-shrink: 0;
}

.logo img {
    width: 230px;
    height: 78px;

    object-fit: contain;
    object-position: center;

    display: block;

    max-width: none;

    transition: transform 0.3s ease;
}

/* Slight professional hover effect */
.logo:hover img {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;

    color: #c9c3bd;
    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

.nav-links a::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gradient-gold);

    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold);
    color: #111 !important;

    padding: 11px 20px;
    border-radius: 30px;

    font-weight: 700 !important;

    box-shadow:
        0 8px 25px rgba(255,174,0,.18);
}

.nav-cta::after {
    display: none;
}

.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--card);
    color: white;

    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 100px;

    position: relative;
}

.hero::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9,9,9,.98),
            rgba(9,9,9,.72),
            rgba(9,9,9,.92)
        ),
        url('../images/hero.jpg') center/cover;

    opacity: .55;

    z-index: -2;
}

.hero::after {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255,174,0,.12);

    filter: blur(140px);

    right: -150px;
    top: 20%;

    z-index: -1;
}

.hero-content {
    max-width: 850px;
}

.eyebrow {
    color: var(--gold);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .5px;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(50px, 7vw, 90px);

    line-height: .98;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.gradient-text {
    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 720px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 14px;

    font-weight: 700;

    transition: .3s;

    border: none;

    cursor: pointer;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #111;

    box-shadow:
        0 12px 30px rgba(255,174,0,.18);
}

.btn-gold:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(255,174,0,.28);
}

.btn-whatsapp {
    background: var(--green);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(37,211,102,.18);
}

.btn-outline {
    background: transparent;

    border: 1px solid rgba(255,174,0,.35);

    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(255,174,0,.08);
}

/* =========================
   STATS
========================= */

.stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: rgba(255,255,255,.015);
}

.stats-grid {
    display: grid;
    margin-top: 35px;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    padding: 50px 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Playfair Display', serif;

    font-size: 45px;

    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.stat p {
    color: var(--muted);
    margin-top: 5px;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 110px 0;
}

.section-heading {
    text-align: center;

    max-width: 720px;

    margin:
        0 auto 60px;
}

.section-heading span {
    color: var(--gold);

    font-weight: 700;

    display: block;

    margin-bottom: 14px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(38px, 5vw, 58px);

    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);

    line-height: 1.8;
}

/* =========================
   SERVICE CARDS
========================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.service-card {
    padding: 32px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,174,0,.045),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.1);

    border-radius: var(--radius);

    transition: .35s;

    position: relative;

    overflow: hidden;
}

.service-card::before {
    content: '';

    position: absolute;

    width: 130px;
    height: 130px;

    background: rgba(255,174,0,.08);

    filter: blur(50px);

    top: -50px;
    right: -50px;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(255,174,0,.35);

    box-shadow: var(--shadow);
}

.icon-box {
    width: 58px;
    height: 58px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,174,0,.11);

    color: var(--gold);

    margin-bottom: 28px;
}

.icon-box svg {
    width: 27px;
    height: 27px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;

    font-size: 24px;

    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted);

    line-height: 1.7;
}

/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    border-radius: 24px;

    overflow: hidden;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: .5s;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content span {
    color: var(--gold);

    font-weight: 700;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(40px,5vw,62px);

    line-height: 1.05;

    margin: 15px 0 25px;
}

.about-content p {
    color: var(--muted);

    line-height: 1.8;

    margin-bottom: 25px;
}

.check-list {
    list-style: none;

    display: grid;

    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #ddd;
}

.check-list svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* =========================
   JOURNEY
========================= */

.journey {
    background: var(--bg2);
}

.journey-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;
}

.journey-text h3 {
    font-family: 'Playfair Display', serif;

    font-size: 40px;

    margin-bottom: 25px;
}

.journey-text p {
    color: var(--muted);

    line-height: 1.8;
}

.timeline {
    border-left: 1px solid var(--border);

    padding-left: 30px;

    display: grid;

    gap: 30px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';

    position: absolute;

    left: -37px;
    top: 6px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 15px rgba(255,174,0,.5);
}

.timeline-item h4 {
    color: var(--gold);

    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--muted);
}

/* =========================
   PACKAGES
========================= */

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;
}

.package-card {
    background: var(--card);

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 24px;

    overflow: hidden;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    transition: .35s;
}

.package-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255,174,0,.4);

    box-shadow: var(--shadow);
}

.package-image {
    min-height: 470px;
}

.package-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.package-content {
    padding: 35px;

    display: flex;
    flex-direction: column;
}

.package-label {
    color: var(--gold);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 10px;
}

.package-content h3 {
    font-family: 'Playfair Display', serif;

    font-size: 32px;

    margin-bottom: 8px;
}

.price {
    font-family: 'Playfair Display', serif;

    font-size: 35px;

    background: var(--gradient-text);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    margin-bottom: 20px;
}

.package-content p {
    color: var(--muted);

    line-height: 1.7;

    margin-bottom: 18px;
}

.package-list {
    list-style: none;

    display: grid;

    gap: 11px;

    margin-bottom: 25px;
}

.package-list li {
    color: #bbb;

    display: flex;

    gap: 9px;

    align-items: center;
}

.package-list svg {
    color: var(--gold);
}

.package-buttons {
    margin-top: auto;

    display: flex;

    gap: 10px;
}

/* =========================
   GALLERY
========================= */

.gallery-grid {
    columns: 3 280px;

    column-gap: 18px;
}

.gallery-item {
    break-inside: avoid;

    margin-bottom: 18px;

    overflow: hidden;

    border-radius: 18px;

    cursor: pointer;

    position: relative;

    border: 1px solid rgba(255,255,255,.08);
}

.gallery-item img {
    width: 100%;

    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(0,0,0,.35);

    opacity: 0;

    transition: .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    color: white;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}

.contact-info {
    display: grid;

    gap: 16px;
}

.contact-card {
    padding: 25px;

    display: flex;

    gap: 18px;

    background: var(--card);

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 18px;

    transition: .3s;
}

.contact-card:hover {
    border-color: var(--border);

    transform: translateX(5px);
}

.contact-card h4 {
    margin-bottom: 5px;
}

.contact-card p,
.contact-card a {
    color: var(--muted);

    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--card);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 22px;

    padding: 35px;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;

    font-size: 36px;

    margin-bottom: 10px;
}

.contact-form > p {
    color: var(--muted);

    margin-bottom: 25px;
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    background: #1c1917;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 12px;

    padding: 15px;

    color: white;

    outline: none;

    font-family: inherit;

    transition: .3s;
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(255,174,0,.08);
}

/* =========================
   MAP
========================= */

.map-wrapper {
    margin-top: 25px;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid var(--border);

    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 45px;
}

.footer-logo img {
    width: 180px;

    margin-bottom: 20px;
}

.footer p {
    color: var(--muted);

    line-height: 1.7;

    max-width: 420px;
}

.footer h4 {
    margin-bottom: 18px;
}

.footer-links {
    display: grid;

    gap: 12px;
}

.footer-links a {
    color: var(--muted);

    transition: .3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777;

    font-size: 14px;
}

/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: var(--green);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 900;

    box-shadow:
        0 10px 30px rgba(37,211,102,.3);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================
   BACK TOP
========================= */

.back-top {
    position: fixed;

    right: 25px;
    bottom: 100px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--card2);

    border: 1px solid var(--border);

    color: var(--gold);

    display: none;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 900;
}

.back-top.show {
    display: flex;
}

/* =========================
   PAGE HEADER
========================= */

.page-header {
    padding:
        180px 0
        90px;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(255,174,0,.12),
            transparent 45%
        );
}

.page-header h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(45px,6vw,75px);

    margin-bottom: 15px;
}

.page-header p {
    color: var(--muted);

    max-width: 650px;

    margin: auto;

    line-height: 1.7;
}

/* =========================
   ANIMATIONS
========================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    padding-bottom: 42px;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 950px) {

    .nav-links {
        position: fixed;

        top: 82px;
        left: 0;
        right: 0;

        background: #0b0b0b;

        padding: 25px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid,
    .journey-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 650px) {

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        grid-template-columns: 1fr;
    }

    .package-image {
        min-height: 260px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .hero-buttons,
    .package-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* =========================================
   ABOUT - MISSION + JOURNEY
========================================= */

.about-mission {
    padding: 110px 0;
    background: #090909;
}

.mission-journey-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* =========================
   MISSION
========================= */

.mission-content {
    padding-right: 20px;
}

.mission-title {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 32px;
}

.mission-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 3px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    position: relative;
}

.mission-icon::before {
    content: "";

    width: 20px;
    height: 20px;

    border-radius: 50%;

    border: 3px solid var(--gold);

    position: absolute;
}

.mission-icon::after {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    position: absolute;
}

.mission-title h2 {
    font-family: 'Playfair Display', serif;

    font-size: 32px;

    color: var(--white);

    margin: 0;
}

.mission-description {
    color: var(--muted);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 32px;

    max-width: 720px;
}


/* =========================
   MISSION CHECK LIST
========================= */

.mission-list {
    list-style: none;

    display: grid;

    gap: 19px;
}

.mission-list li {
    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--white);

    font-size: 17px;

    font-weight: 500;
}

.mission-check {
    width: 24px;
    height: 24px;

    border: 2px solid var(--gold);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    flex-shrink: 0;
}

.mission-check svg {
    width: 14px;
    height: 14px;
}


/* =========================
   JOURNEY CARD
========================= */

.journey-card {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,174,0,.025)
        );

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 22px;

    padding: 45px 40px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.3);
}

.journey-card h2 {
    font-family: 'Playfair Display', serif;

    font-size: 29px;

    margin-bottom: 32px;
}


/* =========================
   TIMELINE
========================= */

.about-timeline {
    position: relative;

    display: grid;

    gap: 0;
}

.about-timeline::before {
    content: "";

    position: absolute;

    left: 100px;

    top: 15px;
    bottom: 15px;

    width: 1px;

    background:
        rgba(255,255,255,.12);
}

.about-timeline-item {
    display: grid;

    grid-template-columns:
        80px 30px 1fr;

    align-items: start;

    min-height: 90px;

    position: relative;
}

.timeline-year {
    color: var(--gold);

    font-size: 18px;

    font-weight: 800;

    padding-top: 0;
}

.timeline-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--gold);

    margin-top: 5px;

    box-shadow:
        0 0 15px rgba(255,174,0,.45);

    position: relative;

    z-index: 2;
}

.timeline-description {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.5;

    padding-left: 5px;
}


/* =========================
   HOVER
========================= */

.about-timeline-item:hover .timeline-year {
    color: var(--gold-light);
}

.about-timeline-item:hover .timeline-dot {
    transform: scale(1.35);

    box-shadow:
        0 0 20px rgba(255,174,0,.7);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    .mission-journey-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .mission-content {
        padding-right: 0;
    }

}


@media(max-width: 600px) {

    .about-mission {
        padding: 80px 0;
    }

    .journey-card {
        padding: 30px 22px;
    }

    .mission-title h2 {
        font-size: 27px;
    }

    .mission-description {
        font-size: 16px;
    }

    .about-timeline::before {
        left: 76px;
    }

    .about-timeline-item {
        grid-template-columns:
            60px 30px 1fr;
    }

    .timeline-year {
        font-size: 15px;
    }

    .timeline-description {
        font-size: 14px;
    }

}

@media (max-width: 768px) {

    .logo {
        height: 65px;
    }

    .logo img {
        width: 175px;
        height: 62px;
    }

    .navbar {
        min-height: 75px;
    }

    .navbar .container {
        min-height: 75px;
    }
}

@media (max-width: 480px) {

    .logo img {
        width: 155px;
        height: 55px;
    }

}

/* =========================================================
   SERVICES PAGE - PREMIUM COMPONENTS
   ========================================================= */


/* SECTION HEADING */

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-heading h2 {
    margin: 15px 0 20px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* SERVICE NUMBER */

.service-number {
    position: absolute;
    top: 28px;
    right: 30px;

    font-size: 0.85rem;
    font-weight: 700;

    color: rgba(255, 174, 0, 0.5);

    letter-spacing: 2px;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: rgba(255, 174, 0, 0.08);

    filter: blur(10px);

    transition: 0.4s ease;

    pointer-events: none;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 174, 0, 0.5);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 174, 0, 0.06);
}


.service-card:hover::before {
    transform: scale(1.5);

    background: rgba(255, 174, 0, 0.12);
}


/* FEATURED SERVICE */

.service-card-featured {
    border-color: rgba(255, 174, 0, 0.35);
}


.service-card-featured .icon-box {
    background:
        linear-gradient(
            135deg,
            rgba(255, 174, 0, 0.22),
            rgba(255, 174, 0, 0.06)
        );

    border-color: rgba(255, 174, 0, 0.35);
}


/* SERVICE LIST */

.service-list {
    list-style: none;

    padding: 0;
    margin: 25px 0;

    display: flex;
    flex-direction: column;

    gap: 12px;
}


.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #c7c0ba;

    font-size: 0.95rem;
}


.service-list svg {
    width: 17px;
    height: 17px;

    color: #ffae00;

    flex-shrink: 0;
}


/* SERVICE LINK */

.service-link {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin-top: 8px;

    color: #ffae00;

    font-weight: 600;

    text-decoration: none;

    transition: gap 0.25s ease;
}


.service-link:hover {
    gap: 14px;
}


.service-link svg {
    width: 17px;
    height: 17px;
}


/* DARK SECTION */

.section-dark {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 174, 0, 0.05),
            transparent 45%
        );

    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* EVENT GRID */

.event-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.event-item {
    position: relative;

    padding: 35px 30px;

    background: rgba(20, 18, 17, 0.8);

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.event-item:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 174, 0, 0.4);

    background: rgba(28, 24, 19, 0.95);
}


.event-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 174, 0, 0.16),
            rgba(255, 174, 0, 0.05)
        );

    border: 1px solid rgba(255, 174, 0, 0.18);
}


.event-icon svg {
    width: 23px;
    height: 23px;

    color: #ffae00;
}


.event-item h3 {
    margin: 0 0 10px;

    font-size: 1.25rem;
}


.event-item p {
    margin: 0;

    color: #999;

    line-height: 1.7;
}


/* WHY SERVICE */

.why-service {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 60px;

    align-items: center;

    padding: 65px;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 174, 0, 0.10),
            transparent 35%
        ),
        #151312;

    border: 1px solid rgba(255,255,255,0.09);
}


.why-service-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);

    line-height: 1.1;

    margin: 15px 0 20px;
}


.why-service-content p {
    max-width: 650px;

    color: #aaa;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* PRIMARY BUTTON */

.primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 24px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ffae00,
            #ffc857
        );

    color: #111;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(255, 174, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(255, 174, 0, 0.28);
}


.primary-btn svg {
    width: 18px;
}


/* STATS */

.why-service-stats {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.mini-stat {
    padding: 25px 20px;

    border-radius: 16px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.07);

    transition: 0.3s ease;
}


.mini-stat:hover {
    border-color: rgba(255,174,0,0.3);

    transform: translateY(-4px);
}


.mini-stat strong {
    display: block;

    font-family: Georgia, serif;

    font-size: 1.8rem;

    color: #ffae00;

    margin-bottom: 6px;
}


.mini-stat span {
    color: #999;

    font-size: 0.9rem;
}


/* CTA */

.cta-box {
    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 80px 30px;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,174,0,0.14),
            transparent 50%
        ),
        #151312;

    border: 1px solid rgba(255,174,0,0.2);
}


.cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255,174,0,0.035);

    filter: blur(30px);

    pointer-events: none;
}


.cta-box h2 {
    position: relative;

    margin: 15px 0;

    font-size: clamp(2.2rem, 5vw, 4rem);

    line-height: 1.1;
}


.cta-box p {
    position: relative;

    max-width: 650px;

    margin: 0 auto 30px;

    color: #aaa;

    line-height: 1.8;
}


.cta-buttons {
    position: relative;

    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}


.whatsapp-btn,
.call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 25px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.whatsapp-btn {
    background: #20c96b;

    color: white;

    box-shadow:
        0 10px 30px rgba(32,201,107,0.12);
}


.call-btn {
    background:
        linear-gradient(
            135deg,
            #ffae00,
            #ffc857
        );

    color: #111;

    box-shadow:
        0 10px 30px rgba(255,174,0,0.15);
}


.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-3px);
}


.whatsapp-btn svg,
.call-btn svg {
    width: 18px;
}


/* MOBILE */

@media (max-width: 900px) {

    .event-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .why-service {
        grid-template-columns: 1fr;

        padding: 40px 30px;

        gap: 40px;
    }

}


@media (max-width: 650px) {

    .section-heading {
        margin-bottom: 45px;
    }


    .event-grid {
        grid-template-columns: 1fr;
    }


    .why-service {
        padding: 35px 22px;
    }


    .why-service-stats {
        grid-template-columns: 1fr 1fr;
    }


    .cta-box {
        padding: 60px 20px;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .whatsapp-btn,
    .call-btn {
        width: 100%;
    }

}

/* =========================================================
   CENTERED FINAL SERVICE CARDS
   ========================================================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 380px));
    justify-content: center;
    align-items: stretch;
    gap: 36px;
}


/* ---------------------------------------------------------
   SERVICE CARD
   --------------------------------------------------------- */

.service-card-center {
    position: relative;
    min-height: 600px;

    padding: 32px 36px;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(
            circle at 75% 0%,
            rgba(255, 174, 0, 0.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255, 184, 0, 0.045),
            rgba(20, 17, 14, 0.96)
        );

    border: 1px solid rgba(255, 185, 0, 0.22);

    border-radius: 28px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Golden glow around card */

.service-card-center::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -50px;

    background: rgba(255, 177, 0, 0.14);

    filter: blur(60px);

    border-radius: 50%;

    pointer-events: none;
}


.service-card-center:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 190, 0, 0.75);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(255, 174, 0, 0.08);
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.service-card-center .service-number {
    position: absolute;

    top: 28px;
    right: 32px;

    font-family: "Inter", sans-serif;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #f5aa00;

    opacity: 0.95;
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

.service-card-center .icon-box {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 174, 0, 0.18),
            rgba(255, 174, 0, 0.07)
        );

    color: #ffb000;

    border: 1px solid rgba(255, 174, 0, 0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.service-card-center:hover .icon-box {
    transform: translateY(-3px) rotate(-3deg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 174, 0, 0.28),
            rgba(255, 174, 0, 0.10)
        );

    box-shadow:
        0 10px 30px rgba(255, 174, 0, 0.12);
}


.service-card-center .icon-box svg {
    width: 34px;
    height: 34px;

    stroke-width: 1.8;
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.service-card-center h3 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 3vw, 38px);

    line-height: 1.15;

    color: #f8f6f1;

    letter-spacing: -0.7px;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.service-card-center > p {
    margin: 0;

    color: #b9b2aa;

    font-family: "Inter", sans-serif;

    font-size: 18px;

    line-height: 1.65;

    max-width: 330px;
}


/* ---------------------------------------------------------
   FEATURES
   --------------------------------------------------------- */

.service-card-center .service-features {
    list-style: none;

    margin: 28px 0 30px;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 17px;
}


.service-card-center .service-features li {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #e5e0da;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    line-height: 1.4;
}


.service-card-center .service-features svg {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    color: #ffb000;

    stroke-width: 2.5;
}


/* ---------------------------------------------------------
   ACTION BUTTON
   --------------------------------------------------------- */

/* =========================================
   SERVICE BUTTONS
========================================= */

.service-action {
    width: 100%;
    min-height: 58px;

    margin-top: auto;
    padding: 0 22px;

    display: flex;
    align-items: center;
    gap: 14px;

    box-sizing: border-box;

    border-radius: 999px;

    text-decoration: none;

    color: #080706;

    background: linear-gradient(
        105deg,
        #f4a900 0%,
        #ffb914 45%,
        #ffd45c 100%
    );

    border: 1px solid rgba(255, 211, 92, 0.65);

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(255, 174, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Hover */

.service-action:hover {
    color: #050403;

    transform: translateY(-3px);

    background: linear-gradient(
        105deg,
        #ffb000 0%,
        #ffc52e 50%,
        #ffe083 100%
    );

    box-shadow:
        0 15px 35px rgba(255, 174, 0, 0.28);
}


/* Click */

.service-action:active {
    transform: translateY(-1px);
}


/* Left icon */

.service-action .action-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.service-action .action-icon svg {
    width: 21px;
    height: 21px;

    stroke-width: 2.3;
}


/* Text */

.service-action > span:not(.action-icon) {
    white-space: nowrap;
}


/* Right arrow */

.service-action > svg {
    width: 21px;
    height: 21px;

    margin-left: auto;

    stroke-width: 2.2;

    transition: transform 0.3s ease;
}


.service-action:hover > svg {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   REPAIR BUTTON
   --------------------------------------------------------- */

.repair-action {
    color: #111;

    background:
        linear-gradient(
            100deg,
            #f5a900,
            #ffd45c
        );

    box-shadow:
        0 10px 30px rgba(255, 174, 0, 0.18);
}


.repair-action:hover {
    box-shadow:
        0 15px 40px rgba(255, 174, 0, 0.30);
}


/* ---------------------------------------------------------
   SETUP BUTTON
   --------------------------------------------------------- */

.setup-action {
    color: #f5f2ed;

    background:
        rgba(15, 13, 11, 0.75);

    border: 1px solid #f5aa00;
}


.setup-action:hover {
    background:
        rgba(255, 174, 0, 0.08);

    border-color: #ffd45c;

    box-shadow:
        0 10px 35px rgba(255, 174, 0, 0.12);
}


/* ---------------------------------------------------------
   BUTTON ICON
   --------------------------------------------------------- */

.action-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.action-icon svg {
    width: 21px;
    height: 21px;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: minmax(300px, 520px);
    }

    .service-card-center {
        min-height: auto;
    }

}


@media (max-width: 520px) {

    .service-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .service-card-center {
        padding: 26px 24px;

        border-radius: 22px;
    }

    .service-card-center .icon-box {
        width: 64px;
        height: 64px;
    }

    .service-card-center h3 {
        font-size: 29px;
    }

    .service-card-center > p {
        font-size: 16px;
    }

    .service-action {
        min-height: 55px;

        padding: 0 18px;

        font-size: 15px;
    }

}

/* =========================================================
   PACKAGES PAGE
   ========================================================= */


/* PACKAGE SECTION */

.packages-section {
    padding-top: 70px;
}


/* PACKAGE GRID */

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(320px, 1fr));

    gap: 32px;

    max-width: 1100px;

    margin: 0 auto;
}


/* PACKAGE CARD */

.package-card {
    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(15, 13, 11, 0.96)
        );

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 24px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.package-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -130px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255,174,0,0.08);

    filter: blur(50px);

    pointer-events: none;
}


.package-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,174,0,0.38);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.40),
        0 0 35px rgba(255,174,0,0.06);
}


/* FEATURED PREMIUM */

.package-featured {
    border-color: rgba(255,174,0,0.45);

    box-shadow:
        0 15px 45px rgba(255,174,0,0.06);
}


.package-featured:hover {
    border-color: rgba(255,174,0,0.70);
}


/* PACKAGE IMAGE */

.package-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}


.package-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.package-card:hover .package-image img {
    transform: scale(1.06);
}


.package-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.02),
            rgba(7,6,5,0.88)
        );
}


/* IMAGE BADGE */

.package-badge {
    position: absolute;

    left: 22px;
    bottom: 18px;

    padding: 7px 13px;

    border-radius: 999px;

    background: rgba(8,7,6,0.80);

    border: 1px solid rgba(255,174,0,0.45);

    color: #ffc34a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


/* POPULAR RIBBON */

.popular-ribbon {
    position: absolute;

    top: 18px;
    right: -40px;

    z-index: 5;

    width: 160px;

    padding: 9px 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    background:
        linear-gradient(
            100deg,
            #f4a900,
            #ffd45c
        );

    color: #111;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.6px;

    transform: rotate(35deg);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.25);
}


.popular-ribbon svg {
    width: 13px;
    height: 13px;
}


/* PACKAGE CONTENT */

.package-content {
    padding: 30px;

    display: flex;

    flex-direction: column;

    flex: 1;
}


.package-label {
    margin-bottom: 8px;

    color: #ffb21a;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.8px;
}


.package-content h3 {
    margin: 0 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    color: #f7f3ed;
}


.price {
    margin-bottom: 15px;

    font-size: 29px;

    font-weight: 800;

    background:
        linear-gradient(
            100deg,
            #ffae00,
            #ffe08a
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.custom-price {
    font-size: 25px;
}


.package-content > p {
    margin: 0 0 22px;

    color: #aaa29a;

    font-size: 15px;

    line-height: 1.75;
}


/* PACKAGE LIST */

.package-list {
    list-style: none;

    margin: 0 0 28px;
    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 13px;
}


.package-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #ddd7d0;

    font-size: 14px;

    line-height: 1.45;
}


.package-list li svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: #ffb000;

    stroke-width: 2.3;
}


/* PACKAGE BUTTON */

.package-action {
    width: 100%;

    min-height: 56px;

    margin-top: auto;

    padding: 0 20px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    gap: 12px;

    border-radius: 999px;

    text-decoration: none;

    color: #080706;

    background:
        linear-gradient(
            105deg,
            #f4a900 0%,
            #ffb914 45%,
            #ffd45c 100%
        );

    border: 1px solid rgba(255,211,92,0.65);

    font-size: 15px;

    font-weight: 750;

    box-shadow:
        0 10px 25px rgba(255,174,0,0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.package-action:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            105deg,
            #ffb000,
            #ffc52e,
            #ffe083
        );

    box-shadow:
        0 15px 35px rgba(255,174,0,0.25);
}


.package-action > svg {
    width: 19px;
    height: 19px;

    margin-left: auto;

    transition:
        transform 0.3s ease;
}


.package-action:hover > svg {
    transform: translateX(5px);
}


.package-action-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.package-action-icon svg {
    width: 19px;
    height: 19px;
}


/* =========================================================
   CUSTOM PACKAGE CTA
   ========================================================= */

.package-cta-section {
    padding-top: 30px;
}


.package-cta {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 28px;

    padding: 38px 42px;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(255,174,0,0.12),
            transparent 35%
        ),
        #151312;

    border: 1px solid rgba(255,174,0,0.20);
}


.package-cta-icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,174,0,0.20),
            rgba(255,174,0,0.06)
        );

    border: 1px solid rgba(255,174,0,0.25);
}


.package-cta-icon svg {
    width: 30px;
    height: 30px;

    color: #ffb000;
}


.package-cta-content h2 {
    margin: 8px 0 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


.package-cta-content p {
    margin: 0;

    max-width: 650px;

    color: #aaa;

    line-height: 1.7;
}


.package-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 54px;

    padding: 0 22px;

    border-radius: 999px;

    white-space: nowrap;

    text-decoration: none;

    color: #080706;

    background:
        linear-gradient(
            105deg,
            #f4a900,
            #ffd45c
        );

    font-weight: 750;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.package-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(255,174,0,0.25);
}


.package-cta-button svg {
    width: 18px;
    height: 18px;
}


.package-cta-button svg:last-child {
    transition: transform 0.3s ease;
}


.package-cta-button:hover svg:last-child {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .package-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }


    .package-cta {
        grid-template-columns: auto 1fr;
    }


    .package-cta-button {
        grid-column: 1 / -1;

        justify-self: start;
    }

}


@media (max-width: 600px) {

    .packages-section {
        padding-top: 45px;
    }


    .package-grid {
        gap: 24px;
    }


    .package-image {
        height: 200px;
    }


    .package-content {
        padding: 25px 22px;
    }


    .package-content h3 {
        font-size: 30px;
    }


    .price {
        font-size: 27px;
    }


    .package-cta {
        grid-template-columns: 1fr;

        padding: 30px 24px;

        gap: 20px;
    }


    .package-cta-button {
        width: 100%;

        grid-column: auto;
    }


    .popular-ribbon {
        right: -48px;

        transform: rotate(35deg) scale(0.9);
    }

}

/* =========================================================
   HOMEPAGE V2 - PREMIUM DESIGN
========================================================= */


/* =========================
   HERO ENHANCEMENTS
========================= */

.home-hero {
    min-height: calc(100vh - 78px);
    overflow: hidden;
}

.home-hero .hero-content {
    position: relative;
    z-index: 2;
}


/* HERO BADGE */

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 15px;

    margin-bottom: 20px;

    border-radius: 999px;

    background: rgba(255,174,0,.07);

    border: 1px solid rgba(255,174,0,.2);

    color: #ddd;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .3px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 12px rgba(255,174,0,.7);

    animation: heroPulse 2s infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .65;
    }

}


/* HERO GLOW */

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: 15%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,174,0,.12),
            transparent 65%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* HERO BUTTONS */

.hero-main-btn {
    min-width: 190px;
}


/* HERO TRUST */

.hero-trust-row {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 42px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.09);

    width: fit-content;
}


.hero-trust-item {

    display: flex;

    align-items: center;

    gap: 10px;
}


.hero-trust-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--gold);

    background:
        rgba(255,174,0,.08);

    border:
        1px solid rgba(255,174,0,.15);
}


.hero-trust-icon svg {

    width: 18px;
    height: 18px;

}


.hero-trust-item strong {

    display: block;

    font-size: 13px;

    color: var(--white);

}


.hero-trust-item span {

    display: block;

    margin-top: 2px;

    color: #777;

    font-size: 11px;

}


.hero-trust-divider {

    width: 1px;

    height: 35px;

    background:
        rgba(255,255,255,.1);

}



/* =========================
   STATS V2
========================= */

.stats-grid {

    align-items: center;

}


.stat {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

}


.stat-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--gold);

    background:
        rgba(255,174,0,.08);

    border:
        1px solid rgba(255,174,0,.16);
}


.stat-icon svg {

    width: 21px;
    height: 21px;

}


.stat h3 {

    line-height: 1;

    margin: 0;

}


.stat p {

    margin-top: 7px;

}



/* =========================
   HOMEPAGE SERVICES
========================= */

.home-service-grid {

    grid-template-columns:
        repeat(4, 1fr);

}


.home-service-card {

    min-height: 330px;

    display: flex;

    flex-direction: column;

}


.home-service-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}


.home-service-top .icon-box {

    margin-bottom: 0;

}


.home-service-number {

    color:
        rgba(255,174,0,.45);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}


.home-service-card h3 {

    margin-bottom: 13px;

}


.home-service-card p {

    margin-bottom: 25px;

}


.home-service-link {

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gold);

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;

}


.home-service-link svg {

    width: 17px;
    height: 17px;

    transition: .3s ease;

}


.home-service-link:hover {

    color: var(--gold-light);

}


.home-service-link:hover svg {

    transform:
        translate(4px,-4px);

}


.section-button-center {

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 45px;

}



/* =========================
   ABOUT V2
========================= */

.home-about-section {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.008),
            rgba(255,174,0,.025)
        );

}


.home-about-image {

    position: relative;

}


.home-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0,0,0,.45)
        );

    pointer-events: none;

}


.experience-badge {

    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 18px;

    border-radius: 15px;

    background:
        rgba(8,8,8,.86);

    border:
        1px solid rgba(255,174,0,.3);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.4);

}


.experience-badge strong {

    font-family:
        'Playfair Display',
        serif;

    font-size: 30px;

    line-height: 1;

    background:
        var(--gradient-text);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;

}


.experience-badge span {

    color: #bbb;

    font-size: 12px;

    line-height: 1.4;

}


.about-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}



/* =========================
   OUR WORK PREVIEW
========================= */

.home-work-section {

    background: var(--bg2);

}


.home-work-grid {

    display: grid;

    grid-template-columns:
        1.45fr 1fr;

    grid-template-rows:
        250px 250px;

    gap: 18px;

}


.home-work-item {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid rgba(255,255,255,.09);

    background: #111;

}


.home-work-large {

    grid-row:
        1 / 3;

}


.home-work-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.home-work-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(0,0,0,.85)
        );

    opacity: .8;

    transition: .4s ease;

}


.home-work-item:hover img {

    transform: scale(1.07);

}


.home-work-item:hover::after {

    opacity: 1;

}


.home-work-overlay {

    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

}


.home-work-overlay span {

    display: block;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 6px;

}


.home-work-overlay h3 {

    font-family:
        'Playfair Display',
        serif;

    font-size: 24px;

}


.home-work-arrow {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #111;

    background:
        var(--gradient-gold);

    transform:
        translateY(10px);

    opacity: .85;

    transition: .35s ease;

}


.home-work-arrow svg {

    width: 18px;
    height: 18px;

}


.home-work-item:hover
.home-work-arrow {

    transform:
        translateY(0)
        rotate(5deg);

    opacity: 1;

}



/* =========================
   HOMEPAGE PACKAGES
========================= */

.home-package-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;

    max-width: 1050px;

    margin: 0 auto;

}


.home-package-card {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    overflow: hidden;

    border-radius: 24px;

    background:
        var(--card);

    border:
        1px solid rgba(255,255,255,.1);

    transition: .35s ease;

}


.home-package-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,174,0,.4);

    box-shadow:
        var(--shadow);

}


.home-package-featured {

    border-color:
        rgba(255,174,0,.3);

}


.home-package-image {

    position: relative;

    min-height: 390px;

    overflow: hidden;

}


.home-package-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.home-package-card:hover
.home-package-image img {

    transform:
        scale(1.05);

}


.home-package-tag {

    position: absolute;

    left: 15px;
    top: 15px;

    padding: 8px 12px;

    border-radius: 999px;

    background:
        rgba(8,8,8,.82);

    border:
        1px solid rgba(255,174,0,.25);

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    backdrop-filter:
        blur(10px);

}


.home-package-tag.popular {

    background:
        var(--gradient-gold);

    color: #111;

    border-color:
        transparent;

}


.home-package-content {

    padding: 32px;

    display: flex;

    flex-direction: column;

}


.home-package-content h3 {

    font-family:
        'Playfair Display',
        serif;

    font-size: 36px;

    margin-bottom: 12px;

    background:
        var(--gradient-text);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;

}


.home-package-content p {

    margin-bottom: 20px;

}


.home-package-content
.package-list {

    margin-bottom: 25px;

}


.home-package-btn {

    margin-top: auto;

    min-height: 52px;

    padding: 0 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 999px;

    color: #111;

    background:
        var(--gradient-gold);

    font-size: 14px;

    font-weight: 800;

    transition: .3s ease;

}


.home-package-btn svg {

    width: 18px;
    height: 18px;

    transition: .3s ease;

}


.home-package-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(255,174,0,.2);

}


.home-package-btn:hover svg {

    transform:
        translateX(4px);

}



/* =========================
   FINAL CTA
========================= */

.home-final-section {

    padding-top: 80px;

}


.home-final-cta {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 80px 35px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,174,0,.13),
            transparent 50%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,174,0,.025)
        );

    border:
        1px solid rgba(255,174,0,.2);

    box-shadow:
        0 25px 80px rgba(0,0,0,.3);

}


.home-final-icon {

    width: 64px;
    height: 64px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #111;

    background:
        var(--gradient-gold);

    box-shadow:
        0 12px 35px
        rgba(255,174,0,.2);

}


.home-final-icon svg {

    width: 28px;
    height: 28px;

}


.home-final-cta h2 {

    max-width: 850px;

    margin:
        15px auto 20px;

    font-family:
        'Playfair Display',
        serif;

    font-size:
        clamp(40px, 6vw, 68px);

    line-height: 1.05;

}


.home-final-cta > p {

    max-width: 620px;

    margin:
        0 auto 32px;

    color: var(--muted);

    line-height: 1.8;

}


.home-final-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}



/* =========================
   NAV CTA ICON
========================= */

.nav-cta {

    display: inline-flex !important;

    align-items: center;

    gap: 8px;

}


.nav-cta svg {

    width: 16px;
    height: 16px;

}



/* =========================================================
   HOMEPAGE RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .home-service-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .home-package-grid {

        grid-template-columns:
            1fr;

        max-width: 850px;

    }

}


@media (max-width: 900px) {

    .hero-trust-row {

        gap: 15px;

    }


    .hero-trust-divider {

        display: none;

    }


    .home-work-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            280px 220px;

    }


    .home-work-large {

        grid-column:
            1 / 3;

        grid-row:
            auto;

    }


    .home-package-card {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 650px) {

    .home-hero {

        min-height:
            auto;

        padding-top:
            70px;

        padding-bottom:
            75px;

    }


    .hero-badge {

        font-size: 11px;

        padding:
            8px 12px;

    }


    .hero-trust-row {

        width: 100%;

        display: grid;

        grid-template-columns:
            1fr;

        gap: 14px;

        margin-top: 30px;

    }


    .hero-trust-item {

        justify-content:
            flex-start;

    }


    .hero-trust-divider {

        display: none;

    }


    .home-service-grid {

        grid-template-columns:
            1fr;

    }


    .home-service-card {

        min-height:
            auto;

    }


    .home-work-grid {

        grid-template-columns:
            1fr;

        grid-template-rows:
            250px 220px 220px;

    }


    .home-work-large {

        grid-column:
            auto;

        grid-row:
            auto;

    }


    .home-package-card {

        grid-template-columns:
            1fr;

    }


    .home-package-image {

        min-height:
            280px;

    }


    .experience-badge {

        left: 15px;

        bottom: 15px;

        padding:
            11px 14px;

    }


    .experience-badge strong {

        font-size:
            26px;

    }


    .about-buttons {

        flex-direction:
            column;

    }


    .about-buttons .btn {

        width: 100%;

    }


    .home-final-cta {

        padding:
            60px 22px;

    }


    .home-final-buttons {

        flex-direction:
            column;

    }


    .home-final-buttons .btn {

        width: 100%;

    }

}


@media (max-width: 480px) {

    .hero-main-btn {

        width: 100%;

    }


    .home-work-overlay {

        left: 16px;
        right: 16px;
        bottom: 16px;

    }


    .home-work-overlay h3 {

        font-size:
            20px;

    }


    .home-work-arrow {

        width: 36px;
        height: 36px;

    }


    .home-package-content {

        padding:
            25px;

    }


    .home-final-icon {

        width: 56px;
        height: 56px;

    }

}

/* =========================================================
   FINAL FIX - STATS SECTION OVERFLOW
========================================================= */

.stats {
    width: 100%;
    overflow: hidden;
}

.stats .container {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.stats-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.stats-grid .stat {
    width: 100%;
    min-width: 0;
    max-width: 100%;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    overflow: hidden;
}

.stats-grid .stat-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;
    flex-shrink: 0;
}

.stats-grid .stat > div:last-child {
    min-width: 0;
    max-width: 100%;
}

.stats-grid .stat h3 {
    font-size: 30px;
    line-height: 1.05;

    white-space: nowrap;
}

.stats-grid .stat p {
    font-size: 12px;

    white-space: nowrap;
}


/* TABLET */

@media (max-width: 900px) {

    .stats-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;
    }

    .stats-grid .stat {
        justify-content: center;
        gap: 8px;
    }

    .stats-grid .stat-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;
    }

    .stats-grid .stat h3 {
        font-size: 23px;
    }

    .stats-grid .stat p {
        font-size: 11px;
    }

}


/* SMALL TABLET / LARGE PHONE */

@media (max-width: 700px) {

    .stats-grid {
        grid-template-columns: 1fr;

        gap: 0;

        padding: 25px 0;
    }

    .stats-grid .stat {
        justify-content: flex-start;

        padding: 14px 10px;

        border-bottom:
            1px solid rgba(255,255,255,.07);
    }

    .stats-grid .stat:last-child {
        border-bottom: none;
    }

    .stats-grid .stat h3 {
        font-size: 25px;
    }

    .stats-grid .stat p {
        font-size: 12px;
    }

}

/* =========================================================
   OUR WORK - PREMIUM GALLERY
========================================================= */


/* =========================
   PAGE HEADER
========================= */

.work-page-header {
    padding-bottom: 85px;
}


/* =========================
   WORK INTRO
========================= */

.work-intro {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

}


.work-intro h2 {

    font-family:
        'Playfair Display',
        serif;

    font-size:
        clamp(38px, 5vw, 56px);

    line-height: 1.05;

    margin-top: 10px;

}


.work-intro > p {

    max-width: 400px;

    color: var(--muted);

    line-height: 1.8;

    margin-bottom: 5px;

}



/* =========================
   GALLERY GRID
========================= */

.work-gallery-section {

    background:
        linear-gradient(
            180deg,
            #090909,
            #0d0c0b
        );

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 260px;

    gap: 18px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: #111;

    border:
        1px solid rgba(255,255,255,.09);

    cursor: pointer;

    isolation: isolate;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


.gallery-item-large {

    grid-column:
        span 2;

    grid-row:
        span 2;

}


.gallery-item img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .65s cubic-bezier(.2,.7,.2,1);

}


.gallery-item:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,174,0,.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,.4);

}


.gallery-item:hover img {

    transform:
        scale(1.08);

}



/* =========================
   IMAGE GRADIENT
========================= */

.gallery-gradient {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0,0,0,.82)
        );

    opacity: .7;

    transition: .4s ease;

}


.gallery-item:hover
.gallery-gradient {

    opacity: 1;

}



/* =========================
   IMAGE NUMBER
========================= */

.gallery-number {

    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--gold);

    background:
        rgba(8,8,8,.72);

    border:
        1px solid rgba(255,174,0,.25);

    backdrop-filter:
        blur(10px);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}



/* =========================
   VIEW OVERLAY
========================= */

.gallery-overlay {

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    z-index: 4;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transform:
        translateY(8px);

    opacity: 0;

    transition: .4s ease;

}


.gallery-item:hover
.gallery-overlay {

    transform:
        translateY(0);

    opacity: 1;

}


.gallery-overlay > span {

    color: #fff;

    font-size: 13px;

    font-weight: 700;

}


.gallery-view {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #111;

    background:
        var(--gradient-gold);

    box-shadow:
        0 8px 25px
        rgba(255,174,0,.2);

}


.gallery-view svg {

    width: 18px;
    height: 18px;

}



/* =========================
   CTA
========================= */

.work-cta-section {

    padding-top: 40px;

}


.work-cta {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding:
        75px 30px;

    border-radius: 28px;

    border:
        1px solid rgba(255,174,0,.2);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,174,0,.13),
            transparent 52%
        ),
        #11100f;

}


.work-cta-icon {

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 20px;

    border-radius: 18px;

    color: #111;

    background:
        var(--gradient-gold);

    box-shadow:
        0 12px 35px
        rgba(255,174,0,.2);

}


.work-cta-icon svg {

    width: 27px;
    height: 27px;

}


.work-cta h2 {

    margin:
        15px auto 18px;

    max-width: 800px;

    font-family:
        'Playfair Display',
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.08;

}


.work-cta > p {

    max-width: 600px;

    margin:
        0 auto 30px;

    color: var(--muted);

    line-height: 1.8;

}


.work-cta-buttons {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

}



/* =========================================================
   LIGHTBOX
========================================================= */

body.lightbox-open {

    overflow: hidden;

}


.work-lightbox {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 35px 90px;

    background:
        rgba(0,0,0,.94);

    backdrop-filter:
        blur(14px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.work-lightbox.open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.lightbox-content {

    position: relative;

    max-width:
        min(1100px, 90vw);

    max-height:
        88vh;

    display: flex;

    align-items: center;
    justify-content: center;

}


.lightbox-content img {

    display: block;

    max-width:
        100%;

    max-height:
        82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.7);

}


.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position: fixed;

    z-index: 5100;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    cursor: pointer;

    border:
        1px solid rgba(255,174,0,.3);

    background:
        rgba(20,18,15,.9);

    color: var(--gold);

    transition: .3s ease;

}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    color: #111;

    background:
        var(--gradient-gold);

    transform:
        scale(1.06);

}


.lightbox-close {

    top: 25px;

    right: 30px;

}


.lightbox-prev {

    left: 28px;

    top: 50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    right: 28px;

    top: 50%;

    transform:
        translateY(-50%);

}


.lightbox-prev:hover {

    transform:
        translateY(-50%)
        scale(1.06);

}


.lightbox-next:hover {

    transform:
        translateY(-50%)
        scale(1.06);

}


.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {

    width: 21px;
    height: 21px;

}


.lightbox-counter {

    position: absolute;

    left: 50%;

    bottom: -35px;

    transform:
        translateX(-50%);

    color: #999;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .work-intro {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 15px;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows:
            240px;

    }


    .gallery-item-large {

        grid-column:
            span 2;

        grid-row:
            span 1;

    }

}


@media (max-width: 650px) {

    .work-page-header {

        padding-bottom:
            60px;

    }


    .work-intro {

        margin-bottom:
            30px;

    }


    .work-intro h2 {

        font-size:
            38px;

    }


    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            280px;

        gap: 14px;

    }


    .gallery-item-large {

        grid-column:
            auto;

        grid-row:
            span 1;

    }


    .gallery-overlay {

        opacity: 1;

        transform:
            translateY(0);

    }


    .gallery-number {

        width: 36px;
        height: 36px;

        top: 14px;
        left: 14px;

    }


    .gallery-view {

        width: 38px;
        height: 38px;

    }


    .work-cta {

        padding:
            60px 20px;

    }


    .work-cta-buttons {

        flex-direction:
            column;

    }


    .work-cta-buttons .btn {

        width: 100%;

    }


    .work-lightbox {

        padding:
            20px 15px;

    }


    .lightbox-content {

        max-width:
            95vw;

    }


    .lightbox-content img {

        max-height:
            78vh;

        border-radius:
            8px;

    }


    .lightbox-close {

        top: 15px;

        right: 15px;

        width: 42px;
        height: 42px;

    }


    .lightbox-prev,
    .lightbox-next {

        width: 40px;
        height: 40px;

    }


    .lightbox-prev {

        left: 10px;

    }


    .lightbox-next {

        right: 10px;

    }


    .lightbox-counter {

        bottom:
            -30px;

    }

}


@media (max-width: 420px) {

    .gallery-grid {

        grid-auto-rows:
            240px;

    }

}

/* =========================================================
   LIGHTBOX BUTTON CLICK FIX
========================================================= */

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    pointer-events: auto;
    cursor: pointer;
}

.lightbox-close {
    z-index: 5200;
}

.lightbox-prev,
.lightbox-next {
    z-index: 5200;
}

/* =========================================================
   REMOVE LIGHTBOX IMAGE COMPLETELY WHEN CLOSED
========================================================= */

.work-lightbox {
    display: none !important;
}

.work-lightbox.open {
    display: flex !important;
}


/* Make sure the hidden image cannot be interacted with */

.work-lightbox:not(.open) {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.work-lightbox:not(.open) #lightboxImage {
    display: none !important;
}


/* Show image only while lightbox is open */

.work-lightbox.open #lightboxImage {
    display: block !important;
}

/* =========================================================
   WORK PAGE - PREVENT IMAGE DRAG / SAVE / SELECTION
   ========================================================= */

.work-gallery img,
.gallery-item img,
.work-lightbox img,
#lightboxImage {
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    pointer-events: none !important;
}

/* Lightbox itself controls interaction */
.work-lightbox {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.work-lightbox.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Never allow hidden lightbox image to remain visible */
.work-lightbox:not(.open) #lightboxImage {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Show image ONLY while lightbox is open */
.work-lightbox.open #lightboxImage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Keep controls clickable */
.work-lightbox button {
    pointer-events: auto !important;
    cursor: pointer;
}

/* =========================================================
   SITARAM SOUND - FINAL CONTACT PAGE POLISH
   ========================================================= */

/* CONTACT INTRO */

.contact-intro {
    text-align: left;
    margin: 0 0 25px;
    max-width: 100%;
}

.contact-intro .eyebrow {
    display: block;
    margin-bottom: 12px;
}

.contact-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    margin: 0 0 15px;
}

.contact-intro p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
}


/* CONTACT CARD CONTENT */

.contact-card-content {
    min-width: 0;
    flex: 1;
}

.contact-label {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 5px;
}

.contact-card-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-card-content a,
.contact-card-content p {
    overflow-wrap: anywhere;
}


/* CONTACT FORM HEADER */

.form-header {
    margin-bottom: 30px;
}

.form-header .eyebrow {
    display: block;
    margin-bottom: 12px;
}

.form-header h2 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
}

.form-header p {
    color: var(--muted);
    line-height: 1.7;
}


/* INPUT WRAPPER */

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap > svg {
    position: absolute;
    left: 15px;
    width: 18px;
    height: 18px;
    color: var(--gold);
    pointer-events: none;
    z-index: 2;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    padding-left: 46px;
}

.input-wrap textarea {
    padding-top: 16px;
}

.textarea-wrap {
    align-items: flex-start;
}

.textarea-wrap > svg {
    top: 16px;
}


/* SELECT */

.input-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-wrap select option {
    background: #171411;
    color: #fff;
}


/* CONTACT SUBMIT */

.contact-submit {
    width: 100%;
    min-height: 58px;
    border-radius: 999px;
    font-size: 15px;
}

.contact-submit svg:first-child {
    width: 19px;
    height: 19px;
}

.contact-submit svg:last-child {
    width: 18px;
    height: 18px;
    margin-left: auto;
    transition: transform .3s ease;
}

.contact-submit:hover svg:last-child {
    transform: translateX(5px);
}


/* FORM NOTE */

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 18px;

    color: #888;
    font-size: 13px;
    text-align: center;
}

.form-note svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}


/* MAP SECTION */

.contact-map-section {
    margin-top: 75px;
}

.map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.map-heading .eyebrow {
    display: block;
    margin-bottom: 10px;
}

.map-heading h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 18px;

    border: 1px solid rgba(255,174,0,.3);
    border-radius: 999px;

    color: var(--gold);
    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.map-link:hover {
    background: rgba(255,174,0,.08);
    border-color: rgba(255,174,0,.6);
    transform: translateY(-2px);
}

.map-link svg {
    width: 17px;
    height: 17px;
}


/* MAP */

.contact-map-section .map-wrapper {
    margin-top: 0;
    height: 430px;
}


/* FINAL CONTACT CTA */

.contact-cta {
    padding-top: 30px;
}

.contact-cta .cta-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    text-align: left;
    padding: 45px;
}

.contact-cta .cta-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,174,0,.2),
            rgba(255,174,0,.05)
        );

    border: 1px solid rgba(255,174,0,.25);
}

.contact-cta .cta-icon svg {
    width: 31px;
    height: 31px;
    color: var(--gold);
}

.contact-cta .cta-content {
    position: relative;
}

.contact-cta .cta-content .eyebrow {
    display: block;
    margin-bottom: 8px;
}

.contact-cta .cta-content h2 {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

.contact-cta .cta-content p {
    margin: 0;
    max-width: 650px;
    color: var(--muted);
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* FOOTER COMPATIBILITY */

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand .logo img {
    width: 180px;
    height: auto;
}

.footer-brand p {
    max-width: 430px;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 12px 22px;
}

.footer-links a {
    color: var(--muted);
    transition: color .3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}


/* =========================================================
   GLOBAL RESPONSIVE POLISH
   ========================================================= */

@media (max-width: 900px) {

    .contact-cta .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }

    .contact-cta .cta-icon {
        margin: 0 auto;
    }

    .contact-cta .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


@media (max-width: 650px) {

    .contact-intro {
        text-align: center;
    }

    .contact-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form {
        padding: 26px 20px;
    }

    .map-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-link {
        width: 100%;
    }

    .contact-map-section .map-wrapper {
        height: 330px;
    }

    .contact-cta .cta-box {
        padding: 35px 20px;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .contact-card {
        padding: 20px;
        gap: 14px;
    }

    .contact-card .icon-box {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .contact-card-content h4 {
        font-size: 16px;
    }

    .contact-card-content a,
    .contact-card-content p {
        font-size: 14px;
    }

    .contact-submit {
        font-size: 14px;
        padding: 0 16px;
    }

}