@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A67C2E;
  --navy: #1B2A4A;
  --navy-light: #2C3E6B;
  --navy-dark: #0F1A30;
  --bg: #FAFAF7;
  --bg-card: #FFFFFF;
  --bg-section: #F4F1EC;
  --text: #1A1A2E;
  --text-light: #5A5A7A;
  --text-muted: #8A8AA0;
  --border: #E8E4DD;
  --shadow: 0 4px 24px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 48px rgba(27,42,74,0.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15, 26, 48, 0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.site-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(201,168,76,0.4), var(--gold), transparent);
  opacity: 0.6;
}
.site-header.scrolled {
  background: rgba(15, 26, 48, 0.99);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: #fff; display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 2;
}
.logo i {
  color: var(--gold); font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}
.logo span {
  background: linear-gradient(135deg, #fff 30%, var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── NAVIGATION ─── */
.main-nav ul { list-style: none; display: flex; gap: 2px; }
.main-nav .sub-menu { flex-direction: column; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.75); border-radius: 8px;
  transition: all 0.3s ease; position: relative;
  letter-spacing: 0.2px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}
.main-nav > ul > li > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--gold);
}

/* ─── DROPDOWNS ─── */
.main-nav .dropdown { position: relative; }
.main-nav .dropdown > a::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.6rem; margin-left: 5px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0.4; display: inline-block;
}
.main-nav .dropdown:hover > a::after {
  transform: rotate(180deg); opacity: 1; color: var(--gold);
}
.main-nav .dropdown:hover > a { color: var(--gold-light); }

/* ── Dropdown Panel ── */
.main-nav .sub-menu {
  position: absolute; top: calc(100% + 12px); left: -12px; min-width: 290px;
  background: linear-gradient(180deg, rgba(18,30,55,0.99) 0%, rgba(12,20,40,0.99) 100%);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(201,168,76,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  padding: 10px 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-12px);
  transform-origin: top center;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: 100;
}
/* Top gold accent bar */
.main-nav .sub-menu::after {
  content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  border-radius: 0 0 4px 4px; opacity: 0.5;
}
/* Hover bridge */
.main-nav .sub-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.main-nav .dropdown:hover > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}

/* ── Dropdown Items ── */
.main-nav .sub-menu li { position: relative; }
.main-nav .sub-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; font-size: 0.84rem; font-weight: 450;
  color: rgba(255,255,255,0.6); border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; letter-spacing: 0.1px;
}
/* Gold dot indicator */
.main-nav .sub-menu li a::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.main-nav .sub-menu li a:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  color: #fff;
  padding-left: 22px;
}
.main-nav .sub-menu li a:hover::before {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
  width: 5px; height: 5px;
}

/* Staggered entrance animation */
.main-nav .dropdown:hover > .sub-menu > li { animation: dropItemIn 0.35s ease both; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(1) { animation-delay: 0.03s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(2) { animation-delay: 0.06s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(3) { animation-delay: 0.09s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(4) { animation-delay: 0.12s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(5) { animation-delay: 0.15s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(6) { animation-delay: 0.18s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(7) { animation-delay: 0.21s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(8) { animation-delay: 0.24s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(9) { animation-delay: 0.27s; }
.main-nav .dropdown:hover > .sub-menu > li:nth-child(10) { animation-delay: 0.30s; }
@keyframes dropItemIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── NESTED SUB-MENUS (Level 3) ─── */
.main-nav .sub-menu .dropdown { position: relative; }
.main-nav .sub-menu .dropdown > a::after {
  content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 14px;
  font-size: 0.55rem; opacity: 0.3;
  transition: all 0.3s ease;
}
.main-nav .sub-menu .dropdown:hover > a::after {
  opacity: 1; color: var(--gold); transform: translateX(3px);
}
.main-nav .sub-menu .dropdown > .sub-menu {
  top: -10px; left: calc(100% + 6px);
  border-radius: 14px;
}
/* Nested sub-menu pointer triangle */
.main-nav .sub-menu .dropdown > .sub-menu::before {
  content: ''; position: absolute; top: 16px; left: -6px;
  width: 12px; height: 12px;
  background: rgba(18,30,55,0.99);
  border-left: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transform: rotate(45deg);
  z-index: -1;
}

/* ─── HEADER CTA BUTTONS ─── */
.header-cta { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; font-size: 0.88rem; font-weight: 600;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.3s ease; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45); color: #fff;
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

/* ─── MOBILE TOGGLE ─── */
.mobile-toggle {
  display: none; background: none; border: none;
  font-size: 1.3rem; color: rgba(255,255,255,0.85);
  cursor: pointer; padding: 8px; position: relative;
  width: 44px; height: 44px; border-radius: 10px;
  transition: all 0.3s ease;
  align-items: center; justify-content: center;
}
.mobile-toggle:hover { background: rgba(201,168,76,0.1); color: var(--gold-light); }

/* ─── SUBMENU TOGGLE BUTTONS (mobile only) ─── */
.submenu-toggle {
  display: none; /* hidden on desktop */
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; padding: 8px 12px;
  transition: all 0.3s ease;
}
.submenu-toggle:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0a0f1e 0%, var(--navy-dark) 30%, var(--navy) 60%, #1a2d5a 100%);
  padding: 120px 0 40px; min-height: 90vh;
  display: flex; align-items: center; flex-direction: column; justify-content: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 15%, rgba(201,168,76,0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(44,62,107,0.4) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.08);
  animation: hero-ring-spin 30s linear infinite;
  pointer-events: none;
}
@keyframes hero-ring-spin { to { transform: rotate(360deg); } }

/* Floating shapes */
.hero-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.08);
}
.hero-shape-1 {
  width: 300px; height: 300px; top: 10%; right: 5%;
  animation: hero-float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 180px; height: 180px; bottom: 20%; left: 5%;
  animation: hero-float 6s ease-in-out infinite 1s;
}
.hero-shape-3 {
  width: 100px; height: 100px; top: 40%; right: 30%;
  animation: hero-float 10s ease-in-out infinite 2s;
  border-radius: 30%;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(5deg); }
}

/* Grid background */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Hero layout */
.hero-layout {
  position: relative; z-index: 2; display: flex;
  align-items: center; gap: 48px; flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 0; max-width: 720px; }

/* Trust badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-light); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 0.9rem; }

/* Hero heading */
.hero h1 {
  color: #fff; margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #f0d78c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-subtitle {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  margin-bottom: 28px; line-height: 1.8; max-width: 600px;
}

/* Service tags */
.hero-services-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 500;
  transition: var(--transition);
}
.hero-tag:hover {
  background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3);
  color: var(--gold-light);
}
.hero-tag i { color: var(--gold-light); font-size: 0.72rem; }

/* Hero buttons */
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-size: 0.9rem; font-weight: 600;
  border-radius: 50px; border: 2px solid rgba(255,255,255,0.2);
  color: #fff; background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.btn-hero-outline:hover {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}
.btn-hero-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-size: 0.9rem; font-weight: 600;
  border-radius: 50px; border: none;
  color: #fff; background: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.btn-hero-whatsapp:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* Hero image */
.hero-image-wrapper {
  position: relative; flex-shrink: 0;
  width: 420px; max-width: 100%;
  animation: hero-img-float 6s ease-in-out infinite;
}
.hero-image {
  width: 100%; height: auto; display: block;
  border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
.hero-image-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 30px; z-index: -1;
  filter: blur(30px);
}
@keyframes hero-img-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scrolling ticker */
.hero-ticker {
  position: relative; z-index: 2; width: 100%;
  margin-top: 48px; padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
  max-width: 100vw;
}
.hero-ticker-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.hero-ticker-track span {
  color: rgba(255,255,255,0.35); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SERVICE CARDS ─── */
.services-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge {
  display: inline-block; padding: 6px 20px;
  background: rgba(201,168,76,0.1); color: var(--gold-dark);
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-header p { color: var(--text-light); max-width: 600px; margin: 12px auto 0; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold-dark); margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: 0.85rem;
  color: var(--gold-dark);
}
.service-card .card-link:hover { gap: 10px; }

/* ─── ABOUT / INFO SECTION ─── */
.about-section { padding: 80px 0; background: var(--bg-section); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; color: var(--text);
}
.feature-list li i { color: var(--gold); margin-top: 4px; }

/* ─── HOW WE WORK ─── */
.process-section { padding: 80px 0; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; counter-reset: step; }
.process-step {
  text-align: center; padding: 32px 20px;
  position: relative; counter-increment: step;
}
.process-step::before {
  content: counter(step); display: block;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-light); }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

.contact-channels {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px; position: relative;
}
.contact-channel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 0.9rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.contact-channel:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold-light); }
.contact-channel i { font-size: 1.1rem; }

/* ─── SAMPLE GALLERY ─── */
.sample-gallery h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; }
.sample-gallery h3 i { color: var(--gold); margin-right: 8px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  background: #f8f6f3;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  cursor: zoom-in;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ─── BLOG CARDS ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.blog-card-image {
  height: 220px; overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-content {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.blog-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; margin-bottom: 12px;
  color: var(--primary-dark); line-height: 1.4;
}
.blog-card-content p {
  font-size: 0.9rem; color: #666; line-height: 1.6;
  flex: 1; margin-bottom: 16px;
}
.blog-read-more {
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-read-more { color: var(--primary-dark); gap: 10px; }
.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article h2 { font-family: 'Playfair Display', serif; margin-top: 32px; margin-bottom: 16px; color: var(--primary-dark); }
.blog-article p { line-height: 1.8; margin-bottom: 16px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); word-break: break-word; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo span { background: linear-gradient(135deg, #fff, var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 24px 0; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold-light); }

/* ─── COUNTRY LINKS GRID ─── */
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin: 32px 0; }
.country-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition); font-weight: 500; font-size: 0.9rem;
  word-break: break-word;
}
.country-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--gold-dark); }
.country-card i { color: var(--gold); flex-shrink: 0; }

/* ─── DISCLAIMER ─── */
.disclaimer {
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm); padding: 16px; font-size: 0.8rem;
  color: var(--text-light); margin: 24px 0;
}

/* ─── ORDER FORM ─── */
.order-form .conditional-fields { display: none; }
.order-form .conditional-fields.active { display: block; }

/* Order Contact Bar */
.order-contact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.order-contact-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}
.order-contact-item a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.order-contact-item i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.order-contact-item span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
}
.order-contact-item strong {
  font-size: 0.92rem;
  color: var(--navy);
  display: block;
  margin-top: 2px;
}

/* Order Form Wrapper */
.order-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.order-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-bottom: 3px solid var(--gold);
}
.order-form-header i {
  font-size: 1.6rem;
  color: var(--gold);
}
.order-form-header h2 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
}
.order-form-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin: 4px 0 0;
}

/* Form inside wrapper */
.order-form-wrapper form {
  padding: 32px;
}

/* Form Row (two columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Required field indicator */
.req {
  color: #e74c3c;
  font-weight: 700;
}

/* Form note */
.form-note {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
}
.form-note i {
  color: var(--gold);
  margin-right: 6px;
}

/* Trust Bar */
.order-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.trust-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.trust-item i {
  font-size: 1.2rem;
  color: var(--gold);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 400px;
}
.toast-notification.toast-show {
  transform: translateX(0);
}
.toast-notification.toast-success {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}
.toast-notification.toast-error {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}
.toast-notification.toast-loading {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

/* Dynamic fields animation */
#serviceFields .form-group {
  animation: fieldFadeIn 0.35s ease forwards;
}
@keyframes fieldFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive order form */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .order-contact-bar { grid-template-columns: 1fr; }
  .order-trust-bar { grid-template-columns: 1fr 1fr; }
  .order-form-wrapper form { padding: 20px; }
  .order-form-header { padding: 18px 20px; }
  .order-form-header h2 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .order-trust-bar { grid-template-columns: 1fr; }
  .toast-notification { right: 12px; left: 12px; max-width: none; }
}

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── FAQ SECTION (GEO) ─── */
.faq-grid { max-width:850px; margin:0 auto; display:flex; flex-direction:column; gap:16px; }
.faq-item {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-item summary {
  padding:20px 24px; font-weight:600; font-size:1rem; color:var(--navy);
  cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between;
  transition: var(--transition); font-family:'Playfair Display',serif;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:'\f107'; font-family:'Font Awesome 6 Free'; font-weight:900;
  font-size:0.8rem; color:var(--gold); transition:transform 0.3s ease;
  width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(201,168,76,0.08); flex-shrink:0;
}
.faq-item[open] summary::after { transform:rotate(180deg); }
.faq-item summary:hover { background:rgba(201,168,76,0.03); }
.faq-answer { padding:0 24px 20px; }
.faq-answer p { color:var(--text-light); line-height:1.8; font-size:0.95rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .main-nav.active {
    display: block; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(15, 26, 48, 0.99);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-height: 80vh; overflow-y: auto;
    padding: 12px 20px 24px;
    animation: menuSlideDown 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  @keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .main-nav.active ul { flex-direction: column; gap: 0; }
  .main-nav.active > ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .main-nav.active > ul > li:last-child { border-bottom: none; }

  /* Dropdown items: link + toggle button side by side */
  .main-nav.active .dropdown {
    display: flex; flex-wrap: wrap; align-items: center;
  }
  .main-nav.active .dropdown > a {
    flex: 1; min-width: 0;
    padding: 14px 12px; font-size: 0.95rem; color: rgba(255,255,255,0.85);
    border-radius: 0;
  }
  .main-nav.active > ul > li > a {
    padding: 14px 12px; font-size: 0.95rem; color: rgba(255,255,255,0.85);
    border-radius: 0;
  }
  .main-nav.active > ul > li > a:hover,
  .main-nav.active .dropdown.open > a {
    color: var(--gold-light); background: rgba(201,168,76,0.04);
  }

  /* Show the JS-injected toggle buttons on mobile */
  .main-nav.active .submenu-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    border-left: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
  }
  .main-nav.active .submenu-toggle:hover {
    color: var(--gold); background: rgba(201,168,76,0.06);
  }
  .main-nav.active .dropdown.open > .submenu-toggle {
    color: var(--gold);
  }
  .main-nav.active .dropdown.open > .submenu-toggle i {
    transform: rotate(180deg);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .main-nav.active .submenu-toggle i {
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }

  /* Hide the CSS-generated ::after chevrons on mobile (JS buttons replace them) */
  .main-nav.active .dropdown > a::after { display: none; }
  .main-nav.active .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 4px 0 8px 0;
    display: none; background: rgba(201,168,76,0.02);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-radius: 0; min-width: auto; pointer-events: auto;
    border-left: 2px solid rgba(201,168,76,0.25);
    margin-left: 16px;
    width: 100%; /* full width below link row */
  }
  .main-nav.active .sub-menu::before,
  .main-nav.active .sub-menu::after { display: none; }
  .main-nav.active .dropdown.open > .sub-menu {
    display: block;
    animation: subMenuFade 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  @keyframes subMenuFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .main-nav.active .sub-menu li a {
    padding: 9px 14px; font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
  }
  .main-nav.active .sub-menu li a::before {
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.12);
  }
  .main-nav.active .sub-menu li a:hover {
    color: var(--gold-light); background: rgba(201,168,76,0.06);
    padding-left: 18px;
  }
  .main-nav.active .sub-menu li a:hover::before {
    background: var(--gold);
    box-shadow: 0 0 6px rgba(201,168,76,0.4);
    width: 4px; height: 4px;
  }
  .main-nav.active .sub-menu .dropdown > a::after {
    position: static; margin-left: auto;
  }
  .main-nav.active .sub-menu .dropdown > .sub-menu {
    top: auto; left: auto;
    margin-left: 10px;
    border-left-color: rgba(201,168,76,0.15);
  }
  .main-nav.active .sub-menu .dropdown > .sub-menu::before { display: none; }
  .main-nav.active::-webkit-scrollbar { width: 3px; }
  .main-nav.active::-webkit-scrollbar-track { background: transparent; }
  .main-nav.active::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.2));
    border-radius: 4px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .page-content .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-layout { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-services-tags { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrapper { width: 340px; margin: 0 auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-shape-1 { width: 200px; height: 200px; }
  .hero-shape-2 { width: 120px; height: 120px; }
  .page-hero { padding: 110px 0 40px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .contact-form { padding: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-channels { flex-direction: column; align-items: center; }
}
@media (max-width: 640px) {
  .hero { padding: 90px 0 20px; min-height: auto; }
  .hero h1 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn, .hero-buttons .btn-hero-outline, .hero-buttons .btn-hero-whatsapp { width: 100%; justify-content: center; }
  .header-cta .btn-outline { display: none; }
  .country-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-image-wrapper { width: 280px; }
  .hero-shape { display: none; }
  .hero-ticker { margin-top: 32px; }
  .page-hero { padding: 90px 0 32px; }
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero h1 i { display: none; }
  .breadcrumb { font-size: 0.75rem; padding: 6px 14px; flex-wrap: wrap; justify-content: center; }
  .page-content { padding: 40px 0; }
  .services-section { padding: 48px 0; }
  .process-section { padding: 48px 0; }
  .cta-section { padding: 48px 0; }
  .about-section { padding: 48px 0; }
  .contact-form { padding: 20px; }
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
  .container { padding: 0 16px; }
}

/* ─── PAGE HERO (Inner Pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-dark) 100%);
  padding: 120px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  margin-bottom: 0;
  word-break: break-word;
}
.page-hero h1 i {
  color: var(--gold);
  margin-right: 12px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.breadcrumb a {
  color: var(--gold-light);
  font-weight: 500;
}
.breadcrumb a:hover { color: #fff; }

/* ─── PAGE CONTENT (Inner Pages) ─── */
.page-content {
  padding: 64px 0;
}
.page-content .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.page-content .about-content h2 {
  margin-bottom: 20px;
}
.page-content .about-content h3 {
  margin-bottom: 12px;
  margin-top: 24px;
}
.page-content .about-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
  word-break: break-word;
}
.page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content ol li {
  padding: 6px 0;
  color: var(--text-light);
}

/* ─── CONTACT FORM (Inner Pages) ─── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 100%;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  max-width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input[type="file"] {
  padding: 10px;
  cursor: pointer;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ─── WHATSAPP FLOATING BUTTON (Left Center) ─── */
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes wa-slide-in {
  0% { opacity:0; transform: translateX(-60px) translateY(-50%); }
  100% { opacity:1; transform: translateX(0) translateY(-50%); }
}
@keyframes wa-bounce {
  0%,100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.12); }
}
.whatsapp-float {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  animation: wa-slide-in 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards,
             wa-pulse 2.5s infinite 1.5s;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: 2px solid rgba(255,255,255,0.25);
}
.whatsapp-float:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 4px 16px rgba(0,0,0,0.2);
  animation: wa-bounce 0.5s ease;
  transform: translateY(-50%) scale(1.1);
}
.whatsapp-float::after {
  content: 'Chat with us\A+1 914 274 8666';
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: #075E54;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: pre;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #075E54;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.whatsapp-float:hover::before {
  opacity: 1;
}
.whatsapp-float i {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
  .whatsapp-float {
    left: 14px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .whatsapp-float::after,
  .whatsapp-float::before { display: none; }
}
