/* style.css - STRIPE COMPLIANT VERSION (No Aggressive Calls) */

:root {
    --primary-blue: #0066CC;
    --dark-blue: #0d1f38;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-color: #334155;
    --border-color: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
body { background-color: var(--white); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }

/* --- Top Bar (Consultancy Look) --- */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: center; /* Center the text */
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px; /* More spacing for elegance */
    height: 40px;
    position: relative;
    z-index: 1002;
    text-transform: uppercase;
}

/* --- Header & Nav --- */
header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1280px;
    margin: 0 auto;
}
.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-color); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary-blue); }
.cta-btn { background: var(--primary-blue); color: white !important; padding: 10px 24px; border-radius: 6px; font-weight: 600; transition: transform 0.2s; box-shadow: 0 4px 10px rgba(0,102,204,0.2); }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,102,204,0.3); }

.hamburger { display: none; cursor: pointer; z-index: 1003; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--dark-blue); transition: 0.3s; border-radius: 2px; }

/* --- Hero Section --- */
.hero { padding: 5rem 5%; max-width: 1280px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 3rem; line-height: 1.2; color: var(--dark-blue); margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.hero p { font-size: 1.2rem; color: #475569; margin: 0 auto 2rem auto; max-width: 750px; }
.hero-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-hero-primary, .btn-hero-secondary {
    background-color: var(--primary-blue); color: white; padding: 16px 32px; border-radius: 8px; text-decoration: none; font-weight: 700; display: inline-block; min-width: 220px; box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2); transition: transform 0.2s; font-size: 1rem;
}
.btn-hero-secondary { background-color: var(--dark-blue); box-shadow: 0 4px 12px rgba(13, 31, 56, 0.2); }
.btn-hero-primary:hover, .btn-hero-secondary:hover { transform: translateY(-3px); }

/* Privacy Badge */
.privacy-badge {
    background-color: #ffffff; 
    border: 1px solid #cbd5e1; 
    padding: 12px 25px; 
    border-radius: 50px;
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--dark-blue); 
    font-weight: 600; 
    font-size: 0.9rem; 
    margin-bottom: 3.5rem; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.hero-image-container { max-width: 900px; margin: 0 auto 3rem auto; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid #f1f5f9; }

/* --- Feature Strip --- */
.feature-strip {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 2rem; padding: 2rem; background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0;
}
.feature-item { 
    display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--dark-blue); font-size: 1.05rem; white-space: nowrap;
}
.feature-item svg { flex-shrink: 0; }

/* --- PREMIUM CARDS --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.premium-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex; flex-direction: column; height: 100%;
}
.premium-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary-blue); }
.premium-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--primary-blue); }

.card-icon-box { width: 60px; height: 60px; background: #f0f9ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--primary-blue); }
.card-title { font-size: 1.4rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 0.8rem; }
.card-text { color: #475569; font-size: 1rem; line-height: 1.6; }

/* --- Pricing Specifics --- */
.pricing-header { text-align: center; padding: 4rem 5% 2rem 5%; }
.price-tag { font-size: 3rem; font-weight: 800; color: var(--dark-blue); margin: 15px 0; }
.price-period { font-size: 0.95rem; color: #64748b; font-weight: 500; display: block; margin-bottom: 20px; }
.features-list li { padding: 12px 0; border-bottom: 1px solid #f1f5f9; display: flex; gap: 12px; color: #334155; font-size: 1rem; align-items: center; }
.check { color: var(--primary-blue); font-weight: 900; font-size: 1.2rem; }
.btn-plan { width: 100%; padding: 16px; border-radius: 8px; font-weight: 700; text-decoration: none; margin-top: auto; display: inline-block; border: 2px solid var(--primary-blue); color: var(--primary-blue); text-align: center; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.btn-plan:hover { background: var(--primary-blue); color: white; }
.btn-plan.solid { background: var(--primary-blue); color: white; }
.badge { position: absolute; top: 0; right: 0; background: var(--primary-blue); color: white; padding: 6px 15px; border-bottom-left-radius: 12px; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; }

/* --- Director Bio Card --- */
.bio-container { max-width: 1000px; margin: 4rem auto; padding: 0 5%; }
.bio-card { background: white; border: 1px solid #e2e8f0; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); overflow: hidden; display: flex; }
.bio-image-wrapper { flex: 1; background: #f8fafc; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.bio-img-real { width: 100%; height: 100%; object-fit: cover; }
.bio-content-wrapper { flex: 1.4; padding: 4rem; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.quote-box { border-left: 4px solid var(--primary-blue); padding: 20px 25px; margin: 25px 0; font-style: italic; color: #334155; background: #f8fafc; border-radius: 0 8px 8px 0; font-size: 1.1rem; line-height: 1.6; }

/* --- Director Section (Home) --- */
.director-section {
    background: white; border: 1px solid #e2e8f0; border-radius: 20px; padding: 4rem; text-align: center; max-width: 900px; margin: 5rem auto; box-shadow: 0 10px 40px rgba(0,0,0,0.06); position: relative; overflow: hidden;
}
.director-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--primary-blue); }
.director-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid #f0f9ff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-bottom: 20px; }

/* --- Guides Page Styles --- */
.resource-hero { background-color: var(--dark-blue); color: white; padding: 5rem 5%; text-align: center; }
.resource-hero p { color: #cbd5e1 !important; font-size: 1.2rem; margin-top: 10px; opacity: 1; font-weight: 400; max-width: 700px; margin: 0 auto; }

.protocol-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; position: relative; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.02); height: 100%; }
.protocol-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary-blue); }
.protocol-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--primary-blue); }
.protocol-card.urgent::before { background: #ef4444; }

.card-padding { padding: 2rem; }
.issue-title { font-size: 1.3rem; color: var(--dark-blue); margin-bottom: 1rem; font-weight: 800; line-height: 1.3; }
.guide-badge { display: inline-block; background: #e0f2fe; color: #0284c7; font-size: 0.75rem; padding: 5px 12px; border-radius: 6px; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; }

.steps-box { background: #f8fafc; border-radius: 8px; padding: 20px; margin-top: 20px; font-size: 0.95rem; border-left: 4px solid var(--primary-blue); }
.step-row { display: flex; gap: 15px; margin-bottom: 12px; align-items: flex-start; }
.step-num { background: var(--primary-blue); color: white; width: 24px; height: 24px; border-radius: 50%; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-weight: bold; }
.step-text { color: #334155; font-weight: 500; line-height: 1.5; }

/* General */
.section { padding: 5rem 5%; max-width: 1280px; margin: 0 auto; }

/* Footer */
footer { background: var(--dark-blue); color: #cbd5e1; padding: 5rem 5% 2rem 5%; margin-top: auto; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; max-width: 1280px; margin: 0 auto; }
.footer-col h4 { color: white; margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-col ul li { list-style: none; margin-bottom: 10px; }
.footer-col a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: white; text-decoration: underline; }
.footer-phone { font-size: 1.4rem; font-weight: 700; color: white; margin: 15px 0; display: block; text-decoration: none; }

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { 
        position: fixed; top: 0; right: 0; height: 100vh; width: 80%; background-color: var(--white); 
        flex-direction: column; padding: 80px 40px; box-shadow: -10px 0 40px rgba(0,0,0,0.2); 
        z-index: 999; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .nav-links.active { transform: translateX(0%); }
    .nav-links a { font-size: 1.2rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; width: 100%; margin: 10px 0; }
    
    .hero h1 { font-size: 2.2rem; }
    
    /* Center Ticks on Mobile */
    .feature-strip { flex-direction: column; align-items: flex-start; gap: 15px; padding: 1.5rem; margin: 2rem auto; width: fit-content; }
    .feature-item { width: auto; justify-content: flex-start; white-space: normal; }
    
    .bio-card { flex-direction: column; margin: 0 15px; }
    .bio-image-wrapper { height: 350px; }
    .bio-content-wrapper { padding: 2rem; }
    .director-section { margin: 3rem 15px; padding: 2.5rem 1.5rem; }
}