/* ============================================
   AACDEN Dental - Corporate Premium Theme
   ============================================ */

:root {
    --aacden-primary: #0B4F6C;
    --aacden-primary-dark: #083D54;
    --aacden-primary-light: #E8F4F8;
    --aacden-accent: #20BFA9;
    --aacden-accent-dark: #1AA896;
    --aacden-accent-light: #E6F9F6;
    --aacden-dark: #1A1D2B;
    --aacden-text: #3D4055;
    --aacden-text-light: #6B7094;
    --aacden-border: #E2E5EF;
    --aacden-bg: #FAFBFD;
    --aacden-white: #FFFFFF;
    --aacden-warm: #FFF8F0;
    --aacden-danger: #D64545;
    --aacden-radius: 10px;
    --aacden-radius-lg: 16px;
    --aacden-shadow: 0 2px 16px rgba(11, 79, 108, 0.06);
    --aacden-shadow-lg: 0 8px 40px rgba(11, 79, 108, 0.10);
    --aacden-shadow-hover: 0 12px 48px rgba(11, 79, 108, 0.14);
    --aacden-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--aacden-text);
    background: var(--aacden-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--aacden-primary); text-decoration: none; transition: color var(--aacden-transition); }
a:hover { color: var(--aacden-accent); }

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--aacden-dark);
    line-height: 1.25;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--aacden-text-light); font-size: 1.1rem; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--aacden-accent);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--aacden-accent);
    transform: translateY(-50%);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--aacden-transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--aacden-primary);
    color: var(--aacden-white);
    border-color: var(--aacden-primary);
}
.btn-primary:hover {
    background: var(--aacden-primary-dark);
    border-color: var(--aacden-primary-dark);
    color: var(--aacden-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(11, 79, 108, 0.25);
}

.btn-accent {
    background: var(--aacden-accent);
    color: var(--aacden-white);
    border-color: var(--aacden-accent);
}
.btn-accent:hover {
    background: var(--aacden-accent-dark);
    border-color: var(--aacden-accent-dark);
    color: var(--aacden-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(32, 191, 169, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--aacden-primary);
    border-color: var(--aacden-primary);
}
.btn-outline:hover {
    background: var(--aacden-primary);
    color: var(--aacden-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--aacden-white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--aacden-white);
    color: var(--aacden-primary);
}

.btn-light {
    background: var(--aacden-white);
    color: var(--aacden-primary);
    border-color: var(--aacden-white);
}
.btn-light:hover {
    background: var(--aacden-primary-light);
    color: var(--aacden-primary-dark);
    transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--aacden-transition);
}

.header-top {
    background: var(--aacden-primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 6px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact-bar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.8);
}
.header-contact-item:hover { color: var(--aacden-white); }
.header-contact-item svg { opacity: 0.7; }

.header-social {
    display: flex;
    gap: 0.75rem;
}
.header-social a {
    color: rgba(255,255,255,0.7);
    transition: color var(--aacden-transition);
}
.header-social a:hover { color: var(--aacden-accent-light); }

.header-main {
    background: var(--aacden-white);
    padding: 0.75rem 0;
    box-shadow: var(--aacden-shadow);
    transition: all var(--aacden-transition);
}

.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .header-main {
    padding: 0.5rem 0;
    box-shadow: var(--aacden-shadow-lg);
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-brand a,
.site-title-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--aacden-primary);
    text-decoration: none;
}
.site-brand img,
.custom-logo {
    max-height: 52px;
    width: auto;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.main-nav .nav-list li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--aacden-text);
    border-radius: 6px;
    transition: all var(--aacden-transition);
}
.main-nav .nav-list li a:hover,
.main-nav .nav-list li.current-menu-item a {
    color: var(--aacden-primary);
    background: var(--aacden-primary-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    transition: all var(--aacden-transition);
}
.btn-whatsapp:hover { background: #1FB855; transform: scale(1.08); color: #fff; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--aacden-dark);
    border-radius: 2px;
    transition: all var(--aacden-transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--aacden-primary) 0%, var(--aacden-primary-dark) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 79, 108, 0.88) 0%, rgba(8, 61, 84, 0.75) 50%, rgba(11, 79, 108, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.hero-text { color: var(--aacden-white); }

.hero-badge {
    display: inline-block;
    background: rgba(32, 191, 169, 0.15);
    color: var(--aacden-accent-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(32, 191, 169, 0.25);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-text h1 {
    color: var(--aacden-white);
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    margin-bottom: 1.25rem;
    line-height: 1.12;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mini-booking-card {
    background: var(--aacden-white);
    border-radius: var(--aacden-radius-lg);
    padding: 2rem;
    box-shadow: var(--aacden-shadow-lg);
}
.mini-booking-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    text-align: center;
}
.mini-booking-card .form-select,
.mini-booking-card .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--aacden-border);
    border-radius: var(--aacden-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: border-color var(--aacden-transition);
    color: var(--aacden-text);
    background: var(--aacden-white);
    appearance: none;
}
.mini-booking-card .form-select:focus,
.mini-booking-card .form-input:focus {
    outline: none;
    border-color: var(--aacden-accent);
}
.mini-booking-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--aacden-text-light);
    margin-top: 0.75rem;
}
.mini-booking-note a { color: var(--aacden-primary); font-weight: 600; }

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--aacden-white);
    border-bottom: 1px solid var(--aacden-border);
    padding: 2.5rem 0;
    margin-top: -1px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--aacden-primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--aacden-text-light);
    margin-top: 0.35rem;
    font-weight: 500;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 5.5rem 0;
}

.section-services { background: var(--aacden-bg); }

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--aacden-white);
    border-radius: var(--aacden-radius-lg);
    padding: 2.25rem 1.75rem;
    transition: all var(--aacden-transition);
    border: 1px solid var(--aacden-border);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aacden-accent), var(--aacden-primary));
    opacity: 0;
    transition: opacity var(--aacden-transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aacden-shadow-hover);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--aacden-primary-light);
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.service-card p {
    color: var(--aacden-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images { position: relative; }

.about-image-stack {
    position: relative;
}
.about-image-stack .about-img:first-child {
    border-radius: var(--aacden-radius-lg);
    overflow: hidden;
    box-shadow: var(--aacden-shadow-lg);
}
.about-image-stack .about-img:first-child img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-image-stack .about-img:nth-child(2) {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--aacden-radius-lg);
    overflow: hidden;
    border: 5px solid var(--aacden-white);
    box-shadow: var(--aacden-shadow-lg);
}
.about-image-stack .about-img:nth-child(2) img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.about-img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--aacden-primary-light), var(--aacden-accent-light));
    border-radius: var(--aacden-radius-lg);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--aacden-accent);
    color: var(--aacden-white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 6px 30px rgba(32, 191, 169, 0.35);
    z-index: 2;
}
.badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.badge-text {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

.about-content .section-label { margin-bottom: 0.5rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p {
    color: var(--aacden-text-light);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--aacden-dark);
}

/* ============================================
   Doctors Section
   ============================================ */
.section-doctors { background: var(--aacden-bg); }

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.doctor-card {
    background: var(--aacden-white);
    border-radius: var(--aacden-radius-lg);
    overflow: hidden;
    transition: all var(--aacden-transition);
    border: 1px solid var(--aacden-border);
}
.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aacden-shadow-hover);
    border-color: transparent;
}

.doctor-card-image {
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--aacden-primary-light), var(--aacden-accent-light));
}
.doctor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.doctor-card:hover .doctor-card-image img { transform: scale(1.04); }

.doctor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--aacden-primary);
    opacity: 0.4;
}

.doctor-card-info {
    padding: 1.5rem;
    text-align: center;
}
.doctor-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.doctor-specialty {
    color: var(--aacden-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ============================================
   Emergency Section
   ============================================ */
.section-emergency { padding: 4rem 0; }

.emergency-card {
    background: linear-gradient(135deg, var(--aacden-primary) 0%, var(--aacden-primary-dark) 100%);
    border-radius: var(--aacden-radius-lg);
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.emergency-content { position: relative; z-index: 2; max-width: 600px; }
.emergency-content h2 {
    color: var(--aacden-white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.emergency-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.emergency-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.emergency-icon {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

/* ============================================
   Booking Form
   ============================================ */
.section-booking-cta { background: var(--aacden-bg); }

.aacden-booking-form {
    max-width: 750px;
    margin: 0 auto;
    background: var(--aacden-white);
    border-radius: var(--aacden-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--aacden-shadow);
    border: 1px solid var(--aacden-border);
}

.step-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--aacden-border);
}

.step-dot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--aacden-text-light);
    transition: color var(--aacden-transition);
}
.step-dot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--aacden-border);
    color: var(--aacden-text-light);
    font-weight: 700;
    font-size: 0.78rem;
    transition: all var(--aacden-transition);
}
.step-dot.active { color: var(--aacden-primary); }
.step-dot.active span {
    background: var(--aacden-primary);
    color: var(--aacden-white);
}
.step-dot.done span {
    background: var(--aacden-accent);
    color: var(--aacden-white);
}

.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.booking-step h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.booking-step h3 small {
    font-weight: 400;
    color: var(--aacden-text-light);
    font-size: 0.85em;
}

/* Service & Doctor selection grids */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-option input { display: none; }
.service-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0.75rem;
    border: 2px solid var(--aacden-border);
    border-radius: var(--aacden-radius);
    cursor: pointer;
    transition: all var(--aacden-transition);
    text-align: center;
}
.service-option-inner:hover { border-color: var(--aacden-accent); }
.service-option input:checked + .service-option-inner {
    border-color: var(--aacden-accent);
    background: var(--aacden-accent-light);
}
.service-icon { font-size: 1.5rem; }
.service-name { font-size: 0.82rem; font-weight: 500; line-height: 1.3; }

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.doctor-option input { display: none; }
.doctor-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 2px solid var(--aacden-border);
    border-radius: var(--aacden-radius);
    cursor: pointer;
    transition: all var(--aacden-transition);
    text-align: center;
}
.doctor-option-inner:hover { border-color: var(--aacden-primary); }
.doctor-option input:checked + .doctor-option-inner {
    border-color: var(--aacden-primary);
    background: var(--aacden-primary-light);
}

.doctor-avatar,
.doctor-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}
.doctor-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--aacden-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--aacden-primary);
    font-size: 1.1rem;
}
.doctor-option-inner span:last-child {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Date & time */
.datetime-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.date-input-wrap label,
.time-slots-wrap > label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    color: var(--aacden-dark);
}

#booking_date {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--aacden-border);
    border-radius: var(--aacden-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--aacden-transition);
}
#booking_date:focus { outline: none; border-color: var(--aacden-accent); }

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.55rem 1rem;
    border: 1.5px solid var(--aacden-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--aacden-transition);
    background: var(--aacden-white);
    color: var(--aacden-text);
}
.time-slot:hover { border-color: var(--aacden-accent); color: var(--aacden-accent); }
.time-slot.selected {
    background: var(--aacden-accent);
    color: var(--aacden-white);
    border-color: var(--aacden-accent);
}

.slots-placeholder {
    color: var(--aacden-text-light);
    font-size: 0.88rem;
    font-style: italic;
}

/* Form fields */
.form-fields { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--aacden-dark);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--aacden-border);
    border-radius: var(--aacden-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--aacden-transition);
    color: var(--aacden-text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aacden-accent);
}
.form-group textarea { resize: vertical; }

.step-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }

.booking-success {
    text-align: center;
    padding: 3rem 1.5rem;
}
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--aacden-accent);
    color: var(--aacden-white);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.booking-success h3 { margin-bottom: 0.75rem; }
.booking-success p { color: var(--aacden-text-light); margin-bottom: 1.5rem; }

.booking-error {
    background: #FFF0F0;
    border: 1px solid #FFCCCC;
    border-radius: var(--aacden-radius);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    color: var(--aacden-danger);
    font-size: 0.9rem;
}

/* ============================================
   Location Section
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info .section-label { margin-bottom: 0.5rem; }
.location-info h2 { margin-bottom: 2rem; }

.location-details { display: flex; flex-direction: column; gap: 1.5rem; }
.location-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.location-detail svg { flex-shrink: 0; margin-top: 2px; }
.location-detail strong {
    display: block;
    color: var(--aacden-dark);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.location-detail p {
    color: var(--aacden-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.location-map { border-radius: var(--aacden-radius-lg); overflow: hidden; box-shadow: var(--aacden-shadow); }

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--aacden-primary) 0%, var(--aacden-primary-dark) 100%);
    padding: 10rem 0 3.5rem;
    text-align: center;
}
.page-hero h1 {
    color: var(--aacden-white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ============================================
   Page Content
   ============================================ */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.page-content h2 { margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1rem; }
.page-content img { border-radius: var(--aacden-radius); margin: 1.5rem 0; }

.single-featured {
    margin-bottom: 2rem;
    border-radius: var(--aacden-radius-lg);
    overflow: hidden;
}
.single-featured img { width: 100%; }

/* Posts grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}
.post-card {
    background: var(--aacden-white);
    border-radius: var(--aacden-radius-lg);
    overflow: hidden;
    border: 1px solid var(--aacden-border);
    transition: all var(--aacden-transition);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--aacden-shadow-hover); }
.post-card-image img { width: 100%; height: 220px; object-fit: cover; }
.post-card-content { padding: 1.5rem; }
.post-card-content h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.post-card-content h2 a { color: var(--aacden-dark); }
.post-card-content h2 a:hover { color: var(--aacden-primary); }
.post-card-content p { color: var(--aacden-text-light); font-size: 0.9rem; margin-bottom: 1rem; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--aacden-dark);
    color: rgba(255,255,255,0.75);
}

.footer-main { padding: 4rem 0 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aacden-white);
    display: block;
    margin-bottom: 1rem;
}
.footer-brand-col .custom-logo-link img,
.footer-brand-col .custom-logo {
    max-height: 44px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all var(--aacden-transition);
}
.footer-social a:hover { background: var(--aacden-accent); color: var(--aacden-white); }

.footer-col h4 {
    color: var(--aacden-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--aacden-transition);
}
.footer-col ul li a:hover { color: var(--aacden-accent); }

.footer-contact-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--aacden-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--aacden-transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-booking-mini { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .main-nav { display: none; }
    .main-nav.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--aacden-white);
        box-shadow: var(--aacden-shadow-lg);
        padding: 1rem;
    }
    .main-nav.open .nav-list { flex-direction: column; }
    .main-nav.open .nav-list li a { padding: 0.85rem 1rem; }
    .mobile-toggle { display: flex; }
    .header-actions .btn { display: none; }

    .hero { min-height: 80vh; padding-top: 100px; }
    .hero-text h1 { font-size: 2.2rem; }

    .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .section { padding: 3.5rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: 1fr; }

    .emergency-card { padding: 2.5rem 2rem; }
    .emergency-icon { display: none; }

    .datetime-picker { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .step-indicators { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 1.9rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .aacden-booking-form { padding: 1.5rem; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .doctor-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   WooCommerce overrides (minimal)
   ============================================ */
.woocommerce .button,
.woocommerce a.button {
    background: var(--aacden-primary) !important;
    color: var(--aacden-white) !important;
    border-radius: 50px !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    padding: 0.7rem 1.5rem !important;
    border: none !important;
    transition: all var(--aacden-transition) !important;
}
.woocommerce .button:hover,
.woocommerce a.button:hover {
    background: var(--aacden-primary-dark) !important;
}
