/* Base Styles */
:root {
    --primary: #004d4e;
    --primary-light: #006b6d;
    --accent: #b57727;
    --accent-light: #d49a4a;
    --text-dark: #1a1a19;
    --text-muted: #555;
    --bg-light: #faf7f2;
    --white: #ffffff;
    --border: #e8e2d8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.phone-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.clinic-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.clinic-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.cta-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: var(--accent-light);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 77, 78, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.offer-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.price-badge {
    background: var(--accent);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.offer-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
}

.offer-text p {
    margin: 0;
    font-size: 14px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.cta-btn-large {
    background-color: var(--accent);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s;
}

.cta-btn-large:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Symptoms Section */
.symptoms {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.symptom-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.symptom-item::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.process .section-header h2 {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.step-num {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    opacity: 0.3;
    margin-bottom: 10px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.process-step p {
    font-size: 15px;
    opacity: 0.8;
}

/* Provider Section */
.provider {
    padding: 100px 0;
}

.provider-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.provider-image img {
    border-radius: 12px;
}

.provider-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.provider-title {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.provider-features {
    list-style: none;
    margin-top: 30px;
}

.provider-features li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.provider-features li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.patient-name {
    font-weight: 700;
    color: var(--primary);
}

/* Booking Section */
.booking {
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.booking-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.location-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.location-info h3 {
    margin-bottom: 15px;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    background-color: var(--accent);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: var(--accent-light);
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #1a1a19;
    color: #888;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .provider-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .offer-box {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
