/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

:root {
    /* BRAND COLORS */
    --brand-blue: #004d80;       
    --brand-green: #7ab800;      
    --text-dark: #1a1a1a;
    --bg-grey: #f8f9fa;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: white; color: var(--text-dark);
    font-family: var(--font-body); line-height: 1.6; 
    overflow-x: hidden; min-height: 100vh;
    display: flex; flex-direction: column; padding-bottom: 0;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(122, 184, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(122, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(122, 184, 0, 0); }
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0) rotate(90deg); }
    50% { transform: translateY(10px) rotate(90deg); }
}

/* TOP BAR */
.top-bar { background-color: var(--brand-blue); color: white; padding: 0.8rem 5%; display: flex; justify-content: space-between; font-weight: 500; font-size: 0.9rem; border-bottom: 4px solid var(--brand-green); }

/* NAVBAR */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    position: sticky; top: 0; z-index: 1000; 
}
.logo-img { height: 160px; width: auto; display: block; transition: 0.3s; }

.nav-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;}
.nav-links a { 
    font-family: var(--font-head); font-weight: 500; color: var(--brand-blue);
    text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.5px; position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: ''; display: block; width: 0; height: 3px;
    background: var(--brand-green); transition: width 0.3s ease;
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-green); }
.hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--brand-blue); }

.cta-btn {
    background: linear-gradient(135deg, var(--brand-green), #5a8f00); 
    color: white; padding: 0.9rem 1.5rem; font-family: var(--font-head); font-weight: bold; 
    border-radius: 4px; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(122, 184, 0, 0.4);
    transition: all 0.3s ease; white-space: nowrap;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(122, 184, 0, 0.6); }

/* HERO & HEADERS */
.hero {
    background-color: var(--brand-blue);
    color: white; padding: 10rem 5% 8rem; text-align: center; border-bottom: 8px solid var(--brand-green);
    overflow: hidden;
}
.hero h1 { font-family: var(--font-head); font-size: 5rem; line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; position: relative; z-index: 2; }
.hero p { font-size: 1.4rem; margin-bottom: 3rem; max-width: 800px; margin: 0 auto; color: #f0f0f0; position: relative; z-index: 2;}
.hero .reveal { position: relative; z-index: 2; }

.btn-bolt {
    background: var(--brand-green); color: white; padding: 1.2rem 3rem;
    font-family: var(--font-head); font-weight: bold; font-size: 1.3rem;
    border-radius: 4px; display: inline-block; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-bolt:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(122, 184, 0, 0.6); }

.page-header {
    background-color: var(--brand-blue);
    color: white; padding: 8rem 5% 6rem; text-align: center; border-bottom: 5px solid var(--brand-green);
    overflow: hidden;
}
.page-header.tighter-header { padding: 4rem 5% 3rem; }
.page-header h1, .page-header p { position: relative; z-index: 2; }

/* SECTIONS */
.container { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.container.tighter-container { padding: 3rem 2rem; }
.bg-grey { background-color: var(--bg-grey); border-top: 1px solid #e1e1e1; border-bottom: 1px solid #e1e1e1; }
.section-title { font-family: var(--font-head); font-size: 3.5rem; color: var(--brand-blue); text-align: center; margin-bottom: 1rem; text-transform: uppercase; }
.title-bar { width: 100px; height: 6px; background: var(--brand-green); margin: 0 auto 5rem auto; }
.tighter-container .title-bar { margin: 0 auto 3rem auto; }
.grid-3 { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; }

/* GRID 4 FOR REDESIGNED FOOTER */
.grid-4 { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }

/* SERVICE CARDS & CTA */
.service-card {
    background: white; padding: 2.5rem; border-radius: 8px; flex: 1 1 300px; max-width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 5px solid var(--brand-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.service-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.service-card i { font-size: 3rem; color: var(--brand-green); margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 1rem; color: var(--brand-blue); }

.service-cta-banner {
    background: linear-gradient(135deg, var(--brand-blue), #003355); color: white;
    padding: 3rem; border-radius: 8px; text-align: center; margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-left: 6px solid var(--brand-green);
}

/* ABOUT SPLIT SECTION */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-image-placeholder { background-color: #e0e0e0; width: 100%; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* MEMBERSHIP PRICING CARD */
.membership-card {
    background: white; border-radius: 12px; max-width: 800px; margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-top: 8px solid var(--brand-green);
    overflow: hidden; text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.membership-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.membership-header { background: var(--brand-blue); color: white; padding: 3rem; text-align: center; position: relative; }

.membership-badge { 
    background: var(--brand-green); color: white; display: inline-block;
    padding: 6px 18px; border-radius: 20px; font-family: var(--font-head); 
    font-weight: bold; font-size: 0.9rem; text-transform: uppercase; 
    margin-bottom: 1rem; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.membership-header h2 { font-family: var(--font-head); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.membership-price { font-size: 3.5rem; font-weight: bold; color: var(--brand-green); font-family: var(--font-head); transition: transform 0.3s ease; }
.membership-card:hover .membership-price { transform: scale(1.05); } 
.membership-price span { font-size: 1.2rem; color: #ccc; font-weight: normal; font-family: var(--font-body); }
.membership-body { padding: 3rem; }
.membership-features { margin-bottom: 2.5rem; }
.membership-features li { margin-bottom: 1rem; font-size: 1.1rem; display: flex; align-items: flex-start; gap: 10px; }
.membership-features i { color: var(--brand-green); font-size: 1.2rem; margin-top: 4px; }
.membership-disclaimer { background: var(--bg-grey); padding: 1.5rem; border-radius: 6px; font-size: 1rem; color: #555; border-left: 4px solid var(--brand-blue); }

/* PROCESS TIMELINE */
.process-timeline { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 4rem; flex-wrap: nowrap; }
.process-step { text-align: center; flex: 1; padding: 0 10px; transition: transform 0.3s ease; } 
.process-step:hover { transform: scale(1.15); } 
.process-step i { font-size: 2.5rem; color: var(--brand-green); margin-bottom: 1rem; }
.process-step h4 { font-family: var(--font-head); font-size: 1.3rem; color: var(--brand-blue); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: #555; }
.process-arrow { display: flex; align-items: center; justify-content: center; padding-top: 1.5rem; font-size: 2rem; color: var(--brand-blue); animation: bounceRight 2s infinite; }

/* CONTACT FORM */
.contact-form-container { background: white; padding: 3rem; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-top: 6px solid var(--brand-green); }
.form-label { font-weight: bold; display: block; margin-bottom: 0.5rem; color: var(--brand-blue); font-size: 1rem; }
input, textarea, select { width: 100%; padding: 1rem; margin-bottom: 1.5rem; border: 2px solid #ccc; border-radius: 6px; background: #fff; font-size: 16px; font-family: var(--font-body); color: #333; }
input:focus, textarea:focus, select:focus { border-color: var(--brand-green); outline: none; box-shadow: 0 0 0 4px rgba(122, 184, 0, 0.1); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; height: 300px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 77, 128, 0.8); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.click-text { color: white; font-weight: bold; margin-top: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* MULTI-IMAGE MODAL */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.modal-content { background-color: #fefefe; margin: 5% auto; padding: 0; border: 1px solid #888; width: 90%; max-width: 800px; border-radius: 10px; overflow: hidden; position: relative; animation: reveal 0.4s; }
.modal-header { padding: 20px; background: var(--brand-blue); color: white; display: flex; justify-content: space-between; align-items: center; }
.modal-body { padding: 30px; text-align: center; position: relative; }
.close { color: white; font-size: 28px; font-weight: bold; cursor: pointer; }

/* Arrows & Images */
.modal-img { width: 100%; max-height: 50vh; object-fit: contain; border-radius: 5px; margin-bottom: 20px; }
.nav-arrow { 
    position: absolute; top: 40%; transform: translateY(-50%);
    font-size: 1.5rem; color: var(--brand-blue); background: white;
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); cursor: pointer; transition: 0.3s; z-index: 10;
}
.nav-arrow:hover { background: var(--brand-green); color: white; }
.prev-arrow { left: 15px; }
.next-arrow { right: 15px; }

/* BRANDS & TRUST */
.trust-strip { background: #111; color: white; padding: 2rem 5%; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; text-align: center; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-badge i { color: var(--brand-green); font-size: 2rem; }

/* FOOTER - FIXED LAYOUT */
footer { background: #0f1214; color: white; padding: 5rem 5% 2rem; border-top: 6px solid var(--brand-green); margin-top: auto; padding-bottom: 90px; }
footer .grid-3 { gap: 2rem; align-items: flex-start; justify-content: space-between; } 
.footer-title { color: var(--brand-green); font-family: var(--font-head); margin-bottom: 1rem; font-size: 1.5rem; text-transform: uppercase; }
.footer-brand-wrap { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; }

/* FOOTER LOGO BIGGER HERE */
.footer-brand-wrap img { display: block; height: 100px; width: auto; } 

.footer-brand-wrap .footer-title { margin-bottom: 0; line-height: 1.1; margin-top: 5px; }
.footer-links a { display: inline-block; transition: transform 0.3s ease, color 0.3s ease; }
.footer-links a:hover { color: var(--brand-green); transform: translateX(5px); }
.footer-links li { margin-bottom: 0.8rem; border-bottom: 1px solid #222; padding-bottom: 0.5rem; }

/* FOOTER SOCIAL LINKS */
.footer-social-links { display: flex; gap: 1.2rem; font-size: 1.8rem; }
.footer-social-links a { display: inline-block; transition: color 0.3s ease, transform 0.3s ease; }
.footer-social-links a.fb:hover { color: #1877F2; transform: scale(1.1); } 
.footer-social-links a.ig:hover { color: #E4405F; transform: scale(1.1); } 


/* MOBILE STICKY BAR */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: white; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 1500; padding: 10px; border-top: 2px solid var(--brand-green); }
.mobile-sticky-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--brand-green); color: white; width: 100%; padding: 12px; border-radius: 4px; font-weight: bold; text-transform: uppercase; font-family: var(--font-head); font-size: 1.2rem; animation: pulse-green 2s infinite; }

/* MOBILE OPTIMIZATION */
@media (max-width: 900px) {
    .process-timeline { flex-direction: column; align-items: center; }
    .process-arrow { padding-top: 0; margin: 1rem 0; transform: rotate(90deg); animation: bounceDown 2s infinite; }
}
@media (max-width: 768px) {
    /* Cleaner Mobile Top Bar */
    .top-bar { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px; font-size: 0.85rem; gap: 4px; text-align: center; }
    .top-bar div { width: auto; }

    /* Nav & Logo Scaling */
    .navbar { padding: 1rem; height: 70px; }
    .logo-img { height: 50px; } /* Shrinks logo to fit nav height perfectly */
    .cta-btn { display: none; }
    .hamburger { display: block; }
    
    /* Typography & Spacing Scaling for Mobile */
    .hero { padding: 5rem 1rem 3rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .page-header { padding: 4rem 1rem 3rem; }
    .page-header.tighter-header { padding: 3rem 1rem 2rem; }
    
    /* Fixed massive headers on mobile */
    .section-title { font-size: 2.2rem; margin-bottom: 0.5rem; } 
    .container { padding: 4rem 1.5rem; }
    .container.tighter-container { padding: 2.5rem 1.5rem; }
    
    .about-split { grid-template-columns: 1fr; gap: 2rem;}
    
    /* Mobile Menu Dropdown */
    .nav-links {
        display: flex; flex-direction: column; 
        position: absolute; top: 70px; left: 0; width: 100%;
        background: white; padding: 0 2rem; 
        max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 2px solid var(--brand-green);
    }
    .nav-links.active { max-height: 600px; padding: 2rem; }
    .nav-links a { display: block; margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 10px; width: 100%; text-align: left; }
    .nav-links a::after { display: none; } 
    
    /* Grid to Stacked Columns */
    .grid-3 { flex-direction: column; gap: 1.5rem; }
    .grid-4 { flex-direction: column; gap: 2.5rem; text-align: center; align-items: center;}
    
    .service-card { padding: 1.5rem; }
    
    /* Centered Mobile Footer */
    .footer-brand-wrap { justify-content: center; flex-direction: column; gap: 10px; }
    .footer-links a { text-align: center;}
    .footer-links li { border-bottom: none;}

    .trust-strip { flex-direction: column; gap: 1.5rem; padding: 2rem 1rem; }
    .mobile-sticky-bar { display: block; }
}