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

:root {
    --bg: #F5F8FA;
    --w: #ffffff;
    --t: #083344;
    --tm: #0a3d52;
    --tl: #1a5e78;
    --tp: #e8f4f8;
    --o: #FF6A00;
    --og: #ff8c2a;
    --op: #fff3eb;
    
    --tx: #0d2030;
    --mu: #5a7a8a;
    --bd: #dce8ed;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --r: 14px;
    --s: 0 4px 32px rgba(8, 51, 68, 0.06);
    --sl: 0 12px 56px rgba(8, 51, 68, 0.12);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--tx);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 51, 68, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 32px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav-logo span {
    color: var(--o);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.nav-links {
    display: none;
    gap: 1rem;
    list-style: none;
    align-items: center;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 13px;
    border-radius: 7px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
}

.nav-btn {
    background-color: var(--o);
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 7px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--og);
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.4);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (min-width: 900px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    position: relative;
    transition: var(--transition);
}

.menu-icon::before, .menu-icon::after {
    content: '';
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    position: absolute;
    transition: var(--transition);
}

.menu-icon::before { top: -6px; }
.menu-icon::after { bottom: -6px; }

.menu-toggle.open .menu-icon {
    background-color: transparent;
}
.menu-toggle.open .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}
.menu-toggle.open .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Dropdown Nav */
.mobile-nav {
    position: fixed;
    top: 4.5rem;
    left: 0;
    width: 100%;
    background-color: #041e28;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px;
}

/* Page Hero Section */
.hero {
    padding: 130px 0 90px;
    background: linear-gradient(-45deg, #041e28, #083344, #0a3d52, #0d4f69);
    background-size: 400% 400%;
    animation: heroBg 14s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

@keyframes heroBg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hgb {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.25);
    color: var(--o);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--o);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--o);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    max-width: 620px;
    margin: 0 auto 36px auto;
    line-height: 1.8;
}

/* Sections styling */
.sec {
    padding: 96px 0;
}

.kk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--o);
    background: var(--op);
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 106, 0, 0.2);
    margin-bottom: 14px;
}

.kk::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--o);
}

.hd {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 900;
    color: var(--t);
    line-height: 1.15;
    letter-spacing: -.5px;
    font-family: var(--font-heading);
}

.hd span {
    color: var(--o);
}

.sb {
    color: var(--mu);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 14px;
    max-width: 560px;
}

.sh {
    margin-bottom: 56px;
}
.tc {
    text-align: center;
}
.tc .sb {
    margin: 14px auto 0;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background: var(--w);
    border-radius: var(--r);
    padding: 32px 26px;
    box-shadow: var(--s);
    transition: var(--transition);
    border: 1px solid var(--bd);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--o), #ffa040);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--op);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--o);
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--t);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.card-desc {
    font-size: 13.5px;
    color: var(--mu);
    line-height: 1.7;
}

/* Buttons */
.btn-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--o);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 9px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.35);
}

.btn-o:hover {
    background-color: var(--og);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.45);
    color: #ffffff;
}

/* Inquiry Form */
.inquiry-box {
    background: var(--w);
    border-radius: var(--r);
    border: 1px solid var(--bd);
    padding: 40px;
    box-shadow: var(--s);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--mu);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: var(--font-heading);
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--bd);
    border-radius: 9px;
    padding: 13px 17px;
    color: var(--tx);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--o);
    background: var(--w);
}

/* Footer styling matching main site */
.ft {
    background: #041e28;
    padding: 56px 0 24px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link:hover {
    color: var(--o);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
