@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F5F7FA;
    color: #444444;
    overflow-x: hidden;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a { transition: color 0.3s, opacity 0.3s, background 0.3s, border-color 0.3s; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { color: #0B1F3B; margin: 0; font-weight: 700; }

/* --- Top Bar --- */
.top-bar {
    background: #0B1F3B;
    color: #FFFFFF;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 2px solid #0A6E5C;
}
.top-bar a { color: #FFFFFF; text-decoration: none; font-weight: 500; }
.top-bar a:hover { color: #E8C36A; }
.top-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-left span i { color: #D4A843; font-size: 13px; }
.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
    font-size: 12px;
}
.top-right a:hover { background: #D4A843; color: #0B1F3B; }
.top-right .wa-btn { background: #0A6E5C !important; color: #FFFFFF !important; }
.top-right .wa-btn:hover { background: #D4A843 !important; color: #0B1F3B !important; }

/* --- Main Header --- */
.main-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E8C36A;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.logo img { height: 50px; width: auto; }

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(90deg, red, gold, green, gold, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveLeft 12s linear infinite, blink 1.2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

@keyframes moveLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.logo {
    overflow: hidden;
    max-width: 250px;
    flex-shrink: 0;
}

/* --- Navigation: Desktop --- */
.main-nav {
    flex-shrink: 0;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    color: #0B1F3B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: #D4A843; }
.main-nav .fa-chevron-down {
    font-size: 9px;
    transition: transform 0.3s;
}
.main-nav > ul > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* --- Desktop dropdown (vertical) --- */
.main-nav .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 280px;
    box-shadow: 0 12px 40px rgba(11,31,59,0.1);
    border: 1px solid #F5F7FA;
    border-top: 3px solid #D4A843;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    display: block;
    flex-direction: column;
}
.main-nav .nav-dropdown li {
    display: block;
    width: 100%;
}
.main-nav > ul > li:hover > .nav-dropdown,
.main-nav > ul > li:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    color: #444444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-dropdown li a:hover {
    background: #F5F7FA;
    color: #0B1F3B;
    padding-left: 26px;
}
.nav-dropdown li a i {
    width: 18px;
    text-align: center;
    color: #0A6E5C;
    font-size: 14px;
    flex-shrink: 0;
}

/* --- Mobile Toggle Button --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #0B1F3B;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Mobile Overlay --- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,31,59,0.5);
    z-index: 1998;
    transition: opacity 0.3s;
}
.nav-overlay.active { display: block; }

/* --- Page Hero Banner --- */
.page-hero {
    background: #0B1F3B;
    padding: 60px 0 55px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D4A843;
}
.page-hero .hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,110,92,0.12), rgba(8,90,75,0.04));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero h1 {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
    z-index: 2;
}
.page-hero p {
    color: #FFFFFF;
    font-size: 16px;
    max-width: 550px;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    font-size: 13px;
}
.page-hero .breadcrumb a {
    color: #E8C36A;
    text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: #FFFFFF; }
.page-hero .breadcrumb span { color: #FFFFFF; margin: 0 8px; }
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.6); }

/* --- Section Common --- */
.section-padding { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 55px; }
.section-label {
    display: inline-block;
    color: #D4A843;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0B1F3B;
    margin: 0 0 14px;
    line-height: 1.2;
}
.section-header p {
    color: #444444;
    font-size: 15px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-divider {
    width: 50px;
    height: 3px;
    background: #D4A843;
    margin: 18px auto 0;
}

/* =============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================= */

/* --- Contact Info Cards --- */
.contact-info-card {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,31,59,0.08);
    border-color: #D4A843;
}
.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10,110,92,0.06);
    border: 1.5px solid #0A6E5C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #0A6E5C;
}
.contact-info-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}
.contact-info-card p {
    font-size: 14px;
    margin-bottom: 5px;
}
.contact-info-card a {
    color: #0A6E5C;
    font-weight: 600;
    text-decoration: none;
}
.contact-info-card a:hover {
    color: #D4A843;
}

/* --- Form + Map Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 40px;
    height: 100%;
}
.contact-form-wrap h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

/* Two-column form rows using CSS Grid (replaces Bootstrap cols for reliability) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-col {
    min-width: 0;
}

.contact-form-wrap .form-group {
    margin-bottom: 20px;
}
.contact-form-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0B1F3B;
    margin-bottom: 8px;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D8DDE4;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: #444444;
    background: #F5F7FA;
    transition: border-color 0.3s, background 0.3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: #D4A843;
    background: #FFFFFF;
}
.contact-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

/* --- Map Container --- */
.contact-map-wrap {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    overflow: hidden;
    min-height: 500px;
}
.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* --- Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4A843, #E8C36A);
    color: #0B1F3B;
    padding: 15px 38px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    border: none;
    cursor: pointer;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #c49938, #D4A843);
    color: #0B1F3B;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}

/* --- CTA Box --- */
.cta-box {
    background: #0B1F3B;
    border-radius: 6px;
    padding: 60px 40px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border: 1px solid #0A6E5C;
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #D4A843;
}
.cta-box h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 14px;
    color: #FFFFFF;
    position: relative;
}
.cta-box p {
    font-size: 15px;
    color: #FFFFFF;
    margin: 0 auto 32px;
    max-width: 520px;
    position: relative;
    line-height: 1.8;
}

/* --- Footer --- */
.site-footer {
    background: #0B1F3B;
    color: #FFFFFF;
    padding: 60px 0 0;
}
.site-footer h5 {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #D4A843;
    display: inline-block;
}
.site-footer p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
    color: #FFFFFF;
}
.footer-logo img { height: 50px; margin-bottom: 18px; }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.footer-links li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 10px;
    color: #D4A843;
}
.footer-links li a:hover { color: #E8C36A; }
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #FFFFFF;
}
.footer-contact li a { color: #FFFFFF; text-decoration: none; }
.footer-contact li a:hover { color: #E8C36A; }
.footer-contact li i {
    color: #D4A843;
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #085A4B;
    border: 1px solid #0A6E5C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #D4A843;
    border-color: #D4A843;
    color: #0B1F3B;
}
.footer-bottom {
    border-top: 1px solid #0A6E5C;
    margin-top: 50px;
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    background: #085A4B;
}
.footer-bottom a { color: #FFFFFF; text-decoration: none; }
.footer-bottom a:hover { color: #E8C36A; }

/* --- Go Top --- */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D4A843, #E8C36A);
    color: #0B1F3B;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
}
.go-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,168,67,0.4); }

/* =============================================
   MOBILE NAVIGATION (≤991px)
   ============================================= */
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }

    /* Slide-in panel */
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: -5px 0 30px rgba(11,31,59,0.15);
        z-index: 2000;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 24px 0 30px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        display: block !important;
    }
    .main-nav.open { right: 0; }

    /* Vertical stack for top-level items */
    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
    }

    /* Each top-level link spans full width */
    .main-nav > ul > li > a {
        padding: 14px 24px;
        border-bottom: 1px solid #F0F2F5;
        justify-content: flex-start;
        font-size: 13px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* COMPLETELY hide dropdowns on mobile */
    .main-nav .nav-dropdown {
        display: none !important;
    }

    /* Hide chevron icons on mobile */
    .main-nav > ul > li > a .fa-chevron-down {
        display: none;
    }

    .page-hero h1 { font-size: 30px; }
    .page-hero .hero-accent { display: none; }
    .section-header h2 { font-size: 28px; }

    /* Form + Map: stack vertically on tablet */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .top-bar { text-align: center; }
    .top-left, .top-right { justify-content: center; }
    .page-hero { padding: 45px 0 40px; }
    .page-hero h1 { font-size: 24px; }
    .page-hero p { font-size: 14px; }
    .section-padding { padding: 55px 0; }
    .section-header h2 { font-size: 24px; }
    .cta-box { padding: 35px 22px; }
    .cta-box h2 { font-size: 22px; }

    /* Form: reduce padding on small phones */
    .contact-form-wrap {
        padding: 28px 20px;
    }

    /* Form rows: stack fields vertically */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Map: reduce min-height on mobile */
    .contact-map-wrap {
        min-height: 320px;
    }
    .contact-map-wrap iframe {
        min-height: 320px;
    }
}