/* ===== CAPLINES — MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #0d2045;
  --navy-light: #1a3460;
  --blue: #1B9DD9;       /* Cap color — sky blue */
  --blue-light: #0d87c4; /* darker sky blue */
  --orange: #D41C21;     /* Lines color — brand red */
  --orange-dark: #b81419;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --green-wa: #25d366;
  --green-wa-dark: #1ebe5c;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* SECTION */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title, .section-header.light .section-sub { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.section-tag { display: inline-block; background: rgba(30,79,160,.1); color: var(--blue); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--blue-light); }
.section-sub { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.35); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* LOADER */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-img { height: 60px; width: auto; margin: 0 auto 24px; filter: brightness(0) invert(1); }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.15); border-radius: 100px; overflow: hidden; margin: 0 auto; }
.loader-fill { height: 100%; width: 0; background: var(--orange); border-radius: 100px; animation: loaderFill 1.8s ease forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
.navbar.scrolled, .navbar.navbar-solid { background: var(--navy); box-shadow: var(--shadow-md); padding: 14px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.navbar.scrolled .nav-logo img, .navbar.navbar-solid .nav-logo img { filter: none; }
.logo-cap { color: var(--white); }
.logo-lines { color: var(--orange); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: var(--transition); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta { background: var(--orange); color: var(--white); font-size: .9rem; font-weight: 600; padding: 10px 20px; border-radius: 8px; transition: var(--transition); }
.nav-cta:hover, .nav-cta.active { background: var(--orange-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero_bg.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(13,32,69,.85) 60%, rgba(30,79,160,.7) 100%); }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding-top: 100px; padding-bottom: 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px; backdrop-filter: blur(8px); animation: fadeInDown .8s ease both; }
.hero-badge i { color: var(--orange); }
.hero-title { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; animation: fadeInUp .8s ease .15s both; }
.hero-gradient { background: linear-gradient(135deg, #60a5fa, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 560px; animation: fadeInUp .8s ease .25s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; animation: fadeInUp .8s ease .35s both; }
.hero-stats { display: flex; align-items: center; gap: 0; animation: fadeInUp .8s ease .45s both; flex-wrap: wrap; gap: 8px; }
.hero-stat { text-align: center; padding: 16px 28px; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.hero-stat .stat-num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat .stat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.hero-stat-divider { display: none; }
.hero-scroll { display: none; }

/* SERVICES */
.services-section { background: var(--gray-100); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); transform: translateY(0); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img-wrap { position: relative; height: 200px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img { transform: scale(1.06); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.6) 0%, transparent 50%); }
.service-body { padding: 28px; }
.service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; margin-bottom: 16px; margin-top: -50px; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(30,79,160,.4); }
.service-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-body p { color: var(--gray-600); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.service-link { color: var(--blue-light); font-size: .88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; color: var(--orange); }

/* DESTINATIONS */
.destinations-section { background: var(--navy); }
.destinations-section .section-title span { color: #60a5fa; }
.map-container { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.world-map { width: 100%; height: auto; }
.continent { fill: rgba(255,255,255,.08); stroke: rgba(255,255,255,.2); stroke-width: .5; }
.route-line { stroke: var(--orange); stroke-width: 2; fill: none; }
.animate-route { stroke-dasharray: 8 4; animation: dashMove 3s linear infinite; }
.animate-route-2 { stroke-dasharray: 8 4; animation: dashMove 2.5s linear infinite .5s; }
.animate-route-3 { stroke-dasharray: 8 4; animation: dashMove 2s linear infinite 1s; }
@keyframes dashMove { to { stroke-dashoffset: -60; } }
.city-dot { fill: var(--orange); }
.city-dot.pulse { animation: dotPulse 2s ease-in-out infinite; }
.city-dot.pulse-2 { animation: dotPulse 2s ease-in-out infinite .5s; }
.city-dot.pulse-3 { animation: dotPulse 2s ease-in-out infinite 1s; }
@keyframes dotPulse { 0%,100%{r:6;opacity:1} 50%{r:10;opacity:.5} }
.city-label { fill: rgba(255,255,255,.8); font-size: 11px; font-family: var(--font); }
.destinations-list { display: flex; flex-direction: column; gap: 12px; }
.dest-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: var(--transition); }
.dest-item:hover, .dest-item.active { background: rgba(249,115,22,.15); border-color: var(--orange); }
.dest-icon { width: 36px; height: 36px; background: rgba(249,115,22,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: .9rem; flex-shrink: 0; }
.dest-item strong { display: block; color: var(--white); font-size: .88rem; font-weight: 600; }
.dest-item span { color: rgba(255,255,255,.5); font-size: .78rem; }

/* WHY US */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { padding: 36px 28px; border-radius: var(--radius-lg); background: var(--gray-100); border: 1px solid var(--gray-200); transition: var(--transition); text-align: center; }
.why-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .why-icon { background: var(--orange); color: var(--white); }
.why-icon { width: 64px; height: 64px; background: rgba(30,79,160,.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.4rem; margin: 0 auto 20px; transition: var(--transition); }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; transition: var(--transition); }
.why-card p { color: var(--gray-600); font-size: .88rem; line-height: 1.6; transition: var(--transition); }

/* STATS */
.stats-section { position: relative; padding: 80px 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%); }
.stats-bg::before { content:''; position:absolute; inset:0; background: 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='0.03'%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"); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index: 1; }
.stat-block { text-align: center; padding: 40px 20px; }
.stat-icon { width: 56px; height: 56px; background: rgba(249,115,22,.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.4rem; margin: 0 auto 20px; }
.stat-number { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-text { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

/* BLOG */
.blog-section { background: var(--gray-100); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.blog-img-wrap { position: relative; overflow: hidden; }
.blog-card:not(.featured) .blog-img-wrap { height: 200px; }
.blog-card.featured .blog-img-wrap { height: 320px; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-tag { position: absolute; top: 16px; left: 16px; background: var(--orange); color: var(--white); font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; }
.blog-body { padding: 28px; display: flex; flex-direction: column; }
.blog-date { color: var(--gray-400); font-size: .8rem; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.blog-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card.featured .blog-body h3 { font-size: 1.3rem; }
.blog-body p { color: var(--gray-600); font-size: .88rem; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.blog-link { color: var(--blue-light); font-size: .88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); margin-top: auto; }
.blog-link:hover { gap: 10px; color: var(--orange); }

/* CONTACT STRIP */
.contact-strip { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); padding: 72px 0; }
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-strip-text h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.contact-strip-text p { color: rgba(255,255,255,.85); font-size: 1rem; }
.contact-strip-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-strip .btn-primary { background: var(--white); color: var(--orange); }
.contact-strip .btn-primary:hover { background: var(--gray-100); }
.contact-strip .btn-whatsapp { background: var(--navy); border: 2px solid rgba(255,255,255,.3); }

/* FOOTER */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; display: flex; align-items: center; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 12px; }
.footer-contact li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-contact li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: .82rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* WHATSAPP STICKY */
.whatsapp-sticky { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: var(--green-wa); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(37,211,102,.5); transition: var(--transition); }
.whatsapp-sticky:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.6); }
.wa-tooltip { position: absolute; right: 68px; background: var(--navy); color: var(--white); font-size: .8rem; font-weight: 500; padding: 6px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-sticky:hover .wa-tooltip { opacity: 1; }

/* ANIMATIONS */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .map-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 4px; overflow-y: auto; z-index: 9998; }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 14px 16px; font-size: 1.05rem; border-radius: 8px; display: block; }
  .nav-cta { display: block; width: 100%; padding: 14px 16px; font-size: 1rem; border-radius: 8px; text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; z-index: 9999; }
  .hero-scroll { display: none; }
  .hero-content { padding-top: 120px; padding-bottom: 40px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-stat { padding: 10px 12px; min-width: 0; }
  .hero-stat .stat-num { font-size: 1.4rem; }
  .hero-stat .stat-label { font-size: .65rem; }
  .blog-card.featured { grid-column: unset; display: block; }
  .blog-card.featured .blog-img-wrap { height: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-strip-inner { flex-direction: column; text-align: center; }
  .contact-strip-text h2 { font-size: 1.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }
}
