/*
Theme Name: Emergency Dental - Care N Cure
Theme URI: https://www.emergencydentalofgarland.com
Author: Care N Cure Dental
Author URI: https://www.carencuredental.com
Description: Professional emergency dental landing page theme for Care N Cure Dental, Garland TX. Fully customizable from WordPress dashboard.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: emergency-dental
*/

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0085CA;
    --primary-dark: #004B87;
    --primary-light: #E6F4FF;
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --accent-light: #FFF3EE;
    --green: #4CAF50;
    --red: #E53935;
    --red-dark: #C62828;
    --white: #FFFFFF;
    --off-white: #F7FAFD;
    --dark: #1B2A4A;
    --dark-blue: #0D1B3E;
    --text: #4A5568;
    --text-light: #718096;
    --border: #E2E8F0;
    --shadow: rgba(0, 133, 202, 0.12);
    --shadow-lg: rgba(0, 133, 202, 0.2);
    --gradient-primary: linear-gradient(135deg, #004B87 0%, #0085CA 50%, #00A8E8 100%);
    --gradient-dark: linear-gradient(135deg, #0D1B3E 0%, #1B2A4A 50%, #004B87 100%);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

/* TOP BAR */
.top-bar {
    background: var(--red);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: pulse-bar 2s infinite;
    position: relative;
    z-index: 1001;
    flex-wrap: wrap;
}

@keyframes pulse-bar {
    0%, 100% { background: #E53935; }
    50% { background: #C62828; }
}

.top-bar a { color: white; text-decoration: none; font-weight: 800; font-size: 16px; border-bottom: 2px solid rgba(255,255,255,0.6); }
.top-bar a:hover { border-color: white; }

/* HEADER */
.site-header {
    background: var(--white);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
}

.logo-area { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.logo-mark {
    width: 52px; height: 52px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 15px var(--shadow);
}

.site-logo-img {
    max-height: 55px;
    width: auto;
    display: block;
}

.logo-text-group h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.logo-text-group h1 span { color: var(--primary); }

.logo-text-group .tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-right { display: flex; align-items: center; gap: 20px; }

.header-info { text-align: right; display: flex; flex-direction: column; }

.header-info .label {
    font-size: 11px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.header-info .label .dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.header-phone {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.header-phone:hover { color: var(--accent); }
.header-phone i { color: var(--primary); font-size: 18px; }

.header-cta {
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* HERO */
.hero {
    background: var(--gradient-dark);
    padding: 70px 5% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,133,202,0.15) 0%, transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
}

.hero-left { max-width: 620px; position: relative; z-index: 2; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229,57,53,0.15);
    border: 1px solid rgba(229,57,53,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(229,57,53,0.2); }
    50% { box-shadow: 0 0 20px rgba(229,57,53,0.4); }
}

.hero-tag .pulse-dot {
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

.hero-tag span { color: #FF8A80; font-size: 13px; font-weight: 600; }

.hero-left h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 54px;
    font-weight: 900;
    color: white;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-left h2 .highlight { color: #64B5F6; }
.hero-left h2 .accent-text { color: var(--accent); }

.doctor-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.doctor-line i { color: #64B5F6; }
.doctor-line span { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}

.hero-check i { color: var(--green); font-size: 16px; }

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-call {
    background: var(--accent);
    color: white;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255,107,53,0.4);
    animation: pulse-btn 2.5s infinite;
}

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.btn-call:hover { background: var(--accent-dark); transform: scale(1.05); }

.btn-book {
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
}

.btn-book:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }

/* HERO FORM */
.hero-right { width: 400px; min-width: 370px; position: relative; z-index: 2; }

.hero-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    border-top: 4px solid var(--primary);
}

.form-header { text-align: center; margin-bottom: 22px; }

.form-header .icon {
    width: 50px; height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 10px;
}

.form-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
}

.form-header p { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.f-group { margin-bottom: 14px; }

.f-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    transition: all 0.3s;
    background: var(--off-white);
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,133,202,0.1);
}

.f-group textarea { height: 70px; resize: none; }

.f-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.f-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--shadow-lg); }

.f-privacy { text-align: center; font-size: 11px; color: #aaa; margin-top: 10px; }
.f-privacy i { color: var(--green); }

/* TRUST BAR */
.trust-bar { background: var(--primary); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    padding: 30px 20px;
    text-align: center;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-item:last-child { border-right: none; }

.trust-item .number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.trust-item .label {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* SECTION HEADER */
.sec-head { text-align: center; margin-bottom: 50px; }

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.sec-head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.sec-head p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICES */
.services-section { padding: 90px 5%; background: var(--off-white); }

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.srv-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.srv-card:hover::before { transform: scaleX(1); }
.srv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow); }

.srv-icon {
    width: 72px; height: 72px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: var(--primary);
    transition: all 0.4s;
}

.srv-card:hover .srv-icon { background: var(--primary); color: white; transform: scale(1.1); }

.srv-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.srv-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* DOCTOR */
.doctor-section { padding: 90px 5%; background: white; }

.doctor-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    align-items: center;
}

.doctor-photo-wrapper { position: relative; }

.doctor-img {
    width: 100%; height: 480px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    object-position: top center;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.doctor-placeholder {
    width: 100%; height: 480px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.doctor-placeholder i { font-size: 90px; opacity: 0.35; margin-bottom: 12px; }
.doctor-placeholder p { font-size: 13px; opacity: 0.7; }

.doc-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 26px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    white-space: nowrap;
    text-align: center;
}

.doc-badge strong { display: block; font-size: 15px; color: var(--primary-dark); font-weight: 800; }
.doc-badge span { font-size: 11px; color: var(--text-light); }

.doctor-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.doctor-content .doc-title { font-size: 15px; color: var(--primary); font-weight: 700; margin-bottom: 18px; }
.doctor-content p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }

.doc-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }

.doc-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.doc-point i { color: var(--green); }

.doc-btns { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn-outline-primary {
    padding: 14px 30px;
    border-radius: 60px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline-primary:hover { background: var(--primary); color: white; }

/* WHY SECTION */
.why-section { padding: 90px 5%; background: var(--off-white); }

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.why-content > p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 30px; }

.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-item-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s;
}

.why-item:hover .why-item-icon { background: var(--primary); color: white; }

.why-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

.why-visual { position: relative; }

.clinic-img {
    width: 100%; height: 480px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.clinic-placeholder {
    width: 100%; height: 480px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.clinic-placeholder i { font-size: 80px; opacity: 0.3; margin-bottom: 15px; }
.clinic-placeholder p { font-size: 14px; opacity: 0.7; }

.float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.float-card.top { top: -15px; left: -15px; }
.float-card.bottom { bottom: -15px; right: -15px; }

.float-card .fc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.float-card .fc-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--dark); }
.float-card .fc-text span { font-size: 11px; color: var(--text-light); }

/* STEPS */
.steps-section { padding: 90px 5%; background: var(--dark-blue); color: white; }
.steps-section .sec-head h2 { color: white; }
.steps-section .sec-head p { color: rgba(255,255,255,0.6); }
.steps-section .sec-badge { background: rgba(255,255,255,0.1); color: #64B5F6; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 13%; right: 13%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.step-card { text-align: center; position: relative; }

.step-num {
    width: 80px; height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    border: 5px solid var(--dark-blue);
    box-shadow: 0 0 0 3px var(--primary);
}

.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* REVIEWS */
.reviews-section { padding: 90px 5%; background: var(--off-white); }

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--shadow); }

.review-stars { color: #FFC107; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

.review-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0; top: -5px;
    font-size: 30px;
    color: var(--primary-light);
    font-weight: 900;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.review-name strong { display: block; font-size: 14px; color: var(--dark); }
.review-name span { font-size: 12px; color: var(--text-light); }

.review-badges {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-badges a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 30px;
    border-radius: 60px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.review-badges a:hover { transform: translateY(-3px); }

/* INSURANCE */
.insurance-section { padding: 60px 5%; background: var(--primary-light); }

.ins-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.ins-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.ins-inner p { color: var(--text-light); margin-bottom: 28px; }

.ins-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.ins-logo {
    background: white;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ins-logo i { color: var(--green); }

/* CONTACT */
.contact-section { padding: 90px 5%; background: white; }

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-left > p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 30px; }

.c-items { display: flex; flex-direction: column; gap: 22px; }
.c-item { display: flex; align-items: flex-start; gap: 16px; }

.c-item-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.c-item-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-item-text a { font-size: 16px; color: var(--primary); text-decoration: none; font-weight: 700; transition: color 0.3s; }
.c-item-text a:hover { color: var(--accent); }
.c-item-text span { font-size: 15px; color: var(--text); }

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.direction-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

.contact-box {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid var(--border);
}

.contact-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-link { text-align: center; margin-top: 15px; font-size: 13px; color: var(--text-light); }
.book-link a { color: var(--primary); font-weight: 700; text-decoration: none; }

/* MAP */
.map-section { height: 420px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* FINAL CTA */
.final-cta {
    background: var(--gradient-primary);
    padding: 80px 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.final-cta p { font-size: 18px; opacity: 0.85; margin-bottom: 35px; position: relative; z-index: 2; }

.final-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-white-solid {
    background: white;
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white-solid:hover { transform: translateY(-3px) scale(1.02); }

.btn-outline-w {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 3px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.btn-outline-w:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-3px); }

.btn-direction {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.btn-direction:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }

/* FOOTER */
.site-footer { background: var(--dark-blue); padding: 60px 5% 30px; color: white; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 15px 0 20px; }

.footer-social { display: flex; gap: 10px; }

.f-social {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.f-social:hover { background: var(--primary); color: white; }

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.f-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-links a::before { content: '›'; font-size: 16px; font-weight: 700; color: var(--primary); }
.f-links a:hover { color: white; padding-left: 5px; }

.footer-emergency {
    background: rgba(229,57,53,0.1);
    border: 1px solid rgba(229,57,53,0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
    text-align: center;
}

.footer-emergency .fe-label {
    font-size: 11px;
    color: #FF8A80;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-emergency a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a { color: #64B5F6; text-decoration: none; }

.footer-logo-img { max-height: 45px; width: auto; margin-bottom: 5px; display: block; }

/* MOBILE BTN */
.mobile-call {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 16px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
    animation: float-btn 2s infinite;
}

@keyframes float-btn {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-left h2 { font-size: 40px; }
    .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .doctor-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { padding: 10px 4%; }
    .logo-text-group h1 { font-size: 16px; }
    .header-cta { display: none; }
    .header-phone { font-size: 18px; }

    .hero {
        flex-direction: column;
        padding: 40px 5%;
        min-height: auto;
        text-align: center;
    }

    .hero-left h2 { font-size: 30px; }
    .hero-checks { grid-template-columns: 1fr; text-align: left; }
    .hero-btns { justify-content: center; }
    .hero-right { width: 100%; min-width: auto; }
    .doctor-line { justify-content: center; }

    .sec-head h2 { font-size: 28px; }
    .srv-grid, .why-inner, .contact-inner, .review-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid, .footer-grid { grid-template-columns: 1fr; }
    .doc-points { grid-template-columns: 1fr; }
    .final-cta h2 { font-size: 28px; }
    .mobile-call { display: flex; }
    .float-card { display: none; }
    .why-content h2, .contact-left h2, .doctor-content h2 { font-size: 28px; }
    body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .hero-left h2 { font-size: 26px; }
    .hero-form { padding: 28px 22px; }
    .btn-call, .btn-book { width: 100%; justify-content: center; }
}
/* ============================================= */
/* HUBSPOT FORM FEEDBACK */
/* ============================================= */
.ed-form-success { text-align: center; padding: 20px 10px; }
.ed-form-success-icon { font-size: 40px; margin-bottom: 10px; }
.ed-form-success h4 { font-size: 20px; margin-bottom: 8px; }
.ed-form-success p { font-size: 14px; color: #555; margin-bottom: 16px; }
.ed-form-error { margin-top: 12px; font-size: 13px; color: #c62828; background: #fdecea; padding: 10px 12px; border-radius: 8px; }
.ed-form-error a { color: #c62828; font-weight: 700; }
