/* --- 1. DESIGN VARIABLES --- */
:root {
    --primary-navy: #032049;
    --section-blue: #104cba;
    --accent-orange: #ff9100;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* --- 2. GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- 3. UTILITIES --- */
.container { 
    max-width: 1200px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.flex-between { display: flex; justify-content: space-between; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-2-bias { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; margin-bottom: 50px; }
.mt-50 { margin-top: 50px; }

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    position: relative; 
    z-index: 20; 
}
.btn-orange { background-color: var(--accent-orange); color: var(--primary-navy); border: none; }
.btn-orange:hover { background-color: #ffaa33; transform: translateY(-2px); color: black; }
.btn-blue { background-color: var(--primary-navy); color: var(--white); }
.btn-blue:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--text-dark); color: var(--text-dark); margin-left: 10px; }
.btn-outline:hover { background: var(--text-dark); color: white; }

/* --- 4. TOP BAR & NAV --- */
.top-bar {
    background-color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}
.contact-info span { margin-left: 20px; }
.contact-info i { color: var(--accent-orange); margin-right: 5px; }
.top-text i { color: var(--accent-orange); margin-right: 5px; }

/* NAV BAR FIXED */
.main-nav {
    background-color: var(--primary-navy);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo { display: block; height: auto; margin-left: -30px; }
.logo-img { max-height: 120px; width: auto; object-fit: contain; }

.nav-right-side { display: flex; align-items: center; }
.nav-links { display: flex; gap: 40px; margin-right: 60px; }
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap; 
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-orange); }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.mobile-menu-icon { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- 5. HERO SECTION --- */
.hero {
    background-color: #f4f8fb;
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-content { position: relative; z-index: 10; }

.hero h1 { 
    font-size: 2.5rem; 
    color: var(--primary-navy); 
    line-height: 1.2; 
    margin-bottom: 20px; 
    white-space: nowrap; 
}

.subtitle {
    color: var(--text-light); font-weight: 600; margin-bottom: 10px;
    display: inline-block; border-bottom: 2px solid var(--accent-orange);
}

.hero-desc { 
    margin-bottom: 30px; 
    font-size: 1.8rem; 
    color: var(--primary-navy); 
    font-weight: 700; 
    max-width: 100%; 
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
.hero-image img {
    width: 100%; 
    height: auto; 
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cloud-divider { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 1; }

/* --- 6. SERVICES, PROCESS, ABOUT, TESTIMONIALS --- */
.section-tag { color: var(--section-blue); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;}
.services h2 { font-size: 2.5rem; color: var(--primary-navy); }
.service-card {
    background: white; border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: var(--transition);
    border: 1px solid #eee; height: 100%;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-bottom: 3px solid var(--accent-orange); }
.card-image img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { margin-bottom: 10px; color: var(--primary-navy); }

/* Process */
.process-step {
    background: white; padding: 40px 20px; border-radius: 8px;
    text-align: center; position: relative; border: 1px solid #eee;
    transition: var(--transition);
}
.step-icon {
    width: 80px; height: 80px; background: #fff8eb; color: var(--accent-orange);
    font-size: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto; position: relative;
}
.step-number {
    position: absolute; top: 0; right: 0; background: var(--primary-navy); color: white;
    font-size: 0.8rem; font-weight: bold; width: 25px; height: 25px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* About & Testimonials */
.about-image-wrapper img { border-radius: 10px; width: 100%; }
.experience-badge { display: none; }

.check-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--text-dark); }
.check-list i { color: var(--accent-orange); margin-right: 10px; }

.review-card {
    background: #fff; padding: 30px; border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 5px solid var(--accent-orange);
}
.stars { color: var(--accent-orange); margin-bottom: 15px; }
.review-text { font-style: italic; margin-bottom: 20px; color: var(--text-light); }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviewer-info h4 { font-size: 1rem; color: var(--primary-navy); margin-bottom: 0; }
.reviewer-info span { font-size: 0.85rem; color: var(--text-light); }

/* --- 7. BOOKING & MODALS --- */
.booking-grid { display: flex; flex-direction: column; gap: 20px; }
.booking-item {
    background: #fff; padding: 25px 30px; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
}
.booking-info h3 { margin-bottom: 5px; color: var(--primary-navy); font-size: 1.2rem; }
.booking-info .price { font-weight: 700; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 5px; }
.details-link { color: var(--section-blue); font-size: 0.9rem; cursor: pointer; text-decoration: underline; font-weight: 500; }
.details-link:hover { color: var(--accent-orange); }

#bookingModal { z-index: 2000; }
#detailsModal { z-index: 3000; }
.modal-overlay {
    display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(3, 32, 73, 0.8); backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}
.modal-content {
    background-color: #fff; width: 90%; max-width: 600px;
    border-radius: 12px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; overflow: hidden;
    animation: slideUp 0.3s ease-out;
}
.booking-modal { max-width: 800px; height: 90vh; }
.info-modal { max-width: 500px; }
.form-container { flex: 1; overflow-y: auto; }
.close-modal { position: absolute; top: 15px; right: 20px; color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; z-index: 10; }
.modal-header { padding: 20px; border-bottom: 1px solid #eee; text-align: center; background: #f9fcff; }
.modal-body ul li { margin-bottom: 10px; color: var(--text-dark); display: flex; align-items: center; }
.modal-body ul li i { color: var(--accent-orange); margin-right: 10px; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- 8. FAQ --- */
.faq-item {
    background: #fff; border-radius: 8px; margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 1px solid #eee; overflow: hidden;
}
.faq-item summary {
    padding: 20px; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; color: var(--primary-navy);
}
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-orange); transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 20px 20px 20px; color: var(--text-light); font-size: 0.95rem; line-height: 1.6; border-top: 1px solid #eee; }
.faq-item summary::-webkit-details-marker { display: none; }

/* --- 9. FOOTER --- */
.main-footer {
    background-color: var(--primary-navy);
    color: rgba(255,255,255,0.7);
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 35px; height: 35px; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: var(--transition);
}
.social-links a:hover { background: var(--accent-orange); color: var(--primary-navy); }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent-orange); padding-left: 5px; transition: var(--transition); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.85rem; }

/* --- 10. BACK TO TOP --- */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background-color: var(--accent-orange); color: var(--primary-navy);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
    text-decoration: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--primary-navy); color: var(--accent-orange); transform: translateY(-5px); }

/* --- 11. RESPONSIVE --- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; } 
    .hero h1 { white-space: normal; font-size: 2.5rem; }
    .hero-desc { margin: 0 auto 30px auto; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .grid-2, .grid-2-bias { grid-template-columns: 1fr; }
    
    .main-nav { height: 80px; justify-content: space-between; padding: 0 20px; }
    .brand-logo { margin-left: 0 !important; }
    .logo-img { height: 50px !important; width: auto !important; }
    .mobile-menu-icon { display: block !important; color: white; font-size: 1.8rem; cursor: pointer; }
    
    /* Force hide menu until active */
    .nav-right-side { display: none !important; }

    .hero { text-align: center; padding-top: 40px; }
    .hero h1 { font-size: 2.2rem; } 
    .hero-buttons { justify-content: center; display: flex; }
    
    .booking-item { flex-direction: column; align-items: flex-start; gap: 20px; }
    .booking-item .btn { width: 100%; }

    /* Footer Mobile */
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 10px; text-align: left; }
    .footer-col:nth-child(1) { grid-column: 1 / -1; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 10px; }
    .brand-light img { margin: 0 auto 20px auto; }
    .social-links { justify-content: center; }
    .main-footer { padding-bottom: 100px; }

    /* Mobile Menu Active */
    .nav-right-side.active {
        display: flex !important; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%;
        background-color: var(--primary-navy); padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-right-side.active .nav-links { flex-direction: column; gap: 25px; margin-right: 0; margin-bottom: 30px; align-items: center; }
    .nav-right-side.active .nav-actions { width: 100%; justify-content: center; }
}