/* =========================
   DESIGN TOKENS & VARIABLES
========================= */
:root {
    --primary: #8db521;
    --primary-dark: #648a12;
    --primary-light: #edf5d9;
    --dark: #182019;
    --dark-2: #263128;
    --text: #66706a;
    --white: #ffffff;
    --border: #e6eae3;
    --soft: #f7f9f4;
    --shadow: 0 20px 60px rgba(25, 40, 20, .10);
    --radius: 22px;
}

/* =========================
   GLOBAL RESET & DEFAULTS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container-custom {
    max-width: 1240px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* =========================
   TOP MINI BAR
========================= */
.top-strip {
    background: var(--dark);
    color: rgba(255,255,255,.78);
    font-size: 12px;
    padding: 9px 0;
}

.top-strip a {
    color: #fff;
}

.top-strip a:hover {
    color: var(--primary);
}

/* =========================
   NAVBAR
========================= */
.main-nav {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar-brand img {
    /* width: 170px; */
    max-height: 50px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--dark-2);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 13px !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-dark);
}

.nav-appointment {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    margin-left: 5px;
    box-shadow: 0 8px 20px rgba(141,181,33,.25);
    display: inline-block;
    text-align: center;
}

.nav-appointment:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =========================
   HERO SECTION
========================= */
.doctor-hero {
    /* min-height: 700px; */
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 80% 20%, rgba(141,181,33,.18), transparent 32%),
        linear-gradient(135deg, #f5f8f0 0%, #ffffff 48%, #eef4e6 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(141,181,33,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141,181,33,.055) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 10px 0 19px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(141,181,33,.10);
    color: var(--primary-dark);
    border: 1px solid rgba(141,181,33,.22);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.eyebrow span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(23px, 4.5vw, 34px);
    letter-spacing: -1.5px;
    max-width: 800px;
    margin-bottom: 8px;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-description {
    font-size: 16px;
    max-width: 680px;
    color: #68716b;
    margin-bottom: 15px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-main {
    background: var(--primary);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(141,181,33,.25);
    font-size: 14px;
}

.btn-main:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #d8dfd2;
    color: var(--dark);
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    font-size: 14px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Doctor Graphic Layout */
.hero-doctor {
    position: relative;
    z-index: 2;
    width: 100%;
    /* max-width: 450px; */
    /* margin: 20px auto 0; */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-doctor::before {
    content: "";
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .13;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-doctor img {
    position: relative;
    z-index: 2;
    width: 100%;
    /* max-height: 500px; */
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,.12));
}

.floating-card {
    position: absolute;
    z-index: 4;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 14px;
    padding: 12px 16px;
}

.floating-card.experience {
    left: 0;
    bottom: 60px;
}

.floating-card.ringside {
    right: 0;
    top: 60px;
}

.floating-card strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    font-size: 14px;
}

.floating-card small {
    color: #758078;
    font-size: 10px;
}

/* =========================
   COMMON SECTION STYLING
========================= */
.section {
    padding: 40px 0;
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    background: var(--dark);
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading.center {
    text-align: center;
}

.section-kicker {
    color: var(--primary-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(17px, 3.5vw, 29px);
    letter-spacing: -1px;
    margin: 0;
}

.section-dark .section-title {
    color: #fff;
}

/* =========================
   PROFILE SECTION
========================= */
.profile-image-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.profile-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #e8eee0;
    box-shadow: var(--shadow);
}

.profile-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.profile-badge strong {
    color: var(--dark);
    font-size: 16px;
    display: block;
}

.profile-badge span {
    font-size: 11px;
    color: var(--text);
}

.profile-content {
    margin-top: 30px;
}

.profile-content p {
    margin-bottom: 6px;
    font-size: 15px;
}

.profile-highlight {
    border-left: 4px solid var(--primary);
    background: var(--primary-light);
    padding: 18px 20px;
    border-radius: 0 14px 14px 0;
    margin: 22px 0;
    color: #43503f;
    font-weight: 500;
    font-size: 14px;
}

/* =========================
   GURUGRAM FEATURE
========================= */
.gurugram-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.gurugram-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #263228, #1c251e);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    padding: 35px 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.gurugram-card::after {
    content: "52";
    position: absolute;
    right: 10px;
    bottom: -30px;
    font-size: 130px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: rgba(141,181,33,.04);
    pointer-events: none;
}

.gurugram-card h2 {
    color: #fff;
    font-size: clamp(24px, 3.2vw, 40px);
    margin-bottom: 16px;
}

.gurugram-card p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    margin-bottom: 0;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(141,181,33,.16);
    border: 1px solid rgba(141,181,33,.35);
    padding: 10px 16px;
    border-radius: 50px;
    margin-top: 18px;
    font-weight: 700;
    font-size: 14px;
}

/* =========================
   EXPERTISE CARDS
========================= */
.expertise-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(141,181,33,.5);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.expertise-card p {
    margin: 0;
    font-size: 14px;
}

/* =========================
   RINGSIDE SECTION
========================= */
.ringside-box {
    border-radius: 24px;
    overflow: hidden;
    background: #edf4e1;
    box-shadow: var(--shadow);
}

.ringside-content {
    padding: 35px 24px;
}

.ringside-content h2 {
    font-size: clamp(22px, 3.2vw, 38px);
    margin-bottom: 13px;
}

.ringside-content p {
    font-size: 15px;
    margin-bottom: 16px;
}

.ringside-image {
    min-height: 280px;
    background: 
        linear-gradient(rgba(20,30,20,.05), rgba(20,30,20,.15)),
        url('../images/dr-surbhi-boxing.jpg') center/cover no-repeat;
    width: 100%;
}

.ringside-tag {
    display: inline-flex;
    align-items: center;
    background: var(--dark);
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* =========================
   PHILOSOPHY SECTION
========================= */
.philosophy-number {
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    color: rgba(141,181,33,.3);
    font-family: 'Manrope', sans-serif;
    margin-bottom: 14px;
}

.philosophy-card {
    border-top: 1px solid #dce3d7;
    padding-top: 24px;
    height: 100%;
}

.philosophy-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.philosophy-card p {
    font-size: 14px;
    margin: 0;
}

/* =========================
   CHECK LIST
========================= */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #465148;
    font-size: 14px;
}

.check-list i {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-size: 10px;
    margin-top: 3px;
}

/* =========================
   CREDENTIALS (DARK)
========================= */
.credential-card {
    background: #202a22;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.credential-card:hover {
    border-color: rgba(141,181,33,.45);
    transform: translateY(-4px);
}

.credential-card i {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
    display: block;
}

.credential-card h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}

.credential-card p {
    color: rgba(255,255,255,.58);
    font-size: 13px;
    margin: 0;
}

/* =========================
   WHY SECTION
========================= */
.why-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(141,181,33,.3);
}

.why-number {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    margin: 0;
}

/* =========================
   APPOINTMENT CTA SECTION
========================= */
.appointment-section {
    padding: 70px 0;
    background: 
        linear-gradient(135deg, rgba(141,181,33,.96), rgba(106,145,16,.97)),
        url('../images/medical-pattern.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.appointment-content {
    position: relative;
    z-index: 2;
}

.appointment-content h2 {
    color: #fff;
    font-size: clamp(26px, 3.5vw, 42px);
    margin-bottom: 18px;
}

.appointment-content p {
    color: rgba(255,255,255,.88);
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    font-size: 14px;
}

.btn-white:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   CONTACT CARDS
========================= */
.contact-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
    color: #68716b;
    font-size: 14px;
    margin-bottom: 0;
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* =========================
   FOOTER
========================= */
footer {
    background: #101710;
    color: rgba(255,255,255,.58);
    padding: 0px 0 20px;
}

footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

footer p, footer a {
    font-size: 13px;
    color: rgba(255,255,255,.58);
}

footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 35px;
    padding-top: 15px;
    font-size: 11px;
}

/* =========================
   MOBILE FLOATING ACTIONS
========================= */
.mobile-actions {
    display: none;
}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE MEDIA QUERIES
========================= */
@media (max-width: 991px) {
    .top-strip {
        display: none;
    }
    .navbar-brand img {
        width: 243px;
    }
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        margin-top: 10px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
    .nav-appointment {
        margin: 10px 0 0 !important;
        display: block;
        width: 100%;
    }
    .hero-content {
        padding: 40px 0 10px;
        text-align: center;
    }
    .hero-title, .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-doctor {
        /* max-width: 340px; */
        margin-top: 20px;
    }
    .floating-card.experience {
        left: 0;
        bottom: 20px;
    }
    .floating-card.ringside {
        right: 0;
        top: 20px;
    }
    .profile-content {
        margin-top: -5px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 36px 0;
    }
    .section-heading {
        margin-bottom: 13px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-doctor {
        /* max-width: 280px; */
    }
    .floating-card {
        padding: 8px 12px;
    }
    .floating-card strong {
        font-size: 12px;
    }
    .floating-card small {
        font-size: 9px;
    }
    .gurugram-card {
        padding: 25px 18px;
    }
    .ringside-content {
        padding: 25px 18px;
    }
    
    /* Sticky Mobile Action Footer Bar */
    .mobile-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    }
    .mobile-actions a {
        padding: 12px 10px;
        text-align: center;
        font-weight: 700;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .mobile-call {
        color: var(--dark);
        border-right: 1px solid var(--border);
        background: #fff;
    }
    .mobile-book {
        background: var(--primary);
        color: #fff;
    }
    footer {
        padding-bottom: 85px; /* Leave space for bottom fixed action bar */
    }
}


/* =========================
   GURUGRAM SECTION 2-COLUMN & LUXURY FORM
========================= */
.gurugram-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.gurugram-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #263228, #1c251e);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    padding: 40px 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    height: 100%;
}

.gurugram-card::after {
    content: "52";
    position: absolute;
    right: 15px;
    bottom: -30px;
    font-size: 130px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: rgba(141,181,33,.04);
    pointer-events: none;
}

.gurugram-card h2 {
    color: #fff;
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 16px;
}

.gurugram-card p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    margin-bottom: 0;
}

/* Luxury Right Form Card */
.gurugram-form-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
    height: 100%;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 16px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px 14px 48px;
    color: #fff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-control-custom:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(141, 181, 33, 0.15);
}

.btn-submit-luxury {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(141, 181, 33, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-luxury:hover {
    background: #7ca119;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(141, 181, 33, 0.4);
}

/* Responsive view for Mobile/Tablet */
@media (max-width: 991px) {
    .gurugram-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================
   GALLERY SECTION GRID
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #e8eee0;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Luxury Overlay Effect */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,40,26,0.7), rgba(141,181,33,0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================
   LIGHTBOX POPUP MODAL
========================= */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 10, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrap {
    position: relative;
    max-width: 460px;
    width: 100%;
    text-align: center;
}

.lightbox-content-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.1);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#lightboxCaption {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    margin-top: 15px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustment for mobile close button */
@media (max-width: 767px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* =========================
   FLOATING ACTIONS (Desktop: Right Side Vertical | Mobile: Bottom Bar)
========================= */
.mobile-actions {
    z-index: 1000;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: all 0.3s ease;
}

/* Desktop View: Right Side Floating Vertical Widget */
@media (min-width: 768px) {
    .mobile-actions {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: 0 15px 40px rgba(0,0,0,0.18);
        width: 60px; /* Compact icon/text look ya full width ke liye adjust kar sakte hain */
    }
    
    .mobile-actions a {
        padding: 16px 12px;
        writing-mode: vertical-rl; /* Text ko vertical karne ke liye (optional) */
        text-orientation: mixed;
        transform: rotate(180deg);
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .mobile-call {
        border-bottom: 1px solid var(--border);
        border-right: none !important;
    }
}

/* Agar aap desktop par vertical text nahi balki normal horizontal chote buttons chahte hain, toh writing-mode hata kar width auto rakh sakte hain. Lekin upar wala vertical floating style sabse professional lagta hai. */

/* Mobile View: Bottom Bar */
@media (max-width: 767px) {
    .mobile-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .mobile-actions a {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .mobile-call {
        border-right: 1px solid var(--border);
    }
    
    footer {
        padding-bottom: 85px; /* Footer content ko mobile buttons ke peeche chupne se bachane ke liye */
    }
}

.mobile-actions a {
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-call {
    color: var(--dark);
    background: #fff;
}

.mobile-call:hover {
    background: #f7f9f4;
    color: var(--primary-dark);
}

.mobile-book {
    background: var(--primary);
    color: #fff;
}

.mobile-book:hover {
    background: var(--primary-dark);
    color: #fff;
}