*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: #fff; color: #333; line-height: 1.7; -webkit-font-smoothing: antialiased; }

nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 0 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-item .arrow { font-size: 9px; color: #6b7280; transition: transform 0.2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: 100%; left: -12px; background: #fff; border-radius: 10px; padding: 8px 6px; box-shadow: 0 16px 48px rgba(0,0,0,0.12); min-width: 230px; border: 1px solid #eef0f2; z-index: 200; }
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 13px; color: #4a5568; text-decoration: none; white-space: nowrap; transition: all 0.15s; }
.dropdown a:hover { background: #f8fafc; color: #0C112E; }
.nav-links a { text-decoration: none; color: #0C112E; font-size: 14px; font-weight: 600; transition: color 0.2s; letter-spacing: 0.3px; }
.nav-links a:hover { color: #339CD6; }
.nav-links a.active { color: #ED1B24; }
.nav-cta { background: #ED1B24; color: #fff !important; padding: 10px 24px; border-radius: 6px; font-weight: 700; transition: all 0.25s ease; }
.nav-cta:hover { background: #c0141a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(237,27,36,0.35); }
.hamburger { display: none; background: none; border: none; color: #0C112E; font-size: 28px; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.hero { background: #fff; color: #0C112E; padding: 100px 24px 90px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(51,156,214,0.06) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }
.hero h1 span { color: #339CD6; }
.hero p { font-size: 17px; opacity: 0.85; max-width: 520px; margin-bottom: 32px; line-height: 1.8; }
.hero-badge { display: inline-block; background: rgba(51,156,214,0.1); border: 1px solid rgba(51,156,214,0.4); color: #339CD6; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.hero-img-box { position: relative; }
.hero-img-box img { width: 100%; border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.35); }
.hero-slider { position: relative; width: 100%; height: 460px; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.35); }
.hero-slider img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; display: none; position: absolute; inset: 0; }
.hero-slider img.active { display: block; animation: fadeSlide 0.6s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

.btn { background: #ED1B24; color: #fff; padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block; transition: all 0.25s ease; border: none; cursor: pointer; font-family: 'Open Sans', sans-serif; }
.btn:hover { background: #c0141a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,27,36,0.35); }
.btn-outline { background: transparent; border: 2px solid #0C112E; color: #0C112E; }
.btn-outline:hover { background: rgba(12,17,46,0.05); border-color: #0C112E; box-shadow: none; }
.btn-blue { background: #ED1B24; }
.btn-blue:hover { background: #c0141a; box-shadow: 0 8px 24px rgba(237,27,36,0.35); }

section { padding: 88px 0; }
.section-title { text-align: center; margin-bottom: 52px; }
.section-title .label { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: #0C112E; font-weight: 700; margin-bottom: 10px; }
.section-title h2 { font-size: 34px; font-weight: 800; color: #0C112E; letter-spacing: -0.5px; line-height: 1.2; }
.section-title p { color: #6b7280; font-size: 16px; max-width: 600px; margin: 14px auto 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.card { background: #fff; border-radius: 14px; padding: 32px 28px; border: 1px solid #eef0f2; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 0.3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.card .icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card h3 { font-size: 17px; font-weight: 700; color: #0C112E; margin-bottom: 8px; }
.card p { font-size: 14px; color: #6b7280; line-height: 1.7; }
.icon-navy { background: rgba(12,17,46,0.08); }
.icon-blue { background: rgba(51,156,214,0.12); }
.icon-red { background: rgba(237,27,36,0.1); }

.stats-bar { background: #0C112E; color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat h3 { font-size: 34px; font-weight: 800; color: #339CD6; }
.stat p { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-split > img, .feature-split .feature-img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); display: block; }
.feature-text { display: flex; flex-direction: column; justify-content: center; }
.feature-text .label { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: #0C112E; font-weight: 700; margin-bottom: 10px; }
.feature-text h2 { font-size: 30px; font-weight: 800; color: #0C112E; margin-bottom: 16px; line-height: 1.2; }
.feature-text p { font-size: 15px; color: #6b7280; line-height: 1.9; margin-bottom: 14px; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #4a5568; margin-bottom: 12px; }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; }

.bg-light { background: #f8fafc; }
.bg-navy { background: #0C112E; color: #fff; }
.bg-navy h2 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.7); }
.bg-navy .card { background: #fff; }
.bg-navy .card p { color: #6b7280; }
.bg-navy .card h3 { color: #0C112E; }
.bg-navy .section-title p { color: rgba(255,255,255,0.7); }

.cta-section { background: linear-gradient(135deg, #ED1B24 0%, #c0141a 100%); color: #fff; text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.cta-section h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 32px; }
.cta-section .btn { background: #fff; color: #ED1B24; }
.cta-section .btn:hover { background: #f8f8f8; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.testimonial { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #eef0f2; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.testimonial blockquote { font-size: 14px; color: #4a5568; font-style: italic; line-height: 1.8; margin-bottom: 14px; }
.testimonial .cite { font-size: 13px; color: #6b7280; font-weight: 600; }
.testimonial .stars { color: #ED1B24; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; transition: transform 0.3s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; background: rgba(12,17,46,0.35); display: flex; align-items: center; justify-content: center; font-size: 28px; opacity: 0; transition: opacity 0.25s; }
.gallery-item:hover::after { opacity: 1; }

.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 22px; cursor: pointer; transition: all 0.2s; }
.lightbox-close:hover { background: #ED1B24; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 24px; cursor: pointer; transition: all 0.2s; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: #339CD6; }

.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #eef0f2; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.contact-card h3 { font-size: 18px; font-weight: 700; color: #0C112E; margin-bottom: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-row svg { flex-shrink: 0; margin-top: 3px; }
.contact-row strong { display: block; font-size: 14px; color: #0C112E; }
.contact-row span { font-size: 14px; color: #6b7280; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #4a5568; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid #d0d5dd; border-radius: 8px; font-size: 14px; font-family: 'Open Sans', sans-serif; color: #333; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #339CD6; box-shadow: 0 0 0 3px rgba(51,156,214,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

footer { background: #0C112E; color: rgba(255,255,255,0.65); padding: 56px 24px 24px; font-size: 14px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 700; }
.footer-grid p { font-size: 13px; line-height: 2; }
.footer-grid a { color: rgba(255,255,255,0.65); text-decoration: none; display: block; font-size: 13px; line-height: 2.2; transition: color 0.2s; }
.footer-grid a:hover { color: #339CD6; }
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: #339CD6; text-decoration: none; }

.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 99; width: 56px; height: 56px; border-radius: 50%; background: #ED1B24; color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 20px rgba(237,27,36,0.4); text-decoration: none; transition: all 0.25s ease; }
.whatsapp-btn:hover { transform: scale(1.08); }

.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #0C112E; color: #fff; padding: 14px 24px; z-index: 1000; display: none; font-size: 13px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-bar.show { display: block; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-bar p { color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; font-size: 13px; }
.cookie-bar a { color: #339CD6; text-decoration: underline; }
.cookie-btn { background: #ED1B24; color: #fff; padding: 10px 28px; border-radius: 8px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; font-family: 'Open Sans', sans-serif; white-space: nowrap; transition: all 0.2s; }
.cookie-btn:hover { background: #c0141a; }

/* Brand strip */
.brand-strip { padding: 40px 0; border-top: 1px solid #eef0f2; border-bottom: 1px solid #eef0f2; }
.brand-strip .brand-label { text-align: center; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #6b7280; font-weight: 700; margin-bottom: 24px; }
.brand-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brand-item { background: #f8fafc; border: 1px solid #eef0f2; border-radius: 8px; padding: 10px 22px; font-size: 14px; font-weight: 600; color: #4a5568; transition: all 0.2s; }
.brand-item:hover { background: #0C112E; color: #fff; border-color: #0C112E; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Marquee ticker */
.marquee { background: #0C112E; color: #fff; overflow: hidden; padding: 12px 0; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; font-size: 14px; font-weight: 600; letter-spacing: 1px; }
.marquee-track span { margin: 0 32px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Image accordion */
.img-accordion { display: flex; gap: 8px; height: 320px; }
.img-accordion .acc-item { flex: 1; border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; transition: flex 0.5s ease; }
.img-accordion .acc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.img-accordion .acc-item:hover { flex: 4; }
.img-accordion .acc-item:hover img { transform: scale(1.05); }
.img-accordion .acc-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(12,17,46,0.8)); color: #fff; padding: 20px 14px 12px; font-size: 13px; font-weight: 700; opacity: 0; transition: opacity 0.3s; }
.img-accordion .acc-item:hover .acc-label { opacity: 1; }

/* Animated hamburger */
.hamburger span { display: block; width: 24px; height: 2px; background: #0C112E; margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Flip cards */
.flip-card { perspective: 1000px; height: 300px; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s; transform-style: preserve-3d; }
.flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 14px; padding: 28px; }
.flip-front { background: #fff; border: 1px solid #eef0f2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.flip-back { background: #0C112E; color: #fff; transform: rotateY(180deg); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.flip-back h3 { color: #fff; margin-bottom: 10px; }
.flip-back p { color: rgba(255,255,255,0.8); font-size: 13px; line-height: 1.7; }
.flip-back a { color: #339CD6; font-weight: 700; text-decoration: none; margin-top: 12px; }

/* Testimonial slider */
.testi-slider { position: relative; min-height: 180px; }
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeSlide 0.6s ease; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testi-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; cursor: pointer; transition: all 0.3s; }
.testi-dots .dot.active { background: #0C112E; transform: scale(1.3); }

/* Cards equal height */
.grid-3 .card, .grid-4 .card, .grid-2 .card { display: flex; flex-direction: column; }
.grid-3 .card p, .grid-4 .card p, .grid-2 .card p { flex: 1; }

.page-header { background: linear-gradient(135deg, #0C112E 0%, #16204d 100%); color: #fff; padding: 72px 24px; text-align: center; }
.page-header h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; }
.page-header p { font-size: 16px; opacity: 0.8; max-width: 600px; margin: 12px auto 0; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 36px; }
    .hero .container { gap: 40px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 76px; left: 12px; right: 12px; background: #fff; flex-direction: column; padding: 16px; border-radius: 12px; gap: 4px; z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,0.15); max-height: calc(100vh - 92px); overflow-y: auto; }
    .nav-links.open { display: flex; }
    .hamburger { display: block; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { display: block; padding: 12px 14px; border-radius: 8px; font-size: 15px; }
    .nav-links > li > a.nav-cta { text-align: center; margin-top: 8px; }
    .nav-item { width: 100%; }
    .nav-item > a { padding: 12px 14px; border-radius: 8px; justify-content: space-between; font-size: 15px; }
    .nav-item > a:hover { background: #f8fafc; }
    .dropdown { position: static; box-shadow: none; border: none; padding: 0; margin: 2px 0 0 16px; display: none; background: #f8fafc; border-radius: 8px; }
    .dropdown.open { display: block; }
    .dropdown a { padding: 10px 14px; font-size: 14px; }
    .hero { padding: 64px 24px; }
    .hero .container { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 30px; }
    .hero-img-box { display: none; }
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid-5 { grid-template-columns: 1fr 1fr; }
    .grid-2, .feature-split, .contact-info { grid-template-columns: 1fr; }
    .feature-split > img, .feature-split .feature-img { height: 280px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item img { height: 160px; }
    section { padding: 64px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-grid a { font-size: 14px; }
    .footer-logo img { margin: 0 auto 12px; }
    .page-header { padding: 48px 24px; }
    .page-header h1 { font-size: 30px; }
    .section-title h2 { font-size: 28px; }
    .section-title { margin-bottom: 36px; }
    .cta-section { padding: 56px 24px; }
    .cta-section h2 { font-size: 28px; }
    .card { padding: 24px 20px; }
    .nav-cta { text-align: center; }
    .hero-btns .btn { text-align: center; }
    .cookie-inner { justify-content: center; text-align: center; }
    .contact-card { padding: 24px 20px; }
    .gallery-grid img { height: 180px; }
}
@media (max-width: 480px) {
    .grid-3, .grid-4, .grid-5, .grid-2 { grid-template-columns: 1fr; }
    .flip-card { height: 260px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 200px; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-grid a { font-size: 14px; }
    .footer-logo img { margin: 0 auto 12px; }
    .section-title h2 { font-size: 26px; }
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 15px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .cookie-bar { padding: 12px 16px; }
    .cookie-btn { width: 100%; }
    .nav-links { top: 68px; left: 8px; right: 8px; }
    .img-accordion { flex-direction: column; height: auto; }
    .img-accordion .acc-item { height: 140px; }
    .img-accordion .acc-label { opacity: 1; }
}
