/* --- VARIABLES & RESET --- */
:root {
    --primary: #0056b3;        /* Deep Blue */
    --accent: #3da9fc;         /* Bright Sky Blue */
    --dark: #094067;           /* Navy Text */
    --gray: #5f6c7b;           /* Body Text */
    --light: #f2f7fc;          /* Light Background */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

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

/* --- NAVIGATION --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo img {
    height: 40px; /* Adjusts your logo image size */
    width: auto;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover { color: var(--primary); }

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.25);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.35);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text-box {
    flex: 1;
    max-width: 600px;
}

.hero-image-box {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tagline {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero .highlight { color: var(--primary); }

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--primary);
}

.btn-secondary:hover { background: var(--light); }

/* --- SECTIONS (General) --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    background: #dbeafe;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }

/* --- PHILOSOPHY / FEATURES --- */
.philosophy { padding: 100px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- SERVICES --- */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover { transform: translateY(-5px); }
.service-card h3 { margin-bottom: 12px; color: var(--primary); }

/* --- INSURANCE SECTION --- */
.insurance { padding: 100px 0; }

.insurance-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.insurance-text { flex: 1; min-width: 300px; }
.insurance-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.insurance-text p { margin-bottom: 20px; font-size: 1.1rem; }

.insurance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.insurance-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.insurance-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.doc-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid var(--primary);
}

.doc-card span {
    background: #def7ec;
    color: #03543f;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

/* --- ABOUT PREVIEW SECTION --- */
.about {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.about-box {
    max-width: 1000px; /* Increased from 800px to allow the text to stretch out */
    margin: 0 auto;
    text-align: center;
}

.about h2 { 
    color: var(--white); 
    font-size: 2.4rem; /* Adjusted slightly so it perfectly fits one line on standard screens */
    margin-bottom: 24px; 
}
.about p { font-size: 1.1rem; margin-bottom: 20px; opacity: 0.9; }

.quote {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: var(--accent);
    margin: 40px 0;
}

.founder-sig { margin-top: 30px; }
.founder-sig strong { display: block; font-size: 1.2rem; }
.founder-sig span { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- CONTACT SECTION --- */
.contact { padding: 100px 0; }

.contact-box {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: var(--primary);
    color: var(--white);
    min-width: 300px;
}

.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info p { margin-bottom: 40px; opacity: 0.9; }

.info-item { margin-bottom: 24px; }
.info-item strong { display: block; font-size: 0.9rem; opacity: 0.8; margin-bottom: 4px; }
.info-item p { margin: 0; font-size: 1.1rem; font-weight: 600; }

.contact-form {
    flex: 1.5;
    background: var(--white);
    padding: 60px;
    min-width: 300px;
}

.contact-form h3 { margin-bottom: 24px; font-size: 1.5rem; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: var(--dark); }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
    background: #f9fafb;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover { background: #000; }

/* --- SITE FOOTER --- */

.site-footer {
    background: var(--dark); 
    color: var(--white);
    padding: 35px 0 0 0; /* Reduced from 70px to pull the top up */
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* Reduced from 50px */
    padding-bottom: 30px; /* Reduced from 60px to pull the bottom up */
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 400; 
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px; /* Reduced from 30px */
}

.btn-footer {
    background: var(--white);
    color: var(--primary);
    padding: 10px 24px; /* Slightly slimmer button */
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-footer:hover {
    background: var(--dark);
    color: var(--white);
}

.footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced from 25px to squeeze the phone/email/hours together */
}

.contact-block strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-block p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.5;
}

.contact-block a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.contact-block a:hover {
    opacity: 0.7;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15); /* Subtle dark bar for copyright */
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- MOBILE MENU ICON --- */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
    user-select: none;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Show the hamburger icon */
    .hamburger { display: block; }

    /* Hide the normal nav links and style them as a dropdown */
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px; /* Sits right below the navbar */
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        text-align: center;
        gap: 20px;
    }

    /* This class is added by the script when you tap the hamburger */
    .nav-links.active {
        display: flex; 
    }

    /* Keep all other mobile adjustments */
    .nav-container { flex-wrap: wrap; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .insurance-layout { flex-direction: column; }
    .contact-box { flex-direction: column; }
    .contact-info, .contact-form { padding: 40px 20px; }
    .footer-container { flex-direction: column; gap: 40px; }
}

/* --- BLOG --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-card:hover { transform: translateY(-5px); }

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-content { padding: 28px; }

.blog-date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a { color: var(--dark); }
.blog-content h3 a:hover { color: var(--primary); }

.blog-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.read-more:hover { text-decoration: underline; }