/*
Theme Name: GeneratePress Child - Client Dental
Theme URI: http://birajdental.local
Description: Editable premium child theme for dental clinic websites based on the approved Biraj Dental design.
Author: Client Dental
Author URI: http://birajdental.local
Template: generatepress
Version: 1.2.3
Text Domain: client-dental
*/

/* ============================================
   DESIGN SYSTEM â€" CSS Custom Properties
   ============================================ */
:root {
    /* Primary Palette */
    --deep-forest: #0B4F6C;
    --deep-forest-rgb: 11, 79, 108;
    --jade-green: #067A7A;
    --jade-green-rgb: 6, 122, 122;
    --himalayan-gold: #F3A83B;
    --himalayan-gold-rgb: 243, 168, 59;

    /* Neutrals */
    --warm-ivory: #FFF8EF;
    --charcoal: #263238;
    --stone-gray: #5F6F73;

    /* Accents */
    --mint-tint: #EAF7F5;
    --emergency-red: #C0392B;

    /* Derived */
    --deep-forest-light: #0A6F88;
    --jade-green-light: #0E8F8B;
    --himalayan-gold-light: #FFC766;
    --himalayan-gold-dark: #C77B20;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Arial, sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-wide: 1440px;
    --header-height: 80px;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;
    --radius-circle: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 79, 108, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 79, 108, 0.1);
    --shadow-lg: 0 8px 32px rgba(11, 79, 108, 0.12);
    --shadow-xl: 0 16px 48px rgba(11, 79, 108, 0.16);
    --shadow-gold: 0 4px 20px rgba(243, 168, 59, 0.3);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}


/* ============================================
   RESET & GLOBAL
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    color: var(--charcoal);
    background-color: var(--warm-ivory);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#page,
.site,
main {
    max-width: 100%;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-smooth);
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}


/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--charcoal);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--stone-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jade-green);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 2px;
    background: var(--himalayan-gold);
    transform: translateY(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--stone-gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.gw-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.gw-container--wide {
    max-width: var(--container-wide);
}

.gw-section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.gw-section--ivory {
    background-color: var(--warm-ivory);
}

.gw-section--mint {
    background-color: var(--mint-tint);
}

.gw-section--forest {
    background-color: var(--deep-forest);
    color: #fff;
}

.gw-section--forest h2,
.gw-section--forest h3,
.gw-section--forest h4 {
    color: #fff;
}

.gw-section--forest p {
    color: rgba(255,255,255,0.8);
}

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

.text-gold {
    color: var(--himalayan-gold);
}


/* ============================================
   BUTTONS
   ============================================ */
.gw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-pill);
    transition: all var(--duration-normal) var(--ease-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.gw-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.gw-btn:hover::after {
    transform: translateX(0);
}

.gw-btn--primary {
    background: var(--himalayan-gold);
    color: var(--deep-forest);
    box-shadow: var(--shadow-gold);
}

.gw-btn--primary:hover {
    background: var(--himalayan-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(243, 168, 59, 0.45);
    color: var(--deep-forest);
}

.gw-btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.gw-btn--secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.gw-btn--outline-gold {
    background: transparent;
    color: var(--himalayan-gold);
    border: 2px solid var(--himalayan-gold);
}

.gw-btn--outline-gold:hover {
    background: var(--himalayan-gold);
    color: var(--deep-forest);
}

.gw-btn--forest {
    background: var(--deep-forest);
    color: #fff;
}

.gw-btn--forest:hover {
    background: var(--deep-forest-light);
    transform: translateY(-2px);
    color: #fff;
}

.gw-btn--emergency {
    background: var(--emergency-red);
    color: #fff;
}

.gw-btn--emergency:hover {
    background: #E74C3C;
    transform: translateY(-2px);
    color: #fff;
}

.gw-btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.gw-btn--lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.gw-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ============================================
   HEADER / STICKY NAV
   ============================================ */
.gw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--deep-forest);
    height: var(--header-height);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.gw-header--scrolled {
    background: rgba(11, 79, 108, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    height: 70px;
}

.gw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Logo */
.gw-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.gw-header__logo-icon {
    width: 42px;
    height: 42px;
    background: var(--himalayan-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.gw-header__logo:hover .gw-header__logo-icon {
    transform: scale(1.05);
}

.gw-header__logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--deep-forest);
}

.gw-header__logo-icon img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.gw-header__logo-text {
    display: flex;
    flex-direction: column;
}

.gw-header__logo-name {
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.gw-header__logo-tagline {
    font-size: 0.7rem;
    color: var(--himalayan-gold);
    font-weight: var(--fw-medium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation */
.gw-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.gw-header__nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gw-header__nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
}

.gw-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--himalayan-gold);
    transform: translateX(-50%);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.gw-header__nav-link:hover,
.gw-header__nav-link--active {
    color: #fff;
}

.gw-header__nav-link:hover::after,
.gw-header__nav-link--active::after {
    width: 60%;
}

/* Header Actions */
.gw-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.gw-header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    transition: color var(--duration-normal) var(--ease-smooth);
}

.gw-header__phone:hover {
    color: var(--himalayan-gold);
}

.gw-header__phone svg {
    width: 16px;
    height: 16px;
}

.gw-header__book-short {
    display: none;
}

/* Mobile Hamburger */
.gw-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    cursor: pointer;
    z-index: 1001;
}

.gw-header__hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.gw-header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.gw-header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.gw-header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   DROPDOWN MEGA-MENU
   ============================================ */
.gw-header__nav-dropdown {
    position: relative;
}

.gw-header__nav-dropdown > .gw-header__nav-link {
    display: inline-flex;
    align-items: center;
}

.gw-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 520px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(11, 79, 108, 0.2), 0 0 0 1px rgba(11, 79, 108, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration-normal) var(--ease-smooth);
    z-index: 2000;
    padding: 0;
    overflow: hidden;
}

.gw-header__nav-dropdown:hover .gw-dropdown,
.gw-header__nav-dropdown:focus-within .gw-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Small arrow */
.gw-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 3px;
}

.gw-dropdown__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: var(--space-sm);
    max-height: 400px;
    overflow-y: auto;
}

.gw-dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-smooth);
    color: var(--charcoal);
}

.gw-dropdown__link:hover {
    background: var(--mint-tint);
    color: var(--deep-forest);
}

.gw-dropdown__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--mint-tint);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-fast) var(--ease-smooth);
}

.gw-dropdown__link:hover .gw-dropdown__icon {
    background: var(--jade-green);
}

.gw-dropdown__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--jade-green);
    transition: fill var(--duration-fast) var(--ease-smooth);
}

.gw-dropdown__link:hover .gw-dropdown__icon svg {
    fill: #fff;
}

.gw-dropdown__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.gw-dropdown__text strong {
    font-size: 0.85rem;
    font-weight: var(--fw-semibold);
    color: var(--charcoal);
}

.gw-dropdown__text small {
    font-size: 0.72rem;
    color: var(--himalayan-gold);
    font-weight: var(--fw-medium);
}

.gw-dropdown__footer {
    padding: 0.75rem var(--space-sm);
    background: var(--warm-ivory);
    border-top: 1px solid #f0f0f0;
}


/* ============================================
   HERO SECTION
   ============================================ */
.gw-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
    background: var(--deep-forest);
}

.gw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gw-hero__bg img,
.gw-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.gw-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 79, 108, 0.92) 0%,
        rgba(11, 79, 108, 0.75) 50%,
        rgba(6, 122, 122, 0.6) 100%
    );
    z-index: 2;
}

.gw-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
    min-width: 0;
}

.gw-hero__text {
    max-width: 600px;
    min-width: 0;
}

.gw-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(243, 168, 59, 0.15);
    border: 1px solid rgba(243, 168, 59, 0.3);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-md);
    font-size: 0.82rem;
    font-weight: var(--fw-medium);
    color: var(--himalayan-gold);
}

.gw-hero__badge svg {
    width: 14px;
    height: 14px;
}

.gw-hero h1 {
    color: #fff;
    margin-bottom: var(--space-md);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    overflow-wrap: anywhere;
}

.gw-hero h1 span {
    color: var(--himalayan-gold);
}

.gw-hero__subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    overflow-wrap: anywhere;
}

.gw-hero__ctas {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.gw-hero__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.gw-hero__stat {
    text-align: center;
}

.gw-hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--fw-extrabold);
    color: var(--himalayan-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.gw-hero__stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: var(--fw-medium);
}

.gw-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gw-hero__doctor-image {
    width: 420px;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(243, 168, 59, 0.3);
}

.gw-hero__doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gw-hero__doctor-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 4;
}

.gw-hero__doctor-card-icon {
    width: 44px;
    height: 44px;
    background: var(--mint-tint);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-hero__doctor-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--jade-green);
}

.gw-hero__doctor-card-text {
    font-size: 0.85rem;
    font-weight: var(--fw-semibold);
    color: var(--charcoal);
}

.gw-hero__doctor-card-text span {
    display: block;
    font-weight: var(--fw-regular);
    color: var(--stone-gray);
    font-size: 0.78rem;
}


/* ============================================
   TRUST BAR (Animated Counters)
   ============================================ */
.gw-trust-bar {
    background: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-lg) var(--space-xl);
}

.gw-trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.gw-trust-bar__item {
    position: relative;
    padding: var(--space-sm) 0;
}

.gw-trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--jade-green), transparent);
    opacity: 0.3;
}

.gw-trust-bar__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-xs);
    background: var(--mint-tint);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-trust-bar__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--jade-green);
}

.gw-trust-bar__number {
    font-size: 2.4rem;
    font-weight: var(--fw-extrabold);
    color: var(--deep-forest);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.gw-trust-bar__number span {
    color: var(--himalayan-gold);
}

.gw-trust-bar__label {
    font-size: 0.85rem;
    color: var(--stone-gray);
    font-weight: var(--fw-medium);
}


/* ============================================
   SERVICES GRID
   ============================================ */
.gw-services {
    padding-top: calc(var(--space-3xl) + 40px);
}

.gw-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gw-service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 0 0 var(--space-lg);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-smooth);
    border: 1px solid rgba(6, 122, 122, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 342px;
    isolation: isolate;
}

.gw-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--jade-green), var(--himalayan-gold));
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.gw-service-card::after {
    content: '';
    position: absolute;
    inset: auto 1.4rem 1.1rem 1.4rem;
    height: 44px;
    border-radius: var(--radius-pill);
    background: rgba(234, 247, 245, 0.82);
    opacity: 0;
    transform: translateY(0.65rem) scale(0.96);
    transition: opacity var(--duration-normal) var(--ease-smooth), transform var(--duration-normal) var(--ease-smooth);
    z-index: -1;
}

.gw-service-card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 22px 55px rgba(11, 79, 108, 0.16);
    border-color: rgba(6, 122, 122, 0.18);
}

.gw-service-card:hover::before {
    transform: scaleX(1);
}

.gw-service-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gw-service-card__icon {
    width: 64px;
    height: 64px;
    margin: -2rem auto var(--space-sm);
    background: var(--mint-tint);
    border: 4px solid #fff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    z-index: 2;
}

.gw-service-card__image {
    height: 150px;
    background: var(--deep-forest);
    overflow: hidden;
}

.gw-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.gw-service-card:hover .gw-service-card__image img {
    transform: scale(1.06);
}

.gw-service-card:hover .gw-service-card__icon {
    background: var(--jade-green);
    transform: translateY(-0.35rem) rotate(-3deg) scale(1.08);
    box-shadow: 0 14px 28px rgba(6, 122, 122, 0.22);
}

.gw-service-card__icon svg {
    width: 30px;
    height: 30px;
    fill: var(--jade-green);
    transition: fill var(--duration-normal) var(--ease-smooth);
}

.gw-service-card:hover .gw-service-card__icon svg {
    fill: #fff;
}

.gw-service-card:hover h3 {
    color: var(--jade-green);
}

.gw-service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: var(--fw-semibold);
    padding: 0 var(--space-md);
}

.gw-service-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: var(--stone-gray);
    padding: 0 var(--space-md);
}

.gw-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: var(--fw-semibold);
    color: var(--jade-green);
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    z-index: 2;
}

.gw-service-card__link:hover {
    color: var(--himalayan-gold);
    gap: 0.65rem;
}

.gw-service-card__link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}


/* ============================================
   MEET THE DOCTOR
   ============================================ */
.gw-doctor {
    background: linear-gradient(180deg, var(--warm-ivory) 0%, var(--mint-tint) 100%);
}

.gw-doctor__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.gw-doctor__image-wrap {
    position: relative;
}

.gw-doctor__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.gw-doctor__image img {
    width: 100%;
    height: 550px;
    object-fit: contain;
}

.gw-doctor__accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--himalayan-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

.gw-doctor__experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--himalayan-gold);
    color: var(--deep-forest);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.gw-doctor__experience-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: var(--fw-extrabold);
    line-height: 1;
}

.gw-doctor__experience-badge span {
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gw-doctor__content h2 {
    margin-bottom: var(--space-sm);
}

.gw-doctor__content h2 span {
    color: var(--jade-green);
}

.gw-doctor__credentials {
    margin: var(--space-md) 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gw-doctor__credential {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: var(--fw-medium);
    color: var(--deep-forest);
    border: 1px solid var(--mint-tint);
}

.gw-doctor__credential svg {
    width: 14px;
    height: 14px;
    fill: var(--himalayan-gold);
}

.gw-doctor__message {
    font-style: italic;
    border-left: 3px solid var(--himalayan-gold);
    padding-left: var(--space-md);
    margin: var(--space-md) 0;
    color: var(--stone-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ============================================
   BEFORE & AFTER GALLERY
   ============================================ */
.gw-gallery {
    overflow: hidden;
}

.gw-gallery__slider {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-md) 0;
    margin-top: var(--space-xl);
}

.gw-gallery__slider::-webkit-scrollbar {
    display: none;
}

.gw-gallery__slide {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.gw-gallery__slide:hover {
    transform: scale(1.02);
}

.gw-gallery__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 250px;
    position: relative;
}

.gw-gallery__images::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--himalayan-gold);
    transform: translateX(-50%);
    z-index: 2;
}

.gw-gallery__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gw-gallery__images--single {
    display: block;
    aspect-ratio: 1 / 1;
    height: auto;
    background: var(--deep-forest);
    overflow: hidden;
}

.gw-gallery__images--single::after {
    display: none;
}

.gw-gallery__images--single img {
    aspect-ratio: 1 / 1;
    display: block;
}

.gw-gallery__badge {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--deep-forest);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    padding: 0.32rem 0.65rem;
    text-transform: uppercase;
}

.gw-gallery__labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

.gw-gallery__label {
    padding: 0.4rem;
    font-size: 0.7rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gw-gallery__label--before {
    background: var(--stone-gray);
    color: #fff;
}

.gw-gallery__label--after {
    background: var(--jade-green);
    color: #fff;
}

.gw-gallery__info {
    padding: var(--space-sm) var(--space-md);
}

.gw-gallery__info h4 {
    margin-bottom: 0.25rem;
}

.gw-gallery__info p {
    font-size: 0.85rem;
    color: var(--stone-gray);
}

.gw-gallery__controls {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.gw-gallery__control {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    border: 2px solid var(--jade-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-smooth);
    color: var(--jade-green);
}

.gw-gallery__control:hover {
    background: var(--jade-green);
    color: #fff;
}

.gw-gallery__control svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gw-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gw-case-card {
    background: #fff;
    border: 1px solid rgba(6, 122, 122, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth);
}

.gw-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gw-case-card__image {
    aspect-ratio: 1 / 1;
    background: var(--deep-forest);
    overflow: hidden;
}

.gw-case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.gw-case-card--poster .gw-case-card__image {
    background: linear-gradient(135deg, #0b3568, #243ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gw-case-card--poster .gw-case-card__image img {
    width: min(206px, 100%);
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.gw-case-card:hover .gw-case-card__image img {
    transform: scale(1.04);
}

.gw-case-card__body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.gw-case-card__body span {
    display: inline-flex;
    background: var(--mint-tint);
    color: var(--jade-green);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    margin-bottom: 0.55rem;
    padding: 0.22rem 0.6rem;
    text-transform: uppercase;
}

.gw-case-card__body h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gw-case-card__body p {
    color: var(--stone-gray);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
}

.gw-media-strip {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.8fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gw-media-strip__item {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin: 0;
    position: relative;
}

.gw-media-strip__item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.gw-media-strip__item--poster {
    background: linear-gradient(135deg, #0b3568, #243ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gw-media-strip__item--poster img {
    width: min(206px, 100%);
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.gw-media-strip__item figcaption {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    background: rgba(11, 79, 108, 0.88);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.86rem;
    font-weight: var(--fw-semibold);
    padding: 0.55rem 0.7rem;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.gw-testimonials {
    background: var(--deep-forest);
    color: #fff;
    overflow: hidden;
}

.gw-testimonials h2 {
    color: #fff;
}

.gw-testimonials .section-label {
    color: var(--himalayan-gold);
}

.gw-testimonials__track {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.gw-testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    backdrop-filter: blur(4px);
}

.gw-testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-sm);
}

.gw-testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    fill: var(--himalayan-gold);
}

.gw-testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.gw-testimonial-card__text::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--himalayan-gold);
    opacity: 0.4;
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.gw-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gw-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background: var(--jade-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    color: #fff;
}

.gw-testimonial-card__name {
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    color: #fff;
}

.gw-testimonial-card__treatment {
    font-size: 0.8rem;
    color: var(--himalayan-gold);
    font-weight: var(--fw-medium);
}

.gw-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
}

.gw-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    background: rgba(255,255,255,0.2);
    transition: all var(--duration-normal) var(--ease-smooth);
    cursor: pointer;
}

.gw-testimonials__dot.active {
    background: var(--himalayan-gold);
    width: 28px;
    border-radius: var(--radius-pill);
}


/* ============================================
   LOCATION / MAP SECTION
   ============================================ */
.gw-location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    margin-top: var(--space-xl);
}

.gw-location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.gw-location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gw-location__info {
    padding: var(--space-md) 0;
}

.gw-location__details {
    margin: var(--space-lg) 0;
}

.gw-location__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.gw-location__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--mint-tint);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gw-location__detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--jade-green);
}

.gw-location__detail h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.gw-location__detail p {
    font-size: 0.9rem;
    color: var(--stone-gray);
}

.gw-location__detail a {
    color: var(--jade-green);
    font-weight: var(--fw-medium);
}

.gw-location__detail a:hover {
    color: var(--himalayan-gold);
}

.gw-location__hours {
    background: #fff;
    border: 1px solid rgba(6, 122, 122, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.15rem;
    margin-top: var(--space-md);
    position: relative;
    overflow: hidden;
}

.gw-location__hours::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--jade-green), var(--himalayan-gold));
}

.gw-location__hours-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.95rem;
}

.gw-location__hours-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--mint-tint);
    color: var(--jade-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
}

.gw-location__hours-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.gw-location__hours h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.gw-location__hours p {
    color: var(--stone-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.gw-location__hours-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    align-items: center;
    background: var(--mint-tint);
    border-radius: var(--radius-md);
    padding: 0.85rem 0.95rem;
    font-size: 0.95rem;
}

.gw-location__hours-row:last-child {
    border-bottom: none;
}

.gw-location__hours-day {
    font-weight: var(--fw-medium);
    color: var(--charcoal);
}

.gw-location__hours-time {
    color: var(--jade-green);
    font-weight: var(--fw-bold);
    text-align: right;
}

.gw-location__hours-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.gw-location__hours-actions a {
    min-height: 42px;
    border: 1px solid rgba(6, 122, 122, 0.16);
    border-radius: var(--radius-md);
    color: var(--deep-forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.gw-location__hours-actions a:hover {
    background: var(--jade-green);
    border-color: var(--jade-green);
    color: #fff;
    transform: translateY(-2px);
}

.gw-location__hours-actions svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}


/* ============================================
   FOOTER
   ============================================ */
.gw-footer {
    background: var(--deep-forest);
    color: #fff;
    position: relative;
}

.gw-footer__premium-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gw-footer__premium-image img,
.gw-footer__premium-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gw-footer__premium-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(0deg, var(--deep-forest) 0%, transparent 60%);
}

.gw-footer__main {
    padding: var(--space-xl) 0;
}

.gw-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
}

.gw-footer__brand-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: var(--space-sm) 0 var(--space-md);
}

.gw-footer__social {
    display: flex;
    gap: 0.75rem;
}

.gw-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.gw-footer__social-link:hover {
    background: var(--himalayan-gold);
    border-color: var(--himalayan-gold);
    transform: translateY(-3px);
}

.gw-footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.gw-footer__heading {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: 0.75rem;
}

.gw-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--himalayan-gold);
}

.gw-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.gw-footer__link {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: all var(--duration-normal) var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gw-footer__link::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--himalayan-gold);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.gw-footer__link:hover {
    color: var(--himalayan-gold);
}

.gw-footer__link:hover::before {
    width: 12px;
}

.gw-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: var(--space-sm);
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

.gw-footer__contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--himalayan-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.gw-footer__contact-item a {
    color: rgba(255,255,255,0.7);
}

.gw-footer__contact-item a:hover {
    color: var(--himalayan-gold);
}

.gw-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gw-footer__copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.gw-footer__bottom-links {
    display: flex;
    gap: var(--space-md);
}

.gw-footer__bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.gw-footer__bottom-links a:hover {
    color: var(--himalayan-gold);
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.gw-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-normal) var(--ease-smooth);
    animation: gw-pulse 2s infinite;
}

.gw-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.gw-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes gw-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}


/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.gw-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.gw-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gw-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.gw-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.gw-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.gw-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================
   BOOKING FORM
   ============================================ */
.gw-booking-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.gw-booking-form h3 {
    margin-bottom: var(--space-md);
}

.gw-form-group {
    margin-bottom: var(--space-md);
}

.gw-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: var(--fw-semibold);
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.gw-form-group input,
.gw-form-group select,
.gw-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--duration-normal) var(--ease-smooth);
    background: var(--warm-ivory);
}

.gw-form-group input:focus,
.gw-form-group select:focus,
.gw-form-group textarea:focus {
    outline: none;
    border-color: var(--jade-green);
    background: #fff;
}

.gw-booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    min-width: 0;
}

.gw-appointment-card {
    background: #fff;
    border: 1px solid rgba(6, 122, 122, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    min-width: 0;
}

.gw-appointment-doctor__head {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.gw-appointment-doctor__avatar {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-circle);
    background: var(--mint-tint);
    border: 3px solid rgba(6, 122, 122, 0.1);
    overflow: hidden;
    flex: 0 0 76px;
}

.gw-appointment-doctor__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
    display: block;
}

.gw-quick-contact h4 {
    margin-bottom: var(--space-sm);
}

.gw-quick-contact__item,
.gw-quick-contact__hours {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 64px;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--mint-tint);
    color: var(--charcoal);
    font-weight: var(--fw-medium);
    margin-bottom: 0.75rem;
    transition: transform var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth), background var(--duration-normal) var(--ease-smooth);
}

.gw-quick-contact__item:last-child,
.gw-quick-contact__hours:last-child {
    margin-bottom: 0;
}

.gw-quick-contact__item--whatsapp {
    background: #E8F8EE;
}

.gw-quick-contact__item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    color: var(--deep-forest);
}

.gw-quick-contact__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--jade-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    box-shadow: 0 8px 18px rgba(11, 79, 108, 0.08);
}

.gw-quick-contact__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.gw-quick-contact__item--whatsapp .gw-quick-contact__icon {
    color: #1DA851;
}

.gw-quick-contact__item strong,
.gw-quick-contact__hours strong {
    color: var(--deep-forest);
    display: block;
    font-size: 0.9rem;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

.gw-quick-contact__item span:last-child,
.gw-quick-contact__hours span:last-child {
    color: var(--stone-gray);
    font-size: 0.9rem;
    line-height: 1.35;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.gw-faq__list {
    margin-top: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gw-faq__item {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    border: 1px solid rgba(6, 122, 122, 0.08);
    transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.gw-faq__item:hover {
    box-shadow: var(--shadow-sm);
}

.gw-faq__question {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: color var(--duration-normal) var(--ease-smooth);
}

.gw-faq__question:hover {
    color: var(--jade-green);
}

.gw-faq__question svg {
    width: 20px;
    height: 20px;
    fill: var(--jade-green);
    transition: transform var(--duration-normal) var(--ease-smooth);
    flex-shrink: 0;
}

.gw-faq__item.active .gw-faq__question svg {
    transform: rotate(180deg);
}

.gw-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-smooth);
}

.gw-faq__answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--stone-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ============================================
   PAGE TEMPLATES â€" General
   ============================================ */
.gw-page-hero {
    background: var(--deep-forest);
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    text-align: center;
}

.gw-page-hero h1 {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.gw-page-hero p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.gw-page-hero .gw-breadcrumb {
    margin-bottom: var(--space-md);
}

.gw-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.gw-breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.gw-breadcrumb a:hover {
    color: var(--himalayan-gold);
}

.gw-breadcrumb span {
    color: var(--himalayan-gold);
}

.gw-breadcrumb svg {
    width: 12px;
    height: 12px;
    fill: rgba(255,255,255,0.4);
}

/* Page Content */
.gw-page-content {
    padding: var(--space-3xl) 0;
}

.gw-page-content__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Service page specific */
.gw-service-hero {
    background: var(--deep-forest);
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
}

.gw-service-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    min-width: 0;
}

.gw-service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.gw-service-detail-main,
.gw-service-sidebar {
    min-width: 0;
}

.gw-service-book-card {
    background: var(--deep-forest);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    color: #fff;
    margin-bottom: var(--space-md);
}

.gw-service-hero h1 {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.gw-service-hero__nepali {
    color: var(--himalayan-gold);
    font-size: 1.3rem;
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-md);
}

.gw-service-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-service-hero__image {
    width: min(100%, 460px);
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(212, 168, 67, 0.38);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
}

.gw-service-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gw-service-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(11, 79, 108, 0.48));
    pointer-events: none;
}

.gw-service-hero__image-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    color: var(--jade-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.gw-service-hero__image-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Benefits list */
.gw-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.gw-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: var(--space-sm);
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 122, 122, 0.08);
}

.gw-benefit__icon {
    width: 36px;
    height: 36px;
    background: var(--mint-tint);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gw-benefit__icon svg {
    width: 16px;
    height: 16px;
    fill: var(--jade-green);
}

.gw-benefit h4 {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.gw-benefit p {
    font-size: 0.82rem;
    color: var(--stone-gray);
    line-height: 1.5;
}


/* ============================================
   CTA BANNER (reusable)
   ============================================ */
.gw-cta-banner {
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--jade-green) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    margin: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.gw-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 168, 59, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-circle);
}

.gw-cta-banner h2 {
    color: #fff;
    margin-bottom: var(--space-sm);
    position: relative;
}

.gw-cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-md);
    position: relative;
}

.gw-cta-banner .gw-btn {
    position: relative;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .gw-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gw-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gw-hero__text {
        margin: 0 auto;
    }

    .gw-hero__ctas {
        justify-content: center;
    }

    .gw-hero__stats {
        justify-content: center;
    }

    .gw-hero__visual {
        display: none;
    }

    .gw-doctor__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .gw-booking-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .gw-location__grid {
        grid-template-columns: 1fr;
    }

    .gw-case-grid,
    .gw-media-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gw-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .gw-header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--deep-forest);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-smooth);
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .gw-header__nav.active {
        transform: translateX(0);
    }

    .gw-header__nav-list {
        flex-direction: column;
        gap: var(--space-xs);
        width: 100%;
    }

    .gw-header__nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .gw-dropdown {
        display: none;
    }

    .gw-header__hamburger {
        display: flex;
    }

    .gw-header__phone {
        display: none;
    }

    .gw-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gw-trust-bar {
        margin-top: -40px;
        padding: var(--space-md);
    }

    .gw-trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .gw-trust-bar__item:not(:last-child)::after {
        display: none;
    }

    .gw-trust-bar__number {
        font-size: 1.8rem;
    }

    .gw-testimonial-card {
        flex: 0 0 calc(100% - 2rem);
    }

    .gw-gallery__slide {
        flex: 0 0 300px;
    }

    .gw-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .gw-footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .gw-benefits {
        grid-template-columns: 1fr;
    }

    .gw-service-hero__grid {
        grid-template-columns: 1fr;
    }

    .gw-service-hero__media {
        justify-content: flex-start;
    }

    .gw-service-hero__image {
        width: 100%;
        max-width: 520px;
    }

    .gw-service-detail-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .gw-service-sidebar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .gw-container {
        width: min(100% - 1.25rem, var(--container));
        max-width: 100%;
        min-width: 0;
    }

    .gw-hero {
        width: 100%;
    }

    .gw-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 2rem 0.75rem 2.75rem;
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-md);
        text-align: center;
    }

    .gw-hero__text {
        width: 100%;
        max-width: 100%;
        justify-self: center;
    }

    .gw-hero h1 {
        font-size: clamp(1.95rem, 9vw, 2.45rem);
        line-height: 1.12;
        max-width: 100%;
    }

    .gw-hero__subtitle {
        font-size: 1rem;
        line-height: 1.62;
        max-width: 100%;
    }

    .gw-hero__badge {
        max-width: 100%;
        white-space: normal;
        justify-content: center;
    }

    .gw-header__inner {
        gap: 0.45rem;
        padding: 0 0.65rem;
        justify-content: flex-start;
    }

    .gw-header__logo {
        gap: 0.5rem;
        min-width: 0;
        flex: 1 1 auto;
    }

    .gw-header__logo-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .gw-header__logo-text {
        min-width: 0;
    }

    .gw-header__logo-name {
        max-width: 128px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.98rem;
    }

    .gw-header__logo-tagline {
        font-size: 0.62rem;
    }

    .gw-header__actions {
        flex: 0 0 auto;
        gap: 0;
    }

    .gw-header__actions .gw-btn {
        width: 40px;
        height: 40px;
        min-height: 40px;
        border-radius: var(--radius-circle);
        padding: 0;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .gw-header__book-full {
        display: none;
    }

    .gw-header__book-short {
        display: none;
    }

    .gw-header__hamburger {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        margin-left: auto;
        padding: 8px 6px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
    }

    .gw-header__hamburger span {
        width: 22px;
        flex: 0 0 2px;
    }

    .gw-header__actions .gw-btn svg {
        width: 15px;
        height: 15px;
    }

    .gw-services__grid {
        grid-template-columns: 1fr;
    }

    .gw-hero h1 {
        font-size: 2rem;
    }

    .gw-hero__ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .gw-hero__ctas .gw-btn {
        width: min(100%, 320px);
        justify-content: center;
    }

    .gw-hero__stats {
        display: none;
    }

    .gw-trust-bar__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gw-case-grid,
    .gw-media-strip {
        grid-template-columns: 1fr;
    }

    .gw-location__hours-row,
    .gw-location__hours-actions {
        grid-template-columns: 1fr;
    }

    .gw-location__hours-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .gw-location__hours-time {
        text-align: left;
    }

    .gw-service-detail-layout,
    .gw-booking-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-md);
        width: 100%;
    }

    .gw-service-book-card,
    .gw-appointment-card,
    .gw-booking-form {
        padding: var(--space-md);
        max-width: 100%;
    }

    .gw-service-book-card .gw-btn,
    .gw-quick-contact__item,
    .gw-quick-contact__hours {
        min-width: 0;
    }

    .gw-service-book-card .gw-btn {
        white-space: normal;
    }
}

@media (max-width: 360px) {
    .gw-header__inner {
        padding: 0 0.55rem;
    }

    .gw-header__logo-name {
        max-width: 112px;
        font-size: 0.9rem;
    }

    .gw-header__logo-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .gw-header__actions .gw-btn {
        width: 38px;
        height: 38px;
        min-height: 38px;
    }

    .gw-header__hamburger {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        padding: 8px 5px;
    }
}


/* ============================================
   HIDE PARENT THEME ELEMENTS
   ============================================ */
.ast-above-header-wrap,
.ast-below-header-wrap,
#ast-desktop-header,
#ast-mobile-header,
.ast-desktop-header-content,
.ast-mobile-header-content,
.site-header,
.ast-primary-header-bar,
.site-footer,
.ast-small-footer,
#colophon,
.ast-footer-overlay,
.ast-above-header,
.ast-below-header,
.ast-header-break-point .ast-mobile-header-wrap,
header.site-header.ast-primary-header,
footer.site-footer {
    display: none !important;
}

/* Ensure body has no top padding from the parent theme */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post {
    padding: 0;
}

#page > .ast-container {
    max-width: 100%;
    padding: 0;
}

.ast-separate-container #primary {
    padding: 0;
    margin: 0;
}

.site-content > .ast-container {
    max-width: 100%;
    padding: 0;
}

/* Override parent content wrapper */
.site-content .ast-container {
    display: block;
}

.entry-content {
    margin: 0;
    padding: 0;
}

/* GeneratePress child-theme viewport cleanup */
.site-header, .site-footer, .inside-header, .inside-site-info { display: none !important; }
.site-content, .container.grid-container, .site-main { margin: 0 !important; padding: 0 !important; max-width: none !important; }
.gw-hero__doctor-image img, .gw-doctor__image img { object-position: center top; }


/* Biraj Dental hero polish override */
.gw-hero {
    min-height: min(720px, calc(100vh - var(--header-height)));
    padding-top: 0;
    align-items: center;
}

.gw-hero__content {
    padding: clamp(2.25rem, 5vw, 4rem) var(--space-md) clamp(3rem, 6vw, 5rem);
    gap: clamp(2rem, 5vw, 4rem);
}

.gw-hero__text {
    transform: translateY(-0.25rem);
}

.gw-hero__badge {
    margin-bottom: 1rem;
}

.gw-hero h1 {
    margin-bottom: 1rem;
}

.gw-hero__subtitle {
    margin-bottom: 1.5rem;
}

.gw-hero__stats {
    margin-top: 2rem;
}

.gw-hero__visual {
    min-height: 540px;
    isolation: isolate;
    align-self: end;
}

.gw-hero__visual::before {
    content: none;
    position: absolute;
    width: min(88%, 460px);
    aspect-ratio: 1 / 1;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 44%, rgba(234, 247, 245, 0.28), rgba(234, 247, 245, 0.08) 44%, transparent 68%),
        linear-gradient(150deg, rgba(255, 248, 239, 0.18), rgba(6, 122, 122, 0.18));
    filter: blur(0.5px);
    z-index: -2;
}

.gw-hero__visual::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    width: min(78%, 390px);
    height: 42px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.26), transparent 68%);
    filter: blur(10px);
    z-index: -1;
}

.gw-hero__doctor-image {
    width: min(42vw, 430px);
    height: 540px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: translateY(1.4rem) scale(1.03);
}

.gw-hero__doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 0;
    filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.26));
}

.gw-hero__doctor-card {
    bottom: 1.75rem;
    left: -0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 42px rgba(11, 79, 108, 0.22);
}

@media (max-width: 1024px) {
    .gw-hero {
        min-height: auto;
    }

    .gw-hero__content {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .gw-hero__visual {
        display: flex;
        min-height: 440px;
    }

    .gw-hero__doctor-image {
        width: min(72vw, 360px);
        height: 430px;
    }
}

@media (max-width: 768px) {
    .gw-hero__content {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .gw-hero__visual {
        display: none;
    }
}
/* Transparent doctor cutout rules */
.gw-hero__doctor-image,
.gw-doctor__image {
    background: transparent !important;
}

.gw-hero__doctor-image img,
.gw-doctor__image img {
    object-fit: contain !important;
    object-position: center bottom !important;
}
/* Transparent cutout scale tuning */
.gw-hero__doctor-image {
    width: min(38vw, 360px);
    height: 620px;
    transform: translateY(-0.35rem) scale(1.08);
}

.gw-hero__doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center bottom !important;
}

@keyframes gwDoctorEntrance {
    0% {
        opacity: 0;
        transform: translateY(2.8rem) scale(0.94);
        filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.08));
    }
    62% {
        opacity: 1;
        transform: translateY(-0.85rem) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(-0.35rem) scale(1.08);
    }
}

@keyframes gwDoctorCardEntrance {
    from {
        opacity: 0;
        transform: translate(-0.75rem, 0.85rem) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

.gw-hero__doctor-image {
    animation: gwDoctorEntrance 980ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
    will-change: transform, opacity;
}

.gw-hero__doctor-card {
    animation: gwDoctorCardEntrance 720ms cubic-bezier(0.16, 1, 0.3, 1) 720ms both;
}

@media (prefers-reduced-motion: reduce) {
    .gw-hero__doctor-image,
    .gw-hero__doctor-card {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .gw-hero__doctor-image {
        width: min(58vw, 300px);
        height: 500px;
    }
}

/* Final mobile overflow guard */
@media (max-width: 768px) {
    html,
    body,
    #page,
    .site,
    main {
        max-width: 100%;
        overflow-x: hidden;
    }

    .gw-header__nav {
        display: none;
        max-width: min(360px, 86vw);
        visibility: hidden;
        pointer-events: none;
    }

    .gw-header__nav.active {
        display: flex;
        visibility: visible;
        pointer-events: auto;
    }

    .gw-hero,
    .gw-service-hero,
    .gw-page-hero,
    .gw-section {
        max-width: 100%;
        overflow-x: clip;
    }

    .gw-hero h1,
    .gw-service-hero h1,
    .gw-page-hero h1,
    .gw-hero__subtitle,
    .gw-service-hero p,
    .gw-page-hero p {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .gw-hero h1,
    .gw-service-hero h1,
    .gw-page-hero h1 {
        font-size: clamp(1.7rem, 7.2vw, 1.95rem);
        max-width: 12.5ch;
        margin-left: auto;
        margin-right: auto;
    }

    .gw-hero__subtitle,
    .gw-service-hero p,
    .gw-page-hero p {
        max-width: min(100%, 31ch);
        margin-left: auto;
        margin-right: auto;
        font-size: 0.96rem;
    }

    .gw-service-hero__nepali {
        font-size: 1.05rem;
    }

    .gw-hero__stats {
        display: none !important;
    }

    .gw-trust-bar {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 1.25rem 0.85rem;
        overflow: hidden;
    }

    .gw-trust-bar__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem 0.75rem;
    }

    .gw-trust-bar__item {
        min-width: 0;
    }

    .gw-trust-bar__item:last-child {
        grid-column: 1 / -1;
    }

    .gw-trust-bar__number {
        font-size: 1.55rem;
        overflow-wrap: anywhere;
    }

    .gw-trust-bar__label {
        font-size: 0.72rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    #header-book-btn .gw-header__book-full,
    #header-book-btn .gw-header__book-short {
        display: none !important;
    }

    .gw-hero__content {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-left: max(0.85rem, env(safe-area-inset-left));
        padding-right: max(0.85rem, env(safe-area-inset-right));
    }

    .gw-hero__text,
    .gw-service-detail-main,
    .gw-service-sidebar,
    .gw-booking-form,
    .gw-appointment-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .gw-service-detail-layout,
    .gw-booking-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
    }

    .gw-btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .gw-hero h1 {
        font-size: clamp(1.7rem, 7.2vw, 1.95rem);
        overflow-wrap: anywhere;
    }

    .gw-service-hero h1,
    .gw-page-hero h1 {
        font-size: clamp(1.7rem, 7.2vw, 1.95rem);
        max-width: 12.5ch;
        margin-left: auto;
        margin-right: auto;
    }

    .gw-hero h1,
    .gw-hero__subtitle,
    .gw-service-hero p,
    .gw-page-hero p {
        max-width: min(100%, 31ch);
        margin-left: auto;
        margin-right: auto;
    }

    .gw-service-hero__nepali {
        font-size: 1.05rem;
    }

    .gw-trust-bar {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 1.25rem 0.85rem;
        overflow: hidden;
    }

    .gw-trust-bar__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem 0.75rem;
    }

    .gw-trust-bar__item {
        min-width: 0;
    }

    .gw-trust-bar__number {
        font-size: 1.55rem;
        overflow-wrap: anywhere;
    }

    .gw-trust-bar__label {
        font-size: 0.72rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .gw-service-book-card,
    .gw-appointment-card,
    .gw-booking-form {
        border-radius: var(--radius-lg);
        padding: 1.1rem;
    }

    .gw-service-book-card .gw-btn {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
