@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3A5C;
  --cream: #F8F4ED;
  --cream-dark: #EDE7D9;
  --white: #FFFFFF;
  --text-dark: #0A1628;
  --text-muted: #6B7B8E;
  --text-light: #A8B8C8;
  --green-italy: #009246;
  --red-italy: #CE2B37;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 20px 60px rgba(10,22,40,0.15);
  --shadow-gold: 0 10px 40px rgba(201,168,76,0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}
.topbar-item:hover { color: var(--gold); }
.topbar-item span.icon { font-size: 15px; }
.topbar-notice {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 41px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  top: 0;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.logo-text { color: var(--white); }
.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-text span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 11px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-links li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
/* topbar ~41px + navbar 80px = 121px total offset */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.6) 50%,
    rgba(10,22,40,0.75) 100%
  );
  z-index: 1;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title strong {
  font-weight: 600;
  display: block;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 2px;
  animation: fadeInRight 1s ease 0.8s both;
}
.hero-stat {
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 20px 28px;
  text-align: center;
}
.hero-stat:first-child { border-radius: 12px 0 0 12px; }
.hero-stat:last-child { border-radius: 0 12px 12px 0; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── NOTICE BANNER ─── */
.notice-banner {
  background: linear-gradient(90deg, var(--navy), var(--navy-mid));
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 20px 40px;
}
.notice-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.notice-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
}
.notice-content p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}
.notice-content strong { color: var(--gold-light); }

/* ─── SECTION BASE ─── */
section { padding: 100px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services { background: var(--cream); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.services-intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
}
.services-cta-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(10,22,40,0.08);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10,22,40,0.12);
  border-color: var(--border);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  transform: rotate(-5deg) scale(1.05);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}
.service-card:hover .learn-more { gap: 10px; }

/* ─── WHY US ─── */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us .section-title { color: var(--white); }
.why-us .section-label { color: var(--gold); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-left .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.1);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s;
}
.why-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateX(8px);
}
.why-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-item-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.why-us-right {
  position: relative;
}
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}
.feature-card.accent {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.3);
  grid-column: span 2;
}
.feature-card .fc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.feature-card .fc-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-card .fc-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ─── VISA TYPES ─── */
.visa-types { background: var(--cream-dark); }
.visa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.visa-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.4s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.visa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(10,22,40,0.12);
}
.visa-card-top {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.visa-card-top::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  border-radius: 50%;
}
.visa-card-emoji { font-size: 36px; }
.visa-card-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.visa-card-body { padding: 24px; }
.visa-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.visa-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── HOW IT WORKS ─── */
.how-it-works { background: var(--white); }
.steps-wrapper {
  display: flex;
  gap: 0;
  margin-top: 70px;
  position: relative;
}
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50px + 60px / 2);
  right: calc(50px + 60px / 2);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── BLOG ─── */
.blog { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.4s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10,22,40,0.1);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.6));
}
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-light);
}
.blog-meta .sep { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }

/* ─── WHATSAPP COMMUNITY ─── */
.community { background: var(--navy); }
.community .section-title { color: var(--white); }
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community-left .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.wa-groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-group-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.wa-group-link:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
  transform: translateX(8px);
}
.wa-group-link .wa-icon {
  width: 40px;
  height: 40px;
  background: #25D166;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wa-group-link .arrow { margin-left: auto; opacity: 0.5; transition: all 0.3s; }
.wa-group-link:hover .arrow { opacity: 1; transform: translateX(4px); }
.community-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.community-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.community-stat .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.community-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── CONTACT ─── */
.contact { background: var(--cream-dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 10px; }
.contact-info .section-subtitle { margin-bottom: 40px; }
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.contact-method:hover {
  border-color: var(--border);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.08);
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-method-text .label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-method-text .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 20px 60px rgba(10,22,40,0.08);
}
.contact-form-wrapper h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-flag { display: flex; align-items: center; gap: 8px; }
.italy-flag {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  width: 30px;
  height: 20px;
}
.italy-flag span { flex: 1; display: block; }
.italy-flag .g { background: #009246; }
.italy-flag .w { background: #fff; }
.italy-flag .r { background: #CE2B37; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D166;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,209,102,0.4);
  transition: all 0.3s;
  animation: waFloat 3s ease infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,209,102,0.55);
}
@keyframes waFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .visa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .services-header { grid-template-columns: 1fr; gap: 30px; }
  .services-cta-side { align-items: flex-start; }
  .why-us-inner { grid-template-columns: 1fr; gap: 50px; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .steps-wrapper { flex-direction: column; gap: 30px; }
  .steps-wrapper::before { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .community-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { position: static; margin-top: 40px; display: flex; flex-wrap: wrap; }
  .hero-stat:first-child, .hero-stat:last-child { border-radius: 0; }
  .hero-stats .hero-stat:first-child { border-radius: 12px 0 0 12px; }
  .hero-stats .hero-stat:last-child { border-radius: 0 12px 12px 0; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; }
  .navbar-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 42px; }
  .visa-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 50px 0 40px; }
  .contact-form-wrapper { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .visa-grid { grid-template-columns: 1fr; }
  .community-right { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.mobile-nav-close {
  font-size: 28px;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
}
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-links a {
  display: block;
  padding: 18px 0;
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 40px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
}
