/* ==========================================
   ENHANCED PROFESSIONAL MEDICAL WEBSITE CSS
   ========================================== */

/* CSS Variables for Easy Customization */
:root {
    --primary-color: #1e5a7d;
    --primary-light: #2c7ba0;
    --primary-dark: #164658;
    --secondary-color: #3d92c4;
    --accent-color: #f39c12;
    --accent-hover: #e67e22;
    --dark-color: #2c3e50;
    --darker-color: #1a252f;
    --light-color: #f8f9fa;
    --lighter-color: #ffffff;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --text-lighter: #95a5a6;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: -2px;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--lighter-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.clinic-image {
    width: 100%;
    height: auto;                 /* 🔥 remove fixed height */
    max-height: 420px;            /* keeps layout clean */
    object-fit: contain;          /* 🔥 never cuts head */
    object-position: top center;  /* 🔥 head always visible */
    border-radius: 10px;
    margin-bottom: 12px;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Bar */
.navbar {
    background: var(--lighter-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.logo .subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.nav-container .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    padding: 8px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.cta-nav {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--lighter-color) !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: var(--lighter-color);
    padding: 140px 0 100px;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
/* 
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center bottom;
    background-size: cover;
} */

.hero-content {
    position: relative;
    z-index: 1;
}

/* .hero-text {
    max-width: 700px;
} */

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Minimal styling for the hero expert list (yellow triangle bullets) */
.expert-items {
    list-style: none;
    padding: 0;
    margin: 6px 0 18px 0;
    color: #ffffff;
    display: inline-block;
    text-align: left;
}

.expert-items li {
    position: relative;
    padding-left: 32px;
    margin: 10px 0;
    font-weight: 400;
    font-size: 1.7rem;
    text-transform: uppercase;
}
.expert-items li::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 60%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--accent-color);
    flex-shrink: 0;
}
.expert-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.expert-link:hover {
    color: black;
}
.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--lighter-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--lighter-color);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--lighter-color);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--light-color);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--lighter-color);
    padding: 40px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.375rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.learn-more:hover {
    color: var(--accent-hover);
}

/* Section Title */
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.75rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
    color: var(--lighter-color);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section,
.about-preview {
    padding: 100px 0;
    background: var(--lighter-color);
}

.about-content,
.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image .placeholder-image,
.about-preview-image .placeholder-image {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter-color);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-image .placeholder-image::before,
.about-preview-image .placeholder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.about-text h2,
.about-preview-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 500;
}

.about-text p,
.about-preview-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.credentials {
    background: var(--light-color);
    padding: 32px;
    border-radius: var(--border-radius-md);
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.credentials h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.375rem;
    font-weight: 700;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.credentials ul li:last-child {
    border-bottom: none;
}

.credentials ul li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.philosophy {
    border-left: 4px solid var(--accent-color);
    padding-left: 28px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 32px;
    font-size: 1.125rem;
    line-height: 1.8;
    background: var(--light-color);
    padding: 24px 24px 24px 28px;
    border-radius: var(--border-radius-sm);
}

/* Feature Boxes */
.why-choose {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-box {
    background: var(--lighter-color);
    padding: 36px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--lighter-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background: var(--lighter-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.approach-item {
    background: var(--light-color);
    padding: 36px 28px;
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--primary-color);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.approach-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.375rem;
    font-weight: 700;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section,
.testimonials-preview {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--lighter-color);
    padding: 36px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.patient-name {
    color: var(--primary-color);
    font-weight: 700;
    text-align: right;
    margin-bottom: 4px;
}

.patient-condition {
    color: var(--text-light);
    font-size: 0.9375rem;
    font-style: italic;
    text-align: right;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
    color: var(--lighter-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: var(--lighter-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3,
.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 28px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-color);
}

.info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: 700;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-note {
    font-size: 0.875rem;
    color: var(--text-lighter);
    margin-top: 6px;
    font-style: italic;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--lighter-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 90, 125, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--lighter-color);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--lighter-color);
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--lighter-color);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* ==========================================
   OBESITY CLINIC CARDS
   ========================================== */

.obesity-card {
    background: var(--lighter-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.obesity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.obesity-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.obesity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.obesity-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.obesity-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--lighter-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.obesity-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 700;
}

.obesity-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.obesity-features {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
    flex: 1;
}

.obesity-features li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
}

.obesity-features li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.obesity-cta {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    margin-top: auto;
}

.obesity-cta:hover {
    color: var(--accent-hover);
}

/* Font family and default sizes */
.hero-expert {
    font-family: 'Verdana', sans-serif; /* Simple and clean font */
    /* line-height: 1.4; */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white; /* Dark and easy on eyes */
}

.hero-expert .expert-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-expert .expert-item {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
}

/* Responsive adjustments */

/* Tablets */
@media (max-width: 1024px) {
    .hero-expert .expert-title {
        font-size: 34px;
    }
    .hero-expert .expert-item {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-expert .expert-title {
        font-size: 20px;
    }
    .hero-expert .expert-item {
        font-size: 16px;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--lighter-color);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: 32px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
    }

    .about-content,
    .about-preview-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
        min-height: 550px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-cards,
    .treatments-grid,
    .conditions-grid,
    .blog-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form {
        padding: 28px;
    }

    .obesity-image {
        height: 200px;
    }

    .obesity-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo h2 {
        font-size: 1.375rem;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.875rem;
    }

    .about-section,
    .about-preview {
        padding: 60px 0;
    }

    .approach-section,
    .testimonials-section,
    .why-choose,
    .contact-section {
        padding: 60px 0;
    }
}

/* Additional Professional Styles */

/* Timeline */
.journey-section {
    padding: 100px 0;
    background: var(--light-color);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 120px;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: right;
}

.timeline-year::after {
    content: '';
    position: absolute;
    left: 120px;
    top: 10px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--lighter-color);
    box-shadow: 0 0 0 4px var(--light-color);
}

.timeline-content {
    flex: 1;
    background: var(--lighter-color);
    padding: 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Treatments & Services */
.treatments-section,
.prolotherapy-section {
    padding: 100px 0;
    background: var(--lighter-color);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.treatment-card {
    background: var(--lighter-color);
    padding: 36px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.treatment-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.375rem;
    font-weight: 700;
}

.treatment-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Detailed Treatment Pages */
.detailed-treatment {
    padding: 80px 0;
    background: var(--lighter-color);
}

.detailed-treatment.alt-bg {
    background: var(--light-color);
}

.detailed-treatment h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 32px;
    font-weight: 800;
}

.treatment-detail h3 {
    color: var(--primary-color);
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 1.625rem;
    font-weight: 700;
}

.treatment-detail p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.treatment-detail ul {
    margin-bottom: 28px;
    padding-left: 28px;
}

.treatment-detail li {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--text-color);
}

.success-story {
    background: var(--light-color);
    padding: 28px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--success-color);
    margin-top: 32px;
    box-shadow: var(--shadow-sm);
}

.success-story h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.success-story p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

.injury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.injury-item {
    background: var(--light-color);
    padding: 28px;
    border-radius: var(--border-radius-md);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.injury-item h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.injury-item ul {
    list-style: none;
    padding-left: 0;
}

.injury-item li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.injury-item li:last-child {
    border-bottom: none;
}

/* Prolotherapy Section */
.prolo-content {
    max-width: 960px;
    margin: 0 auto;
}

.prolo-main h3 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.875rem;
    font-weight: 700;
}

.prolo-main p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.prolo-steps {
    background: var(--light-color);
    padding: 32px 32px 32px 56px;
    border-radius: var(--border-radius-md);
    margin: 28px 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.prolo-steps li {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-color);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Conditions Section */
.conditions-section {
    padding: 100px 0;
    background: var(--lighter-color);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.condition-category {
    background: var(--light-color);
    padding: 36px 28px;
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.condition-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.condition-category h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.375rem;
    font-weight: 700;
}

.condition-category ul {
    list-style: none;
    padding-left: 0;
}

.condition-category li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.condition-category li:hover {
    color: var(--primary-color);
}

.condition-category li:last-child {
    border-bottom: none;
}

/* Condition Details */
.condition-details {
    padding: 80px 0;
    background: var(--light-color);
}

.condition-detail-box {
    background: var(--lighter-color);
    padding: 32px;
    margin-bottom: 28px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.condition-detail-box h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.condition-detail-box p {
    color: var(--text-color);
    line-height: 1.8;
}

/* When to Seek Section */
.when-to-seek {
    padding: 100px 0;
    background: var(--lighter-color);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.symptom-box {
    background: var(--light-color);
    padding: 28px;
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.symptom-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.symptom-box h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 700;
}

.symptom-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.stat-box {
    background: var(--lighter-color);
    padding: 48px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 600;
}

/* Video Testimonials */
.video-testimonials {
    padding: 100px 0;
    background: var(--lighter-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.video-placeholder {
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 80px 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.video-placeholder:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--lighter-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder p {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--lighter-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.blog-card {
    background: var(--lighter-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-image .placeholder-blog-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.blog-content {
    padding: 28px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--lighter-color);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-meta {
    color: var(--text-lighter);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    color: var(--accent-hover);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--lighter-color);
    padding: 80px 0;
}

.newsletter-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.newsletter-content p {
    margin-bottom: 32px;
    opacity: 0.95;
    font-size: 1.125rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.newsletter-form button {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.map-placeholder:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    text-align: center;
    color: var(--lighter-color);
}

.map-overlay h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.map-note {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-top: 12px;
}

.directions-info {
    background: var(--lighter-color);
    padding: 36px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.directions-info h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.5rem;
}

.directions-info p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* FAQ Section */
.faq-section,
.education-section {
    padding: 100px 0;
    background: var(--lighter-color);
}

.faq-content {
    max-width: 960px;
    margin: 0 auto;
}

.faq-content h3 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
}

.faq-box,
.faq-item {
    background: var(--light-color);
    padding: 28px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-box:hover,
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-box h4,
.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 14px;
    font-size: 1.125rem;
    font-weight: 700;
}

.faq-box p,
.faq-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Policy Sections */
.policy-section {
    padding: 100px 0;
    background: var(--light-color);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 2.75rem;
    margin-bottom: 32px;
    font-weight: 800;
}

.policy-content {
    max-width: 960px;
    margin: 0 auto;
    background: var(--lighter-color);
    padding: 48px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 1.625rem;
    font-weight: 700;
}

.policy-content h4 {
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-color);
}

.policy-content ul {
    margin: 16px 0 16px 28px;
}

.policy-content ul li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-color);
}

.policy-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.policy-footer p {
    color: var(--text-light);
    font-size: 1.0625rem;
    font-style: italic;
}

/* Text utilities */
.text-center {
    text-align: center;
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Clinic Section */
.clinic-section {
    padding: 100px 0;
    background: var(--light-color);
}

.clinic-content {
    max-width: 960px;
    margin: 0 auto;
}

.clinic-text h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
}

.clinic-text p {
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-color);
}

.clinic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.feature {
    background: var(--lighter-color);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 700;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
        font-size: 1.25rem;
    }

    .timeline-year::after {
        left: 60px;
    }

    .timeline-item {
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   COMPLETE MOBILE-OPTIMIZED CSS
   ========================================== */

:root {
    --primary-color: #1e5a7d;
    --primary-light: #2c7ba0;
    --primary-dark: #164658;
    --secondary-color: #3d92c4;
    --accent-color: #f39c12;
    --accent-hover: #e67e22;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --lighter-color: #ffffff;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --text-lighter: #95a5a6;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition-base: 0.3s ease;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--lighter-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background: var(--lighter-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo .subtitle {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 2px 0 0 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-base);
    display: block;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.cta-nav {
    background: var(--accent-color);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    transition: background var(--transition-base);
    display: inline-block;
    text-decoration: none;
}

.cta-nav:hover {
    background: var(--accent-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-base);
    display: block;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 24px 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    padding-right: 204px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   SECTIONS - COMMON STYLING
   ========================================== */

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-overview {
    padding: 60px 24px;
    background: var(--light-color);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    padding: 60px 24px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image .placeholder-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ==========================================
   TIMELINE/JOURNEY SECTION
   ========================================== */

.journey-section {
    padding: 60px 24px;
    background: var(--light-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.timeline-year::after {
    content: '';
    position: absolute;
    left: 80px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 60px 24px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 700;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 24px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ==========================================
   TABLET VIEW (768px and below)
   ========================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 56px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
        padding: 0;
    }

    .nav-menu li a {
        padding: 10px 20px;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 50px 16px 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    /* Sections */
    .services-overview {
        padding: 50px 16px;
    }

    .about-section {
        padding: 50px 16px;
    }

    .journey-section {
        padding: 50px 16px;
    }

    .contact-section {
        padding: 50px 16px;
    }

    .footer {
        padding: 30px 16px 15px;
    }

    /* About Content */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image .placeholder-image {
        height: 250px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h3,
    .contact-form-container h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 20px 16px;
    }

    /* Timeline */
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-year {
        width: 40px;
        font-size: 1rem;
    }

    .timeline-year::after {
        left: 40px;
    }

    .timeline-content {
        padding: 15px;
    }

    /* Service Cards */
    .service-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   MOBILE VIEW (480px and below)
   ========================================== */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo h2 {
        font-size: 1.1rem;
    }

    .logo .subtitle {
        font-size: 0.65rem;
    }

    /* Hero Section */
    .hero {
        padding: 40px 12px 30px;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Sections Padding */
    .services-overview {
        padding: 40px 12px;
    }

    .about-section {
        padding: 40px 12px;
    }

    .journey-section {
        padding: 40px 12px;
    }

    .contact-section {
        padding: 40px 12px;
    }

    .footer {
        padding: 25px 12px 12px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .section-intro {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image .placeholder-image {
        height: 200px;
        font-size: 1rem;
    }

    .about-text h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    /* Service Cards */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 15px 12px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-card .icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info h3,
    .contact-form-container h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .contact-form {
        padding: 15px 12px;
    }

    .info-item {
        padding: 12px;
        margin-bottom: 15px;
    }

    .info-item strong {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .info-item p {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Timeline */
    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        width: 30px;
        font-size: 0.9rem;
        text-align: right;
    }

    .timeline-year::after {
        left: 30px;
        width: 12px;
        height: 12px;
        top: 6px;
    }

    .timeline-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .timeline-content {
        padding: 12px;
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 15px;
    }
}

/* ==========================================
   EXTRA SMALL (375px and below)
   ========================================== */

@media (max-width: 375px) {
    .logo h2 {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 12px 10px;
    }

    .about-text h2 {
        font-size: 1.1rem;
    }
    
}