/* ============================================================
   DRAFT N DRAG INTERIORS — Main Stylesheet
   Color palette: Navy #0d2137 | Gold #c9a96e | White #fff
============================================================ */

/* ── Variables & Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green:      #0d2137;
  --green-dark: #071422;
  --green-mid:  #1a3a5c;
  --gold:       #c9a96e;
  --gold-light: #dfc48a;
  --white:      #ffffff;
  --off:        #f5f7fa;
  --light:      #eef1f6;
  --dark:       #1a1a1a;
  --mid:        #444444;
  --muted:      #888888;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --trans:      all .3s ease;
  --font-body:  'Poppins', sans-serif;
  --font-head:  'Playfair Display', serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── Utilities ── */
.container    { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad  { padding: 100px 0; }
.bg-light     { background: var(--off); }

.gold         { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--green); margin: 10px 0 14px; }
.section-header p  { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-header.light h2, .section-header.light p { color: var(--white); }

.section-label {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 2px solid var(--gold); padding-bottom: 4px; margin-bottom: 8px;
}
.section-label.light { color: var(--gold-light); border-color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; transition: var(--trans);
  cursor: pointer; border: 2px solid transparent;
}
.btn-gold   { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: #c4904e; border-color: #c4904e; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,165,116,.4); }
.btn-ghost  { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: var(--white); color: var(--green); transform: translateY(-2px); }
.btn-dark   { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-dark:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,33,55,.35); }
.btn-wa     { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-wa:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }
.fw         { width: 100%; justify-content: center; }
.mt-30      { margin-top: 30px; }

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; color: var(--white); }
.preloader-logo {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 700;
  color: var(--gold); margin-bottom: 8px; letter-spacing: 4px;
}
.preloader-content p { font-size: .9rem; letter-spacing: 2px; text-transform: uppercase; opacity: .8; margin-bottom: 20px; }
.preloader-track  { width: 180px; height: 3px; background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.preloader-bar    { height: 100%; background: var(--gold); border-radius: 2px; animation: loadBar 1.6s ease-in-out forwards; }
@keyframes loadBar { from { width: 0 } to { width: 100% } }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: height .3s ease;
}
.navbar.scrolled .nav-inner { height: 64px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 52px; height: 52px; object-fit: contain; border-radius: 50%;
  flex-shrink: 0; transition: transform .3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.logo:hover .logo-img { transform: rotate(-5deg) scale(1.05); }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 700; font-size: 1.25rem; color: var(--white); transition: color .3s; }
.logo-sub  { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.navbar.scrolled .logo-name { color: var(--green); }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 6px 12px; border-radius: 6px;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.9); transition: var(--trans);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s ease;
  border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link:hover { color: var(--green); }

.nav-cta-link {
  background: var(--gold); color: var(--dark) !important;
  padding: 8px 18px; border-radius: var(--radius); font-weight: 600;
  margin-left: 6px;
}
.nav-cta-link::after { display: none; }
.nav-cta-link:hover { background: #c4904e; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.navbar.scrolled .hamburger span { background: var(--green); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-swiper { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-swiper .swiper-slide {
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.hero-swiper .swiper-slide-active { transform: scale(1.06); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,33,55,.88) 0%, rgba(13,33,55,.68) 60%, rgba(0,0,0,.45) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 20px; max-width: 780px;
  animation: heroFadeIn .9s ease-out;
}
@keyframes heroFadeIn { from { opacity:0; transform: translateY(24px) } to { opacity:1; transform: translateY(0) } }

.hero-badge {
  display: inline-block; font-size: .8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  border: 1px solid rgba(212,165,116,.5); padding: 8px 18px; border-radius: 30px;
}
.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white); line-height: 1.2; margin-bottom: 20px;
  font-weight: 700;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.9); margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats bar */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(13,33,55,.92); backdrop-filter: blur(10px);
  display: flex; justify-content: center; align-items: center; gap: 0;
  padding: 0;
}
.hstat {
  flex: 1; text-align: center; padding: 18px 10px;
  max-width: 200px;
}
.hstat strong {
  display: block; font-size: 2rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hstat sup { font-size: 1rem; color: var(--gold); vertical-align: super; }
.hstat span { display: block; font-size: .75rem; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hstat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: 1px;
  animation: bounceHint 2s ease-in-out infinite;
}
@keyframes bounceHint { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.6); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot   { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollAnim 1.5s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:.3;transform:translateY(8px)} }

/* ============================================================
   ABOUT
============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-imgs { position: relative; }
.about-img-big { border-radius: var(--radius); overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); }
.about-img-small {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: var(--radius); overflow: hidden;
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
}
.experience-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--gold); color: var(--dark);
  padding: 18px 22px; border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow);
}
.experience-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.experience-badge span   { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-text { padding-bottom: 30px; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); color: var(--green); margin: 10px 0 18px; line-height: 1.25; }
.about-lead { font-size: 1.05rem; color: var(--mid); margin-bottom: 16px; line-height: 1.8; }
.about-text > p { color: var(--muted); line-height: 1.8; margin-bottom: 30px; }

.about-feats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.about-feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(13,33,55,.08); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.about-feat h4 { font-size: .95rem; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.about-feat p  { font-size: .88rem; color: var(--muted); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.svc-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.svc-img { height: 200px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; transition: transform .5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.08); }

.svc-body { padding: 26px; }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(13,33,55,.08); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.svc-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.svc-body p  { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--gold);
  transition: var(--trans);
}
.svc-link:hover { gap: 10px; color: var(--green); }

/* ============================================================
   PORTFOLIO
============================================================ */
.port-filters {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.pf-btn {
  padding: 9px 22px; border-radius: 30px;
  border: 2px solid rgba(13,33,55,.3); color: var(--green);
  font-size: .85rem; font-weight: 600; transition: var(--trans); background: transparent;
}
.pf-btn.active, .pf-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }

.port-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 50px;
}
.port-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  height: 280px; cursor: pointer;
  box-shadow: var(--shadow); transition: var(--trans);
}
.port-item.hidden { display: none; }
.port-item img { transition: transform .5s ease; }
.port-item:hover img { transform: scale(1.1); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,.9) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px; opacity: 0; transition: var(--trans);
}
.port-item:hover .port-overlay { opacity: 1; }
.port-info h3 { color: var(--white); font-size: 1rem; font-weight: 600; }
.port-info p  { color: rgba(255,255,255,.8); font-size: .8rem; }
.port-overlay > i { color: var(--gold); font-size: 1.2rem; align-self: flex-start; }

.port-cta { text-align: center; }
.port-cta p { color: var(--muted); margin-bottom: 16px; }

/* ============================================================
   PROCESS
============================================================ */
.process-track {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.proc-step {
  flex: 1; min-width: 200px; max-width: 260px; text-align: center; padding: 0 16px;
}
.proc-icon {
  position: relative; width: 80px; height: 80px; margin: 0 auto 20px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem; box-shadow: 0 8px 24px rgba(13,33,55,.35);
}
.proc-num {
  position: absolute; top: -8px; right: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.proc-step h3   { font-size: 1.1rem; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.proc-step p    { font-size: .87rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.proc-tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 4px 12px; border-radius: 20px;
}

.proc-arrow {
  align-self: center; padding: 0 8px; color: var(--gold); font-size: 1.4rem;
  flex-shrink: 0; margin-top: -40px;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
  background: var(--off); border-radius: var(--radius);
  padding: 36px 26px; text-align: center;
  border-bottom: 3px solid transparent; transition: var(--trans);
  box-shadow: var(--shadow);
}
.why-card:hover { border-bottom-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--green); margin-bottom: 12px; }
.why-card p  { font-size: .87rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-swiper-wrap { position: relative; padding: 0 50px; }
.testi-swiper      { overflow: hidden; }

.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow); position: relative;
  transition: var(--trans); border-top: 4px solid var(--gold); min-height: 280px;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testi-quote { font-size: 2rem; color: var(--gold); opacity: .5; margin-bottom: 16px; display: block; }
.testi-card > p {
  font-size: .95rem; color: var(--mid); line-height: 1.8; margin-bottom: 28px;
  font-style: italic;
}
.testi-footer { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}
.testi-footer strong { display: block; font-size: .95rem; color: var(--green); font-weight: 600; }
.testi-footer span   { font-size: .8rem; color: var(--muted); }
.stars { margin-top: 4px; color: #ffc107; font-size: .85rem; }

/* Swiper navigation overrides */
.testi-swiper .swiper-button-prev, .testi-swiper .swiper-button-next {
  color: var(--green); width: 40px; height: 40px;
  background: var(--white); border-radius: 50%; box-shadow: var(--shadow);
}
.testi-swiper .swiper-button-prev { left: 0; }
.testi-swiper .swiper-button-next { right: 0; }
.testi-swiper .swiper-button-prev::after, .testi-swiper .swiper-button-next::after { font-size: .9rem; font-weight: 700; }
.testi-swiper .swiper-pagination-bullet-active { background: var(--green); }
.testi-swiper .swiper-pagination { bottom: -36px; }

/* ============================================================
   FAQ
============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--off); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-item.open { box-shadow: var(--shadow-lg); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; transition: var(--trans);
  font-size: .98rem; font-weight: 600; color: var(--green);
}
.faq-q:hover { background: rgba(13,33,55,.05); }
.faq-item.open .faq-q { color: var(--gold); }

.faq-ico { font-size: .9rem; color: var(--gold); transition: transform .3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-ico { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: .9rem; color: var(--muted); line-height: 1.8; }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.contact .section-header h2,
.contact .section-header p { color: var(--white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}

/* Form */
.cform-wrap {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 40px;
  border: 1px solid rgba(255,255,255,.15);
}
.cform-wrap h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 28px; display: flex; gap: 10px; align-items: center; }
.cform-wrap h3 i { color: var(--gold); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.fg label span { color: var(--gold); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: .92rem; transition: var(--trans);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.45); }
.fg select option { background: var(--green); color: var(--white); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.15);
}
.fg textarea { resize: vertical; min-height: 100px; }

.form-divider { text-align: center; position: relative; margin: 16px 0; }
.form-divider::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:rgba(255,255,255,.2); }
.form-divider span { position: relative; background: transparent; color: rgba(255,255,255,.6); font-size: .8rem; padding: 0 12px; }

.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; gap: 12px; }
.form-success i { font-size: 3rem; color: var(--gold); }
.form-success h4 { font-size: 1.4rem; color: var(--white); }
.form-success p  { color: rgba(255,255,255,.8); margin-bottom: 12px; }

/* Info */
.cinfo { color: var(--white); }
.cinfo h3 { font-size: 1.3rem; margin-bottom: 24px; display: flex; gap: 10px; align-items: center; }
.cinfo h3 i { color: var(--gold); }

.cinfo-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 12px; transition: var(--trans);
}
.cinfo-card:hover { background: rgba(255,255,255,.14); }

.ci-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(212,165,116,.2); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ci-icon.wa { background: rgba(37,211,102,.2); color: #25d366; }

.ci-text label { display: block; font-size: .75rem; color: rgba(255,255,255,.6); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.ci-text a, .ci-text p { font-size: .92rem; color: rgba(255,255,255,.9); line-height: 1.6; }
.ci-text a:hover { color: var(--gold); }

.follow-wrap { margin: 24px 0; }
.follow-wrap h4 { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }
.follow-links { display: flex; gap: 12px; }
.fl {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); transition: var(--trans);
}
.fl:hover { transform: translateY(-3px); }
.fl.insta:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.fl.wa:hover    { background: #25d366; border-color: #25d366; }
.fl.phone:hover { background: var(--gold); border-color: var(--gold); }

.map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 6px; }
.map-static {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.map-pin { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 12px; }
.map-static p { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--green-dark); color: rgba(255,255,255,.8); }
.footer-main { padding: 70px 0 40px; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 50px; }

.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-img {
  width: 56px; height: 56px; object-fit: contain; border-radius: 50%; flex-shrink: 0;
  background: var(--white); padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.fbrand { display: block; font-weight: 700; font-size: 1.2rem; color: var(--white); line-height: 1.1; }
.fsub   { display: block; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.brand-col p { font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,.8); transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.fcol h4 { font-size: .9rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.fcol ul li { margin-bottom: 10px; }
.fcol ul a { font-size: .88rem; color: rgba(255,255,255,.7); transition: var(--trans); display: flex; align-items: center; gap: 6px; }
.fcol ul a i { font-size: .7rem; color: var(--gold); }
.fcol ul a:hover { color: var(--gold); padding-left: 4px; }

.fcontact-list { display: flex; flex-direction: column; gap: 14px; }
.fci { display: flex; gap: 10px; align-items: flex-start; }
.fci i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: .95rem; }
.fci a, .fci span { font-size: .87rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.fci a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center;
}
.footer-bottom p   { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-areas { font-size: .78rem; margin-top: 6px; }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--trans); animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); background: #1da851; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white);
  font-size: .82rem; padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.wa-tooltip::after {
  content:''; position:absolute; right:-6px; top:50%; transform:translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark); border-right-width:0;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.5)} 50%{box-shadow:0 6px 32px rgba(37,211,102,.8)} }

/* BACK TO TOP */
.back-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: var(--trans);
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.show { opacity: 1; pointer-events: all; }
.lb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); cursor: pointer; }
.lb-box { position: relative; max-width: 90vw; max-height: 88vh; z-index: 1; }
.lb-box img { max-width: 90vw; max-height: 80vh; border-radius: 8px; object-fit: contain; display: block; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.15);
  color: var(--white); border: none; border-radius: 50%;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans); font-size: 1rem; backdrop-filter: blur(4px);
}
.lb-close { top: -54px; right: 0; }
.lb-prev  { left: -60px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: -60px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--dark); }
.lb-caption { position: absolute; bottom: -44px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .85rem; }

/* ============================================================
   HOME TOURS
============================================================ */
.tours { background: var(--green); }
.tours .section-header.light h2 { color: var(--white); }
.tours .section-header.light p  { color: rgba(255,255,255,.72); }

.tours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 50px;
}

.tour-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); overflow: hidden; transition: var(--trans);
}
.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

.tour-video-wrap {
  width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden;
}
.tour-video-wrap video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.tour-info { padding: 18px 22px; }
.tour-info h3 {
  font-size: .95rem; font-weight: 600; color: var(--white);
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.tour-info h3 i { color: var(--gold); }
.tour-info p  { font-size: .83rem; color: rgba(255,255,255,.6); }

.tours-cta { text-align: center; padding-top: 10px; }
.tours-cta p { color: rgba(255,255,255,.72); margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 992px)
============================================================ */
@media (max-width: 992px) {
  .section-pad { padding: 70px 0; }

  .about-layout { grid-template-columns: 1fr; gap: 50px; }
  .about-imgs { max-width: 500px; margin: 0 auto; }
  .about-img-small { width: 160px; height: 160px; right: -10px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .port-grid     { grid-template-columns: repeat(2, 1fr); }
  .tours-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }

  .process-track { gap: 10px; }
  .proc-arrow    { display: none; }
  .proc-step     { min-width: 160px; }

  .lb-prev { left: -48px; }
  .lb-next { right: -48px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
    background: var(--green-dark); flex-direction: column; justify-content: center;
    gap: 6px; padding: 80px 30px 40px; transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: rgba(255,255,255,.9) !important; padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .nav-link::after { left: 16px; right: 16px; }
  .nav-cta-link { background: var(--gold) !important; color: var(--dark) !important; text-align: center; margin-top: 10px; }

  .hero-content h1  { font-size: clamp(2rem,7vw,3rem); }
  .hero-content p   { font-size: 1rem; }
  .hero-stats-bar   { gap: 0; }
  .hstat            { padding: 14px 4px; }
  .hstat strong     { font-size: 1.5rem; }
  .hstat span       { font-size: .65rem; }
  .scroll-hint      { display: none; }

  .about-imgs { display: none; }
  .about-text { padding-bottom: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .port-grid     { grid-template-columns: 1fr 1fr; }
  .tours-grid    { grid-template-columns: 1fr; }

  .footer-grid   { grid-template-columns: 1fr; gap: 30px; }

  .form-row { grid-template-columns: 1fr; }

  .cform-wrap { padding: 28px 20px; }
  .cinfo { padding: 0; }

  .testi-swiper-wrap { padding: 0 10px; }
  .testi-swiper .swiper-button-prev,
  .testi-swiper .swiper-button-next { display: none; }

  .lb-prev, .lb-next { width: 36px; height: 36px; font-size: .85rem; }
  .lb-prev { left: -2px; }
  .lb-next { right: -2px; }
  .lb-close { top: -46px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .port-grid { grid-template-columns: 1fr; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hstat { min-width: 45%; }
  .hstat-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
}
