@charset "utf-8";
/* CSS Document - COMBINED STYLESHEET */

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

:root {
    /* Define variables if not already in your other stylesheet */
    --primary: #0284c7;
    --primary-dark: #0c4a6e;
    --primary-light: #7aa5c2;
    --accent: #f0b86e;
    --text-body: #334155;
    --text-light: #64748b;
    --font-head: 'Inter', sans-serif;
    --radius: 8px;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== FRONT PAGE SPECIFIC LAYOUT ===== */

/* Container to center all content - KEEP THIS 100% WIDE */
.frontpage-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Full Width Hero Banner (Spans full width) */
.hero-banner-full {
    width: 100%;
    position: relative;  /* Needed for video positioning */
    background-color: var(--primary-dark); /* Fallback while video loads */
    color: #ffffff;
    padding: 100px 0;
    margin: 0 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;  /* Prevents video from overflowing */
    min-height: 500px; /* Ensures minimum height while video loads */
}

/* Video background */
.hero-banner-full .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Covers entire area without distortion */
    z-index: 0;
    pointer-events: none;  /* Prevents interaction with video */
}
/* INNER CONTAINER - This is what gets the 1180px width */
.frontpage-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Dark overlay to ensure text readability */
.hero-banner-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 74, 110, 0.65); /* Slightly lighter than original for better video visibility */
    z-index: 1;
    pointer-events: none;
}

/* Apply the inner container to hero banner as well */
/* Ensure content stays above video and overlay */
.hero-banner-full .frontpage-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1180px;
    padding: 0 20px;
}

.hero-banner-full h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    font-style: italic;
    color: #ffffff !important;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-banner-subtitle {
    font-family: var(--font-head);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
}

.hero-banner-text {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

 /* Legacy Section */
        .legacy-section { background: #ffffff; padding: 80px 20px; }
        .legacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
        .legacy-img-wrap { position: relative; }
        .legacy-caption { font-size: 0.9rem; color: #64748b; margin-top: 10px; font-style: italic; text-align: center; }

/* Section Container - Each section is FULL WIDTH with colored background */
.content-section-frontpage {
    width: 100%;
    padding: 50px 0;
    margin: 0;
    box-sizing: border-box;
}

/* Section backgrounds */
.content-section-frontpage.section-1 {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.content-section-frontpage.section-1 {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.content-section-frontpage.section-2 {
    background: #f0fdfa;
    border-top: 1px solid #b8d1e6;
    border-bottom: 1px solid #b8d1e6;
}

/* Section inner container - THIS GETS THE 1180px WIDTH */
.section-inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Split Layout (Image Left/Right + Text) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Proper reverse layout */
.split-layout.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-layout.reverse .split-image {
    order: 2;
}

.split-layout.reverse .split-content {
    order: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.image-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Typography */
.content-section-frontpage h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.content-section-frontpage h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 20px 0;
}

.content-section-frontpage p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-body);
}

/* Center Text Block */
.text-center-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}



/* ===== HOW ARE WE DIFFERENT - SECTION STYLES ===== */
.section-eyebrow {
    font-family: var(--font-head);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.text-center-block h2 {
    font-family: var(--font-head);
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-center-block h2 em {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.difference-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.difference-column {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 30px 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.difference-column h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.difference-column h3 i {
    color: var(--primary);
    font-size: 1.4rem;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-body);
    align-items: flex-start;
}

.difference-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.difference-list li strong {
    color: var(--primary-dark);
    font-weight: 500;
}

.difference-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.difference-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(2, 132, 199, 0.35);
    color: white;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(2, 132, 199, 0.35);
    color: white;
}

/* ===== SIMPLE DISCLAIMER ===== */
.simple-disclaimer {
    width: 100%;
    background: transparent;
    margin-top: 60px;
    padding: 0;
}

.disclaimer-minimal {
    background: #0c4a6e;
    border-radius: 6px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #334155;
}

.disclaimer-icon {
    color: #7aa5c2;
    font-size: 1.2rem;
    line-height: 1.5;
    flex-shrink: 0;
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text p {
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 8px 0;
    opacity: 0.8;
}

.disclaimer-link {
    color: #90c0e0;
    font-size: 0.8rem;
    text-decoration: none;
    border-bottom: 1px dotted #3a546d;
    transition: all 0.2s ease;
}

.disclaimer-link:hover {
    color: #b8daf5;
    border-bottom-color: #5d82a1;
}

/* ===== INTERACTIVE TOPIC CARDS ===== */
.interactive-topic-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.interactive-topic-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    border-left-width: 6px;
    border-left-color: var(--primary); /* Default color */
}

/* Specific Hover Colors based on type */
.interactive-topic-card.warning-style:hover {
    border-left-color: #ef4444;
}

.interactive-topic-card.emphasis-style:hover {
    border-left-color: var(--accent);
}

.interactive-topic-card.solution-style:hover {
    border-left-color: #10b981;
}

.interactive-topic-card.light-style:hover {
    border-left-color: #94a3b8;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.card-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.card-text h4 {
    margin: 0 0 8px 0;
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.card-text p {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    margin-top: 0px;
}


.read-more-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.interactive-topic-card:hover .read-more-link {
    opacity: 1;
    color: var(--primary-dark);
}

.read-more-link i {
    margin-left: 6px;
    transition: transform 0.3s;
}

.interactive-topic-card:hover .read-more-link i {
    transform: translateX(4px);
}

/* ===== MOBILE RESPONSIVE (COMBINED) ===== */
@media (max-width: 992px) {
    .difference-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero banner */
    .hero-banner-full {
       padding: 0 16px;
    }
    
    .hero-banner-full h1 { 
        font-size: 2rem; 
    }
    
    .hero-banner-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
    
    .hero-banner-text {
        font-size: 0.95rem;
    }
    
    /* Split layouts */
    .split-layout,
    .split-layout.reverse {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .split-layout.reverse .split-image,
    .split-layout.reverse .split-content {
        order: unset;
    }
    
    /* Section spacing */
    .content-section-frontpage {
        padding: 40px 0;
    }
    
    /* Grids */
    .doctors-grid-wide, 
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Text blocks */
    .text-center-block {
        margin-bottom: 30px;
    }
    
    .text-center-block h2 {
        font-size: 2rem;
    }
    
    /* Doctor cards */
    .doctor-card-wide img {
        width: 150px;
        height: 150px;
    }
    
    /* How we're different */
    .difference-showcase {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .difference-column {
        padding: 25px 20px;
    }
    
    .difference-column h3 {
        font-size: 1.2rem;
    }
    
    /* Disclaimer */
    .simple-disclaimer {
        margin-top: 40px;
    }
    
    .disclaimer-minimal {
        flex-direction: column;
        gap: 10px;
        padding: 18px 20px;
    }
    
    .disclaimer-icon {
        font-size: 1rem;
    }
    
    .disclaimer-text p {
        font-size: 0.8rem;
    }
    
    /* Topic cards - from second stylesheet */
    .card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
	
    .legacy-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
	
    .card-icon {
        margin-bottom: 10px;
    }
	
	.section-inner {
        padding: 0 16px;
    }
	
	.btn-primary, .btn-secondary {
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
        margin-left: 0 !important;
        margin-right: 10px !important;
    }
	
	/* Make buttons stack nicely on mobile */
    .hero-banner-full .btn-primary,
    .hero-banner-full .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
	
	/* Reduce section padding on mobile */
    .content-section-frontpage {
        padding: 30px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-banner-full h1 {
        font-size: 1.8rem;
    }
    
    .hero-banner-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
    
    .hero-banner-text {
        font-size: 0.9rem;
    }
    
    .content-section-frontpage h2 {
        font-size: 1.4rem;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .frontpage-inner,
    .section-inner {
        padding: 0 16px;
    }
}

    .certificate-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 15px;
        justify-items: center;
        align-items: center;
    }
    
    .certificate-grid img {
        height: 80px;
        width: auto;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    
	.certificate-grid img {
    height: 80px;
    width: auto;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	/* Optional: hover effect */
	.certificate-grid img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
    /* Tablet: 4 columns (2 rows) */
    @media (max-width: 768px) {
        .certificate-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .certificate-grid img {
            height: 70px;
        }
    }
    
    /* Mobile: 2 columns (4 rows) */
    @media (max-width: 480px) {
        .certificate-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .certificate-grid img {
            height: 60px;
        }
    }
	/* Year Badge */
.year-badge {
    display: inline-block;
    background: rgba(0,0,0,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.year-badge.present {
    background: rgba(2, 132, 199, 0.15);
    color: #0284c7;
}

/* Takeaway text */
.takeaway {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-style: italic;
}

/* Crisis Banner */
.crisis-banner {
    background: linear-gradient(135deg, #1a2b3c 0%, #2d3f4f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.crisis-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.crisis-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f0b86e;
}

.crisis-banner > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.crisis-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.crisis-stat {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f0b86e;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.0rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .crisis-stats {
        flex-direction: column;
        gap: 25px;
    }
    .crisis-banner h2 {
        font-size: 1.5rem;
    }
}
/* Desktop: 3 columns, no gaps */
@media (min-width: 769px) {
    .wallpaper-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

/* Tablet & Mobile: 2 columns */
@media (max-width: 768px) {
    .wallpaper-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Images maintain aspect ratio */
.legacy-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
	border-radius: 0;
}

@media (max-width: 480px) {
    .legacy-img-wrap img {
        height: 200px;
    }
}	
	
/* Dark card button hover effect */
.dark-card .read-more-btn {
    display: block;
    background: white;
    color: #1e1c1a;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.dark-card .read-more-btn:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}	
	
/* Guide Section - 3 columns desktop, 1 column mobile */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guide-card {
    background: #1e1c1a;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.guide-btn {
    display: block;
    background: white;
    color: #1e1c1a;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.guide-btn:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

/* Mobile: Stack to 1 column */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Tablet: Optional 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}	
