/* =========================================
   DE GUZMAN INTERNATIONAL VISA CONSULTANCY
   Main Stylesheet
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #FCD832;
  --primary-dark: #e0bf00;
  --secondary: #3E83BC;
  --secondary-dark: #2a6699;
  --secondary-light: #5ba0d9;
  --dark: #0f1b2d;
  --dark-2: #162236;
  --dark-3: #1a2a42;
  --navy: #0a1628;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dce1e8;
  --gray-300: #b0b8c5;
  --gray-500: #6b7a8d;
  --gray-700: #3a4553;
  --accent: #FF6B35;
  --success: #2ecc71;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #f0c800 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--navy) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 30px rgba(252,216,50,0.25);
  --shadow-secondary: 0 8px 30px rgba(62,131,188,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--primary);
  position: relative;
}

/* ---------- Animation Classes ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn:hover::after {
  width: 300px;
  height: 300px;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--dark);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(252,216,50,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img {
  height: 36px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 10px 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  position: relative;
  letter-spacing: 0.3px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link.cta-btn {
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 10px 24px;
  margin-left: 8px;
  box-shadow: var(--shadow-primary);
}
.nav-link.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(252,216,50,0.3);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(96px, 12vh, 140px) 0 clamp(56px, 10vh, 100px);
}
.hero-parallax-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1436491865332-7a61a109db05?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.1);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(15, 27, 45, 0.85) 40%,
    rgba(62, 131, 188, 0.7) 100%
  );
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}
.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--secondary);
  bottom: 10%;
  left: -80px;
  animation: floatShape 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--primary);
  top: 40%;
  right: 15%;
  animation: floatShape 18s ease-in-out infinite 2s;
}
.shape-4 {
  width: 80px;
  height: 80px;
  background: var(--white);
  top: 20%;
  left: 20%;
  animation: floatShape 12s ease-in-out infinite 1s;
}
.shape-5 {
  width: 200px;
  height: 200px;
  border: 2px solid rgba(252, 216, 50, 0.15);
  bottom: 20%;
  right: 10%;
  animation: floatShape 22s ease-in-out infinite 3s;
}
.shape-6 {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(62, 131, 188, 0.15);
  top: 60%;
  left: 8%;
  animation: floatShape 16s ease-in-out infinite 4s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -40px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, 35px) rotate(4deg); }
}

/* Plane Path */
.plane-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.plane-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flight-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawPath 4s ease forwards 1s;
}
@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}
.plane-icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0;
  animation: flyPlane 4s ease forwards 1s;
  offset-path: path("M-50,350 Q300,50 720,200 T1490,80");
  offset-rotate: auto;
}
@keyframes flyPlane {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vh, 24px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  width: fit-content;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(252, 216, 50, 0.12);
  border: 1px solid rgba(252, 216, 50, 0.25);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  display: inline;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(16px, 3vh, 30px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator a {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(14px); opacity: 0.3; }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: 100px 0 80px;
  background: var(--off-white);
  position: relative;
}
.section-shape-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.section-shape-top svg {
  width: 100%;
  height: 80px;
}
.about .section-shape-top svg path {
  fill: var(--off-white);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(252, 216, 50, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-line {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 0 auto;
}
.section-subtitle {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrapper:hover img {
  transform: scale(1.05);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-primary);
  text-align: center;
  z-index: 2;
}
.exp-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.exp-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-image {
  position: relative;
}

.about-content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.35;
}
.about-content p {
  margin-bottom: 16px;
  color: var(--gray-500);
  font-size: 1rem;
}
.about-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(62, 131, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
}
.about-feature span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  padding: 130px 0 120px;
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative floating background shapes */
.services-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.services-shape {
  position: absolute;
  border-radius: 50%;
}
.services-shape-1 {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(252,216,50,0.15) 0%, transparent 70%);
  animation: floatShape1 14s ease-in-out infinite;
}
.services-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(62,131,188,0.12) 0%, transparent 70%);
  animation: floatShape2 18s ease-in-out infinite;
}
.services-shape-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 15%;
  background: radial-gradient(circle, rgba(252,216,50,0.08) 0%, transparent 70%);
  animation: floatShape3 20s ease-in-out infinite;
}
@keyframes floatShape1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
}
@keyframes floatShape2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -25px) scale(1.08); }
}
@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-15px, 10px) scale(0.95); }
  66% { transform: translate(10px, -15px) scale(1.05); }
}

.services .container {
  position: relative;
  z-index: 1;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(15, 27, 45, 0.12), 0 8px 16px rgba(62, 131, 188, 0.08);
  border-color: rgba(62, 131, 188, 0.2);
}
.service-card:focus-visible {
  outline: 3px solid rgba(252,216,50,0.45);
  outline-offset: 4px;
}

/* Card Image */
.service-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 27, 45, 0.5) 100%);
  transition: opacity 0.4s ease;
}
.service-card:hover .service-card-img-overlay {
  opacity: 0.7;
}

/* Icon Badge — positioned on the card, not inside the img container */
.service-icon-badge {
  position: absolute;
  top: 178px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(62, 131, 188, 0.35);
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.service-card:hover .service-icon-badge {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 6px 20px rgba(62, 131, 188, 0.45);
}

/* Card Body */
.service-card-body {
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.service-card:hover h4 {
  color: var(--secondary);
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* Card Link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-card-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-link {
  color: var(--secondary-dark);
  gap: 12px;
}
.service-card:hover .service-card-link i {
  transform: translateX(3px);
}

/* Staggered card entrance animation */
.service-card.visible {
  animation: cardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   SERVICES MARQUEE
   ========================================== */
.services-marquee {
  padding: 24px 0;
  background: var(--gradient-dark);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  overflow: hidden;
  position: relative;
}
.marquee-content {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 40px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.marquee-content span i {
  color: var(--primary);
  font-size: 1.1rem;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose {
  padding: 100px 0;
  background: var(--white);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
  margin-top: 20px;
}
.why-choose-copy p {
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 14px;
}
.why-choose-copy p:last-child {
  margin-bottom: 26px;
}
.why-choose-right {
  position: relative;
  align-self: start;
}
.why-choose-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-choose-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.why-choose-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.3px);
  opacity: 0.9;
  animation: whyFloat 10s ease-in-out infinite;
}
.why-choose-float.float-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(252,216,50,0.4) 0%, rgba(252,216,50,0) 70%);
  top: -30px;
  right: -20px;
  animation-duration: 12s;
}
.why-choose-float.float-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(62,131,188,0.35) 0%, rgba(62,131,188,0) 70%);
  bottom: -40px;
  left: -30px;
  animation-duration: 14s;
  animation-delay: 1.5s;
}
.why-choose-float.float-3 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255,107,53,0.35) 0%, rgba(255,107,53,0) 70%);
  bottom: 20%;
  right: -20px;
  animation-duration: 9s;
  animation-delay: 0.6s;
}
@keyframes whyFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(12px); }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(62, 131, 188, 0.1), rgba(252, 216, 50, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-card-icon {
  background: var(--gradient-secondary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.feature-card-number {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  transition: var(--transition);
}
.feature-card:hover .feature-card-number {
  color: rgba(252, 216, 50, 0.12);
}

/* ==========================================
   PARALLAX BANNER
   ========================================== */
.parallax-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -140px;
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover no-repeat;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(62,131,188,0.85) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
}
.parallax-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.parallax-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto 32px;
}

/* ==========================================
   REVIEWS / TESTIMONIALS (Google Reviews)
   ========================================== */
.reviews {
  padding: 100px 0;
  background: var(--off-white);
}

/* Google Reviews Header */
.google-reviews-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 30px;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--gray-100);
  border-bottom: none;
}
.google-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.google-brand strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-rating-number {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark);
}
.google-stars {
  display: flex;
  gap: 2px;
  color: #FBBC05;
  font-size: 0.9rem;
}
.google-review-count {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.btn-google {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--white);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-google:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-google svg {
  flex-shrink: 0;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  padding: 10px 0;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review Card */
.review-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 10px 12px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  min-width: calc(33.333% - 24px);
  flex-shrink: 0;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}

/* Google Reviews Footer */
.google-reviews-footer {
  text-align: center;
  padding: 20px 30px;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--gray-100);
  border-top: none;
}
.google-reviews-footer a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.google-reviews-footer a:hover {
  color: var(--secondary-dark);
}

/* Review time ago */
.review-time {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-bottom: 14px;
}

/* Loading state */
.reviews-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.reviews-loading i {
  font-size: 2rem;
  color: var(--gray-300);
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
  display: block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.review-author strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
}
.review-author span {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Reviews Controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.review-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}
.review-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.reviews-dots {
  display: flex;
  gap: 8px;
}
.reviews-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.reviews-dots .dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  color: var(--white);
}
.contact .section-shape-top svg path {
  fill: var(--off-white);
}
.contact .section-tag {
  background: rgba(252, 216, 50, 0.15);
  color: var(--primary);
}
.contact .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.contact-info-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(8px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(252, 216, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-card h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.contact-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.contact-highlights {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-highlights h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.contact-highlights ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.contact-highlights li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.contact-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option {
  background: var(--dark);
  color: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252, 216, 50, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn-primary {
  margin-top: 8px;
  padding: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
}
.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.footer-wave svg {
  width: 100%;
  height: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  height: 40px;
  margin-bottom: 0;
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero { padding: clamp(90px, 14vh, 130px) 0 clamp(48px, 9vh, 90px); }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-card { min-width: calc(50% - 24px); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-menu.active { right: 0; }
  .nav-link { width: 100%; padding: 14px 20px; }
  .nav-link.cta-btn { margin-left: 0; margin-top: 16px; text-align: center; justify-content: center; }

  .hero { height: 100vh; min-height: 100svh; padding: 96px 0 56px; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .hero-subtitle { max-width: 520px; }
  .hero-btns { gap: 12px; }
  .hero-stats { gap: 18px 28px; }
  .stat-divider { height: 36px; }
  .stat-number { font-size: clamp(2rem, 7vw, 2.3rem); }
  .stat-plus { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 180px; }
  .service-icon-badge { top: 158px; }

  .features-grid { grid-template-columns: 1fr; }
  .review-card { min-width: calc(100% - 24px); }
  .google-reviews-header { flex-direction: column; text-align: center; }
  .google-reviews-header .btn-google { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero { padding: 92px 0 48px; }
  .hero-content { gap: 14px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 50px; height: 1px; }
  .hero-scroll-indicator { display: none; }
}

/* ==========================================
   PRIVACY PAGE STYLES
   ========================================== */
.privacy-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}
.privacy-page .navbar {
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(20px);
}
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-content h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.privacy-content .last-updated {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-100);
}
.privacy-content h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
}
.privacy-content p,
.privacy-content li {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.privacy-content ul {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 20px;
}
.privacy-content li {
  margin-bottom: 8px;
}
