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

:root {
    --navy:    #0b2a5e;
    --navy-d:  #071a3e;
    --blue:    #1a5fb4;
    --blue-l:  #2d7dd2;
    --gold:    #f59e0b;
    --gold-d:  #d97706;
    --white:   #ffffff;
    --light:   #f0f6ff;
    --gray:    #64748b;
    --dark:    #1e293b;
    --border:  #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: transparent; transition: all 0.4s ease;
    padding: 20px 0;
}
.navbar.scrolled {
    background: var(--navy-d);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo { width: 44px; height: 44px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--navy); font-size: 18px; }
.navbar-name { display: flex; flex-direction: column; }
.navbar-name span:first-child { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: #fff; letter-spacing: .5px; }
.navbar-name span:last-child { font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.88); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all .25s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: #fff; }
.nav-links .btn-nav { background: var(--gold); color: var(--navy) !important; font-weight: 600; padding: 9px 22px !important; border-radius: 8px; }
.nav-links .btn-nav:hover { background: var(--gold-d); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy-d) 0%, #0d3b7a 45%, #1a6bb5 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; letter-spacing: .5px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,.4); }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat-item { text-align: center; }
.hero-stat-item .num { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.hero-stat-item .lbl { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-right { position: relative; }
.hero-card {
    background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
    padding: 28px; color: #fff;
}
.hero-ship-icon { width: 80px; height: 80px; background: rgba(245,158,11,.2); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 20px; }
.hero-service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hero-service-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hero-service-list li::before { content: '✓'; width: 22px; height: 22px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { display: inline-block; background: rgba(26,95,180,.1); color: var(--blue); padding: 5px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.section-tag.gold { background: rgba(245,158,11,.1); color: var(--gold-d); }
.section-tag.white { background: rgba(255,255,255,.1); color: var(--gold); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-title.white { color: #fff; }
.section-title span { color: var(--blue); }
.section-title span.gold { color: var(--gold); }
.section-sub { font-size: 17px; color: var(--gray); max-width: 600px; line-height: 1.7; }
.section-sub.white { color: rgba(255,255,255,.7); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.divider { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 16px 0 0; }
.divider.center { margin: 16px auto 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card {
    background: #fff; border-radius: 20px; padding: 36px 32px;
    border: 1px solid var(--border); transition: all .3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold)); opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.1); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 24px; background: var(--light); transition: all .3s; }
.service-card:hover .service-icon { background: var(--navy); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--blue); font-weight: 600; font-size: 14px; text-decoration: none; transition: gap .25s; }
.service-link:hover { gap: 10px; }

/* ── ABOUT ── */
.about-img-wrap { position: relative; }
.about-img-box { border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--blue-l)); padding: 40px; color: #fff; text-align: center; min-height: 450px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-big-num { font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 900; color: var(--gold); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); border-radius: 20px; padding: 20px 24px; text-align: center; box-shadow: 0 12px 30px rgba(245,158,11,.4); }
.about-badge span { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); }
.about-content { padding-left: 40px; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.about-points li .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-points li strong { font-size: 15px; color: var(--navy); display: block; margin-bottom: 2px; }
.about-points li span { font-size: 13px; color: var(--gray); }

/* ── STATS ── */
.stats-section { background: linear-gradient(135deg, var(--navy-d), #0f3a7a); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 20px; }
.stat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.stat-lbl { color: rgba(255,255,255,.7); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.team-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.team-avatar { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-info { padding: 24px; border-top: 1px solid var(--border); }
.team-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.team-info p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.team-socials { display: flex; gap: 8px; margin-top: 14px; }
.team-socials a { width: 34px; height: 34px; border-radius: 8px; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; font-size: 14px; transition: all .25s; }
.team-socials a:hover { background: var(--navy); color: #fff; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 32px; }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: var(--navy); flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: #fff; font-size: 15px; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,.5); }

/* ── CLIENTS ── */
.clients-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.client-logo { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 20px 32px; font-weight: 700; font-size: 14px; color: var(--gray); transition: all .25s; }
.client-logo:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,95,180,.05); }

/* ── ISO BADGE ── */
.iso-section { background: linear-gradient(135deg, var(--gold-d), var(--gold)); padding: 60px 0; }
.iso-content { text-align: center; }
.iso-badge-big { width: 100px; height: 100px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; margin: 0 auto 20px; border: 3px solid rgba(255,255,255,.4); }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--navy); padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-item { text-align: center; padding: 32px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }
.contact-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-item h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-item p, .contact-item a { color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--navy-d), #1a5fb4); padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 600px; margin: 0 auto 36px; }

/* ── FOOTER ── */
footer { background: var(--navy-d); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px; }
.footer-about { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all .25s; }
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--gold); font-weight: 700; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-contact li .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy-d), #1a5fb4); padding: 160px 0 80px; text-align: center; }
.page-hero h1 { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 20px; font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.form-control {
    width: 100%; padding: 13px 18px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif;
    color: var(--dark); background: #fff; transition: border-color .25s, box-shadow .25s; outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,95,180,.12); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── RESPONSIVE ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav is ALWAYS hidden by default on all screen sizes */
.nav-mobile { display: none; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-mobile.open { display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-d); z-index: 999; padding: 80px 32px 40px; flex-direction: column; gap: 8px; }
    .nav-mobile a { color: #fff; font-size: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); text-decoration: none; font-weight: 500; }
    .close-menu { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .grid-3 { grid-template-columns: 1fr; }
    .about-content { padding-left: 0; margin-top: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .hero-stats { gap: 24px; }
    .section { padding: 64px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* ── MISC ── */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; background: var(--light); color: var(--blue); border: 1px solid rgba(26,95,180,.15); }
.highlight-box { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 16px; padding: 32px; color: #fff; }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
