:root {
    --primary: #0077b6;
    --accent: #ffb703;
    --secondary: #023e8a;
    --dark: #121212;
    --light: #f8f9fa;
    --gray: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: white; color: var(--dark); line-height: 1.6; }

/* --- Navigation --- */
nav { 
    background: #1a1a1a; 
    padding: 1.5rem 10%; 
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    position: -webkit-sticky; position: sticky; 
    top: 0; 
    z-index: 1000; 
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
}

.logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    margin-right: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img { 
    width: 300px; 
    height: auto; 
    max-height: 100px; 
    display: block; 
    object-fit: contain;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* --- Hero --- */
.hero { padding: 8rem 5%; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1605152276897-4f618f831968?auto=format\&fit=crop\&q=80\&w=2000'); background-size: cover; background-position: center; color: white; text-align: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; }
.hero span { color: var(--accent); }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 2rem; color: #ddd; }

/* --- Global --- */
.section { padding: 5rem 10%; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.btn { display: inline-block; padding: 1rem 2rem; background: var(--primary); color: white; text-decoration: none; font-weight: bold; border-radius: 4px; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { background: var(--secondary); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--dark); }

/* --- Cards --- */
.card { padding: 2.5rem; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--primary); }
.card h3 { margin-bottom: 1rem; color: var(--secondary); }

/* --- Dedication Box --- */
.dedication-box {
    border-left: 10px solid var(--primary);
    background: #f0f7ff;
    padding: 3rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.dedication-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}
.dedication-image {
    width: 280px !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.dedication-text {
    flex: 1;
    min-width: 300px;
}

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 30px auto; text-align: left; }
.faq-item { background-color: #ffffff; border: 1px solid #dddddd; margin-bottom: 12px; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; }
.faq-question { padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: #023e8a !important; background-color: #f9f9f9; font-size: 1.1rem; }
.faq-question:after { content: '+'; font-size: 1.5rem; color: #0077b6; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
.faq-answer p { padding: 1rem 1.5rem 1.5rem; color: #333333 !important; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question:after { transform: rotate(45deg); }

/* --- Footer --- */
footer { background: #111; color: #888; padding: 4rem 10%; border-top: 5px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #222; text-align: center; font-size: 0.8rem; }

/* --- Mobile Menu --- */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.menu-toggle span { width: 25px; height: 3px; background-color: white; border-radius: 2px; }

/* --- CTA Buttons --- */
.cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* --- RESPONSIVE OVERRIDES (MOBILE) --- */
@media (max-width: 768px) {
    nav { 
        padding: 1rem 5%; 
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    nav.scrolled {
        padding: 0.5rem 5% !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
    .logo {
        margin: 0 0 1rem 0;
    }
    nav.scrolled .logo {
        margin: 0 !important;
    }
    .logo img { 
        width: 300px !important; 
        max-width: 100% !important;
        max-height: none !important; 
    }
    nav.scrolled .logo img {
        width: 100px !important;
    }
    .menu-toggle { 
        display: flex; 
        position: absolute;
        right: 5%;
        top: 2rem;
        transition: all 0.4s ease;
    }
    nav.scrolled .menu-toggle {
        position: static !important;
        top: auto !important;
        right: auto !important;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid #333;
    }
    .nav-links.active { display: flex; }
    
    .section { padding: 3rem 5%; }
    .grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }

    .dedication-box { padding: 1.5rem; }
    
    .cta-btns {
        flex-direction: column;
        gap: 20px;
    }
    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }
}

/* Sticky Mobile Call Button */
.sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0077b6;
    color: white;
    text-align: center;
    padding: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    z-index: 9999;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .sticky-call-btn { display: block; }
    body { padding-bottom: 60px; }
}
