
/* ========= RESET & BASE ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --royal: #1D4ED8;
  --royal-dark: #1e3a8a;
  --royal-light: #3b82f6;
  --orange: #F97316;
  --orange-light: #fb923c;
  --white: #ffffff;
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(29, 78, 216, 0.12);
  --shadow-sm: 0 4px 20px rgba(29, 78, 216, 0.08);
  --shadow-md: 0 10px 40px rgba(29, 78, 216, 0.12);
  --shadow-lg: 0 20px 60px rgba(29, 78, 216, 0.18);
  --radius: 24px;
  --radius-lg: 32px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
.container { width: 92%; max-width: 1240px; margin: 0 auto; }
section { padding: 100px 0; position: relative; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(249,115,22,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(249,115,22,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--royal);
  border: 2px solid var(--royal);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: var(--royal); color: var(--white); transform: translateY(-3px); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }

/* ========= SECTION HEADINGS ========= */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(29,78,216,0.1), rgba(249,115,22,0.1));
  color: var(--royal); font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag i { color: var(--orange); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 18px; }
.section-title span { background: linear-gradient(135deg, var(--royal), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { color: var(--muted); font-size: 17px; max-width: 680px; margin: 0 auto 50px; }
.text-center { text-align: center; }

/* ========= FLOATING BACKGROUND ========= */
.bg-blobs {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--royal-light); top: -100px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--orange); top: 40%; right: -150px; animation-delay: -6s; }
.blob-3 { width: 450px; height: 450px; background: var(--royal); bottom: -100px; left: 30%; animation-delay: -12s; opacity: 0.2; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,-40px) scale(1.08); }
  66% { transform: translate(-40px,50px) scale(0.95); }
}

/* ========= NAVBAR ========= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--royal);
}
.logo-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--royal), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  box-shadow: 0 8px 20px rgba(29,78,216,0.35);
}
.logo-text small { display: block; font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 2px; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu a {
  padding: 10px 16px; border-radius: 12px; font-weight: 600; font-size: 15px;
  color: var(--text); transition: all 0.3s;
}
.nav-menu a:hover { color: var(--royal); background: rgba(29,78,216,0.08); }
.nav-cta { margin-left: 10px; padding: 12px 24px !important; font-size: 14px !important; }
.menu-toggle { display: none; background: transparent; font-size: 24px; color: var(--royal); }

/* ========= HERO ========= */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(29,78,216,0.08);
  color: var(--royal); font-weight: 700; font-size: 13px;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--royal) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 32px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--royal); }
.hero-stat .lbl { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Hero visual */
.hero-visual { position: relative; height: 560px; }
.hero-main-img {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 85%; aspect-ratio: 4/5; border-radius: 40px;
  background-image: url('https://i.pinimg.com/1200x/2a/b8/ef/2ab8efe33df72c7858617dde6a723ff1.jpg');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translate(-50%,-50%) translateY(0);} 50%{transform:translate(-50%,-50%) translateY(-15px);} }
.float-card {
  position: absolute; padding: 16px 20px; border-radius: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card i {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.float-card .title { font-weight: 800; font-size: 14px; color: var(--text); }
.float-card .sub { font-size: 12px; color: var(--muted); }
.fc-1 { top: 10%; left: -5%; animation-delay: -1s; }
.fc-1 i { background: linear-gradient(135deg, var(--royal), var(--royal-light)); }
.fc-2 { bottom: 20%; right: -5%; animation-delay: -3s; }
.fc-2 i { background: linear-gradient(135deg, var(--orange), #ea580c); }
.fc-3 { top: 55%; left: -10%; animation-delay: -2s; }
.fc-3 i { background: linear-gradient(135deg, #22c55e, #16a34a); }

/* ========= ABOUT ========= */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background-image: url('https://i.pinimg.com/1200x/e0/55/04/e055049ff33c6dc67b3ca13cfb5b5461.jpg');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(29,78,216,0.4) 100%);
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.value-card {
  padding: 22px; border-radius: 20px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.35s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--royal); }
.value-card i {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--royal), var(--orange));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.value-card h4 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--muted); }

/* ========= MILESTONES ========= */
.milestones {
  background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 50%, var(--royal-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.milestones::before {
  content:''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.milestones .section-title { color: white; }
.milestones .section-title span { color: var(--orange-light); -webkit-text-fill-color: var(--orange-light); }
.milestones .section-subtitle { color: rgba(255,255,255,0.8); }
.milestones .section-tag { background: rgba(255,255,255,0.15); color: white; }
.milestones .section-tag i { color: var(--orange-light); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.metric {
  padding: 36px 24px; border-radius: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  transition: all 0.4s;
}
.metric:hover { transform: translateY(-8px); background: rgba(255,255,255,0.18); }
.metric i { font-size: 36px; color: var(--orange-light); margin-bottom: 14px; }
.metric .count { font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 800; display: block; margin-bottom: 6px; }
.metric .label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ========= WHY CHOOSE US ========= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  padding: 36px 28px; border-radius: 24px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(29,78,216,0.1), rgba(249,115,22,0.1));
  color: var(--royal); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  transition: all 0.4s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--royal), var(--orange));
  color: white; transform: rotate(-8deg) scale(1.05);
}
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* ========= WORK PROCESS ========= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 50px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal), var(--orange), transparent);
  opacity: 0.25; z-index: 0;
}
.process-card {
  padding: 30px 22px; border-radius: 24px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  text-align: center; position: relative; z-index: 1;
  transition: all 0.4s;
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--orange));
  color: white; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(29,78,216,0.3);
}
.process-card h4 { font-size: 17px; margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--muted); }

/* ========= PRICING ========= */
.pricing { background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card {
  padding: 40px 30px; border-radius: 28px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-dark) 100%);
  color: white; border: none;
  box-shadow: 0 25px 60px rgba(29,78,216,0.35);
  transform: scale(1.03);
}
.price-card.featured h3, .price-card.featured .price { color: white; }
.price-card.featured .feat { color: rgba(255,255,255,0.85); }
.price-card.featured .feat i { color: var(--orange-light); }
.price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: white;
  padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 800;
  letter-spacing: 1px;
}
.price-card .plan-name { font-size: 14px; color: var(--royal); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.price-card.featured .plan-name { color: var(--orange-light); }
.price-card h3 { font-size: 22px; margin-bottom: 16px; }
.price { font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 800; margin-bottom: 6px; }
.price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.price-card.featured .price small { color: rgba(255,255,255,0.7); }
.feat { list-style: none; margin: 24px 0 30px; }
.feat li { padding: 10px 0; font-size: 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px dashed var(--border); }
.price-card.featured .feat li { border-bottom-color: rgba(255,255,255,0.15); }
.feat li i { color: var(--orange); }
.price-card .btn { width: 100%; justify-content: center; }

/* ========= SERVICES ========= */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  border-radius: 24px; overflow: hidden;
  background: white; box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  position: relative;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-img::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29,78,216,0.7) 100%);
}
.service-card:hover .service-img { transform: scale(1.02); }
.service-body { padding: 24px; }
.service-body h3 { font-size: 18px; margin-bottom: 10px; }
.service-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.service-link { color: var(--royal); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-link:hover { gap: 12px; color: var(--orange); }

/* ========= CTA BANNER ========= */
.cta-banner {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-dark) 100%);
  color: white;
  border-radius: 40px;
  padding: 70px 50px;
  text-align: center;
  position: relative; overflow: hidden;
  margin: 0 4%;
}
.cta-banner::before, .cta-banner::after {
  content:''; position: absolute; border-radius: 50%;
}
.cta-banner::before {
  width: 300px; height: 300px; background: var(--orange); opacity: 0.2;
  top: -100px; left: -80px; filter: blur(40px);
}
.cta-banner::after {
  width: 350px; height: 350px; background: var(--royal-light); opacity: 0.3;
  bottom: -120px; right: -80px; filter: blur(40px);
}
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; position: relative; z-index: 2; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; position: relative; z-index: 2; }
.cta-banner .btn { position: relative; z-index: 2; }

/* ========= FINANCE SECTION ========= */
.finance {
  background: linear-gradient(135deg, #fef3e7 0%, #fff7ed 100%);
  position: relative; overflow: hidden;
}
.finance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.finance-img {
  border-radius: 32px; aspect-ratio: 5/4;
  background-image: url('https://i.pinimg.com/736x/88/db/e9/88dbe96d2265e66637e31ebb126a0d32.jpg');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.finance-list { list-style: none; margin: 24px 0 30px; }
.finance-list li {
  padding: 12px 0; display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px;
}
.finance-list li i {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: white; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px;
}

/* ========= BOOKING FORM ========= */
.booking { background: var(--bg); }
.booking-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px;
  background: white; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.booking-info {
  background: linear-gradient(135deg, var(--royal), var(--royal-dark));
  color: white; padding: 50px 40px;
  position: relative; overflow: hidden;
}
.booking-info::before {
  content:''; position: absolute; bottom: -80px; right: -80px;
  width: 260px; height: 260px; background: var(--orange); opacity: 0.25;
  border-radius: 50%; filter: blur(30px);
}
.booking-info h3 { color: white; font-size: 26px; margin-bottom: 14px; position: relative; }
.booking-info p { color: rgba(255,255,255,0.85); margin-bottom: 30px; position: relative; }
.booking-info ul { list-style: none; position: relative; }
.booking-info li {
  padding: 14px 0; display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.booking-info li i { color: var(--orange-light); font-size: 18px; width: 24px; }
.booking-form { padding: 50px 40px; }
.booking-form h3 { font-size: 24px; margin-bottom: 8px; }
.booking-form > p { color: var(--muted); margin-bottom: 26px; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 14px;
  font-family: inherit; font-size: 15px;
  background: var(--bg); transition: all 0.3s;
}
.form-control:focus { outline: none; border-color: var(--royal); background: white; box-shadow: 0 0 0 4px rgba(29,78,216,0.1); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ========= REVIEWS ========= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  padding: 30px; border-radius: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 56px; color: var(--royal); opacity: 0.1; line-height: 1;
  font-family: serif;
}
.stars { color: #fbbf24; margin-bottom: 14px; font-size: 15px; }
.review-text { color: var(--text); font-size: 15px; margin-bottom: 22px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-img {
  width: 52px; height: 52px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid var(--orange);
}
.reviewer h5 { font-size: 15px; margin-bottom: 2px; }
.reviewer span { font-size: 12px; color: var(--muted); }

/* ========= FAQ ========= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--royal); }
.faq-q {
  width: 100%; padding: 22px 26px;
  background: transparent; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 700; color: var(--text);
  font-family: 'Poppins', sans-serif;
}
.faq-q i { color: var(--orange); transition: transform 0.3s; }
.faq-item.active .faq-q i { transform: rotate(45deg); color: var(--royal); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
  color: var(--muted); font-size: 15px;
}
.faq-item.active .faq-a { max-height: 300px; padding: 0 26px 22px; }

/* ========= CONTACT ========= */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info-card {
  padding: 36px; border-radius: 28px;
  background: linear-gradient(135deg, var(--royal), var(--royal-dark));
  color: white; position: relative; overflow: hidden;
}
.contact-info-card::before {
  content:''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: var(--orange); opacity: 0.3;
  border-radius: 50%; filter: blur(30px);
}
.contact-info-card h3 { color: white; font-size: 24px; margin-bottom: 10px; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,0.85); margin-bottom: 28px; position: relative; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.contact-item:last-child { border: none; }
.contact-item i {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-light); font-size: 18px;
  flex-shrink: 0;
}
.contact-item h5 { color: white; font-size: 14px; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.85); font-size: 14px; }
.contact-item a:hover { color: var(--orange-light); }

.contact-form-card {
  padding: 40px; border-radius: 28px;
  background: white; box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 24px; }

/* ========= NEWSLETTER ========= */
.newsletter {
  background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
  color: white;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content:''; position: absolute; top: -100px; left: -100px;
  width: 300px; height: 300px; background: white; opacity: 0.1; border-radius: 50%;
}
.newsletter::after {
  content:''; position: absolute; bottom: -100px; right: -100px;
  width: 350px; height: 350px; background: var(--royal); opacity: 0.2; border-radius: 50%;
}
.newsletter-wrap { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.newsletter h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.92); margin-bottom: 30px; font-size: 16px; }
.newsletter-form {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 30px; border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.newsletter-form .full { grid-column: span 2; }
.newsletter-form input {
  padding: 14px 18px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  color: white; font-family: inherit; font-size: 15px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.3); }
.newsletter-form .consent {
  display: flex; align-items: flex-start; gap: 10px;
  text-align: left; font-size: 13px; color: rgba(255,255,255,0.9);
}
.newsletter-form input[type="checkbox"] { margin-top: 3px; accent-color: white; }
.newsletter-form button {
  padding: 15px; border-radius: 14px;
  background: white; color: var(--orange);
  font-weight: 800; font-size: 15px;
  transition: all 0.3s;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.newsletter-success {
  display: none; margin-top: 20px; padding: 16px; border-radius: 14px;
  background: rgba(34,197,94,0.25); border: 1px solid rgba(34,197,94,0.5);
  color: white; font-weight: 700;
}
.newsletter-success.show { display: block; animation: slideIn 0.5s ease; }
@keyframes slideIn { from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }

/* ========= FOOTER ========= */
footer {
  background: #0b1437; color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: white; font-size: 16px; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content:''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--royal-light));
}
.footer-about .logo { color: white; margin-bottom: 18px; }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.3s;
}
.footer-socials a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--orange-light); padding-left: 6px; }
.footer-newsletter p { font-size: 14px; margin-bottom: 16px; }
.footer-newsletter .nl-mini {
  display: flex; gap: 8px;
}
.footer-newsletter input {
  flex: 1; padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white; font-family: inherit; font-size: 14px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input:focus { outline: none; border-color: var(--orange); }
.footer-newsletter button {
  padding: 12px 18px; border-radius: 12px;
  background: var(--orange); color: white; font-weight: 700;
  transition: all 0.3s;
}
.footer-newsletter button:hover { background: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--orange-light); }
.footer-legal { display: flex; gap: 20px; }

/* ========= SCROLL REVEAL ========= */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========= SCROLL TOP ========= */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--orange));
  color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(29,78,216,0.4);
  opacity: 0; pointer-events: none;
  transition: all 0.4s; z-index: 999;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px){
  .hero-grid, .about-grid, .finance-grid, .booking-wrap, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 420px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .services-grid, .pricing-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px){
  section { padding: 70px 0; }
  .nav-menu {
    position: fixed; top: 70px; right: -100%;
    flex-direction: column; align-items: stretch;
    background: white; padding: 20px;
    width: 85%; max-width: 320px; height: calc(100vh - 70px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s;
    gap: 4px;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { padding: 14px 18px; }
  .nav-cta { margin-left: 0 !important; text-align: center; justify-content: center; }
  .menu-toggle { display: block; }
  .features-grid, .services-grid, .pricing-grid, .reviews-grid,
  .metrics-grid, .process-grid, .about-values { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .form-row, .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .full { grid-column: span 1; }
  .cta-banner { padding: 50px 28px; border-radius: 28px; }
  .booking-info, .booking-form, .contact-info-card, .contact-form-card { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 130px 0 70px; }
  .hero-visual { height: 380px; }
  .float-card { padding: 12px 14px; }
  .fc-1 { left: 0; }
  .fc-2 { right: 0; }
  .fc-3 { left: 0; }
}
