@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* site-colors: #000957 #5CB338 #F2F2F2 #FFC145 */
  --primary-color: #000957;
  --secondary-color: #5CB338;
  --accent-color: #FFC145;
  --light-color: #F2F2F2;
  --dark-color: #00042B;
  --gradient-primary: linear-gradient(135deg, #000957 0%, #5CB338 100%);
  --hover-color: #001280;
  --background-color: #EAEAEA;
  --text-color: #333333;
  --border-color: rgba(92, 179, 56, 0.2);
  --divider-color: rgba(0, 9, 87, 0.1);
  --shadow-color: rgba(0, 9, 87, 0.15);
  --highlight-color: #EE4266; /* Complementary */
  
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Base Styles */
html { scroll-behavior: smooth; }
body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    color: var(--primary-color);
}
.bg-pattern {
    background-color: #F8F8F8;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
}
.text-primary-color { color: var(--primary-color); }
.text-accent-color { color: var(--accent-color); }

/* Neumorphism Utilities */
.neu-item {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    transition: all 0.3s ease;
}
.neu-item:hover {
    box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px #ffffff;
}
.n-input {
    width: 100%;
    padding: 1.2rem;
    border: none;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
    font-family: var(--alt-font);
    color: var(--text-color);
    transition: box-shadow 0.3s ease;
}
.n-input:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px var(--shadow-color), inset -2px -2px 4px #ffffff;
}
.neu-pic {
    width: 100%;
    border-radius: 16px;
    box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    object-fit: cover;
}

/* Buttons */
.btn-main {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--light-color);
    font-family: var(--main-font);
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 4px 4px 8px var(--shadow-color), -4px -4px 8px #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-main:hover {
    background: var(--hover-color);
    color: white;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
}
.btn-alt {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-color);
    font-family: var(--main-font);
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    text-align: center;
}
.btn-alt:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Header & Navigation */
.top-header {
    background-color: var(--dark-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--main-font);
    font-weight: 700;
    transition: color 0.3s;
}
.hover-fx:hover {
    color: var(--accent-color);
}
.menu-icon {
    display: none;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-icon { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #mobile-menu:checked ~ .main-nav { display: block; }
    .header-inner { justify-content: center; position: relative; }
    .menu-icon { position: absolute; right: 1.5rem; }
}

/* Sections General */
section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}
.screen-hero {
    height: 80vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 4, 43, 0.7), rgba(0, 4, 43, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
    color: var(--light-color);
}
.hero-box {
    max-width: 900px;
    padding: 0 1rem;
}
.hero-box h1 {
    color: var(--light-color);
}

/* Content Sections */
.flex-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.flex-layout.reverse-layout {
    flex-direction: row-reverse;
}
.visual-col { width: 40%; }
.text-col { width: 60%; }

@media (max-width: 768px) {
    .flex-layout, .flex-layout.reverse-layout { flex-direction: column; }
    .visual-col, .text-col { width: 100%; }
}

/* Divider */
.line-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5dvh 1rem;
    gap: 25px;
}
.line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    max-width: 350px;
}
.line-title { color: var(--secondary-color); text-align: center; }

/* CTA Sections */
.cta-banner {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner-1, .banner-2 {
    background-image: linear-gradient(rgba(0, 9, 87, 0.8), rgba(0, 9, 87, 0.8)), url('./img/bg.jpg');
}
.cta-inner {
    position: relative;
    z-index: 2;
}

/* Features (5 cols) */
.grid-5-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.grid-5-cols > .neu-item {
    flex: 1 1 200px;
    max-width: 250px;
}
.icon-box i { color: var(--secondary-color); }

/* Testimonials (2 cols) */
.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Contact Form */
.form-layout {
    display: flex;
    gap: 50px;
}
.info-panel { width: 40%; }
.form-panel { width: 60%; }
.contact-list { list-style: none; padding: 0; }
.contact-list i { color: var(--secondary-color); }

@media (max-width: 768px) {
    .form-layout { flex-direction: column; }
    .info-panel, .form-panel { width: 100%; }
}

/* FAQ Accordion */
.n-accordion {
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 4px 4px 8px var(--shadow-color), -4px -4px 8px #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.n-accordion summary {
    outline: none;
    color: var(--primary-color);
    list-style: none;
}
.n-accordion summary::-webkit-details-marker { display: none; }
.n-accordion[open] summary {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Footer */
.bottom-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 1rem 2rem;
}
.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.legal-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}
.legal-links a {
    color: var(--light-color);
    text-decoration: none;
}
.footer-credits {
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .footer-wrap {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}