/* --- BASE STYLES & CUSTOM COLORS --- */
:root {
    --navy: #24385d;
    --sky-blue: #82b3d8;
    --white: #ffffff;
    --black: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--black);
}

a {
    text-decoration: none;
}

/* --- NAVBAR & LOGO --- */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    padding: 15px 5%; 
    position: relative; 
    z-index: 9999; 
}

.nav-logo {
    height: 80px;  
    width: auto;
    margin: -5px 0; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4)); 
    max-width: 80vw; 
    object-fit: contain; 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--sky-blue);
}

.nav-btn-outline {
    border: 2px solid var(--sky-blue);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--white);
}

.nav-btn-outline:hover {
    background: var(--sky-blue);
    color: var(--navy);
}

.hamburger {
    display: none;
}

/* --- HERO SECTION --- */
.hero {
    color: var(--white);
    text-align: center;
    padding: 150px 20px 100px; 
    position: relative;
    overflow: hidden;
    min-height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; 
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(36, 56, 93, 0.7), rgba(36, 56, 93, 0.9));
    z-index: 2; 
    pointer-events: none; 
}

.hero-content {
    position: relative;
    z-index: 3; 
}

.massive-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --- UPGRADED BUTTON & SMART LINKS --- */
.action-buttons {
    margin-top: 20px;
}

.btn-primary {
    background: var(--sky-blue);
    color: var(--navy);
    padding: 20px 45px; 
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50px; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--navy);
    transform: scale(1.1); 
    box-shadow: 0 0 25px 10px rgba(255, 255, 255, 0.5); 
}

.mobile-btn {
    display: none;
}

/* --- FROSTED GLASS CONTACT NOTE --- */
.contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15); 
    padding: 15px 30px;
    border-radius: 50px; 
    font-size: 1rem;
    margin: 35px auto 0 auto;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    max-width: fit-content;
}

.contact-note i {
    font-size: 1.4rem;
    color: var(--sky-blue);
}

/* --- EMAIL CHOOSER MODAL STYLING --- */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 15px; right: 25px;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--navy);
}

.email-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-btn {
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-btn:hover { 
    transform: translateY(-3px); 
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.email-btn.gmail { background: #EA4335; }
.email-btn.outlook { background: #0078D4; }
.email-btn.yahoo { background: #410093; }
.email-btn.default-mail { background: var(--navy); }

.mobile-text { display: none; }
.desktop-text { display: inline; }


/* --- MISSION SECTION --- */
.mission-section {
    padding: 80px 20px;
    background-color: #f4f9fd; 
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 2px solid var(--sky-blue); 
}

.mission-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
    text-align: left;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.highlight {
    color: var(--sky-blue);
}

.mission-image-placeholder {
    flex: 1;
    background: rgba(130, 179, 216, 0.1);
    border: 3px dashed var(--sky-blue);
    border-radius: 15px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--navy);
    padding: 20px;
}

.mission-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--sky-blue);
}

.mission-image-placeholder p {
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, #f4f9fd 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- PRICING BOXES (NOW CLICKABLE BUTTONS) --- */
.pricing-box-container {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-box {
    background: var(--navy);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 10px;
    display: inline-block;
    border: 3px solid var(--sky-blue);
    box-shadow: 0 8px 20px rgba(36, 56, 93, 0.2);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(130, 179, 216, 0.4);
    background: var(--sky-blue);
}

.pricing-box:hover p, .pricing-box:hover strong {
    color: var(--navy);
}

.pricing-box p {
    transition: color 0.3s ease;
    display: block !important; 
    text-align: center;
    white-space: normal;
    line-height: 1.4;
    margin: 0;
}

.pricing-box strong {
    color: var(--sky-blue);
    font-size: 1.6rem;
    transition: color 0.3s ease;
    margin: 0 5px;
    display: inline !important; 
}

.hover-icon {
    margin-left: 10px;
    opacity: 0.8;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* --- CARDS --- */
.card.glass-effect {
    border-radius: 20px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(36, 56, 93, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card.glass-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(130, 179, 216, 0.2);
}

.centered-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy);
    border-bottom: 2px solid rgba(36, 56, 93, 0.1);
    padding-bottom: 25px;
}

.centered-header i {
    font-size: 4.5rem; 
    color: var(--sky-blue);
    margin-bottom: 20px;
    display: block;
}

.centered-header h3 {
    margin: 0;
    font-size: 2rem;
}

/* --- CHECKLISTS & NEW SHEET SERVICE NOTE --- */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px; 
    font-size: 1.05rem; 
    color: var(--black);
    line-height: 1.6; 
}

.check-list li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--sky-blue); 
    font-size: 1.3rem;
}

.check-list li strong {
    color: var(--navy);
}

.sheet-service-note {
    display: block;
    margin-top: 10px;
    padding: 10px 15px;
    background: rgba(130, 179, 216, 0.15);
    border-left: 4px solid var(--sky-blue);
    border-radius: 4px;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--navy);
}

.specialized-container {
    margin-top: 60px;
}

.wide-card {
    max-width: 1000px;
    margin: 0 auto;
}

.split-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--navy);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(130, 179, 216, 0.15); 
    border-radius: 10px;
    border: 1px dashed var(--sky-blue);
}

/* --- GUARANTEE BANNER --- */
.guarantee-banner {
    background: var(--sky-blue);
    color: var(--navy);
    text-align: center;
    padding: 60px 20px;
}

.guarantee-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.guarantee-banner p {
    font-size: 1.5rem;
    font-style: italic;
}

/* --- FOOTER SECTION --- */
footer { 
    background: var(--navy); 
    color: var(--white); 
    text-align: center; 
    padding: 4rem 5% 2rem 5%; 
}

.social-header {
    color: var(--white);
    font-size: 1.6rem; 
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px; 
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px; 
    margin: 20px 0 30px 0;
}

.social-icon {
    width: 65px; 
    height: 65px; 
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2.2rem; 
    transition: all 0.3s ease; 
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.social-icon.fb:hover {
    background: #1877F2;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.social-icon.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(214, 36, 159, 0.4);
}

.copyright {
    color: var(--sky-blue);
    font-size: 0.9rem;
    margin-top: 30px;
    border-top: 1px solid rgba(130, 179, 216, 0.2);
    padding-top: 20px;
    display: inline-block;
}

/* --- COPY EMAIL SECTION STYLES --- */
.copy-email-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(36, 56, 93, 0.1);
}

.copy-email-section p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.copy-btn {
    background: #f4f9fd;
    color: var(--navy);
    border: 2px dashed var(--sky-blue);
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    word-break: break-word; 
}

.copy-btn:hover {
    background: rgba(130, 179, 216, 0.15);
    transform: translateY(-2px);
}

.copy-btn.copied {
    background: #28a745;
    border-color: #28a745;
    color: var(--white);
    border-style: solid;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.fade-in-up { animation: fadeInUp 1s ease-out forwards; }

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
    .standard-grid {
        grid-template-columns: 1fr;
    }
    .split-list {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 992px) {
    .desktop-btn { display: none !important; }
    .mobile-btn { display: inline-block !important; }

    .mission-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .mission-text {
        text-align: center;
    }
    .mission-image-placeholder {
        width: 100%;
        min-height: 250px;
    }
}

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {
    
    .nav-logo { height: 60px; } 
    .hamburger { display: flex; }
    
    .desktop-nav-btn { display: none; }
    .mobile-nav-btn { display: block !important; }

    .desktop-text { display: none; }
    .mobile-text { display: inline; }

    .copy-btn {
        font-size: 0.85rem;
        padding: 12px 10px;
        gap: 5px; 
    }

    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: var(--navy); 
        flex-direction: column; 
        padding: 2rem 0; 
        z-index: 9999; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
    }
    .nav-links.active { display: flex; }
    
    .hero { padding: 120px 15px 60px; } 
    .massive-title { font-size: 2.2rem; margin-bottom: 15px; } 
    .subtitle { font-size: 1.1rem; margin-bottom: 30px; } 

    .mobile-btn {
        width: 100%;
        max-width: 350px; 
        font-size: 1.2rem;
        padding: 18px 20px;
    }
    
    .contact-note {
        flex-direction: column;
        padding: 15px;
        border-radius: 15px;
        text-align: center;
        font-size: 0.9rem;
    }

    .mission-section, .services-section { padding: 50px 15px; }
    .section-title { font-size: 2rem; }
    .mission-text h2 { font-size: 2rem; }
    .mission-container { padding: 30px 20px; }

    .card.glass-effect { padding: 25px 20px; }
    
    /* Pricing boxes forced block display so they never bunch up on mobile */
    .pricing-box { 
        font-size: 1rem; 
        padding: 12px 15px; 
        width: 100%; 
        max-width: 320px; 
        margin: 0 auto; 
        display: block !important; 
    }
    .pricing-box strong { font-size: 1.2rem; margin: 0 3px; }
    
    .check-list li { font-size: 0.95rem; margin-bottom: 15px; }
    .centered-header i { font-size: 3.5rem; }
    .centered-header h3 { font-size: 1.6rem; }

    .guarantee-banner { padding: 40px 20px; }
    .guarantee-banner h2 { font-size: 1.8rem; margin-bottom: 10px; }
    .guarantee-banner p { font-size: 1.1rem; }

    .social-icon { width: 55px; height: 55px; font-size: 1.8rem; } 
    .social-header { font-size: 1.4rem; }
}