/* =============================================
   HOMEPROUSA — MAIN STYLESHEET
   ============================================= */

:root {
  --primary: #FF6B35;
  --primary-dark: #e85520;
  --secondary: #1B4FFF;
  --secondary-dark: #0e35cc;
  --accent: #FFD200;
  --dark: #0D1B2A;
  --dark2: #1a2d40;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --white: #ffffff;
  --light-bg: #f8f9fc;
  --light-bg2: #f0f4ff;
  --border: #e0e8f0;
  --success: #00C851;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
@keyframes slideDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { transform:scale(1); box-shadow:0 0 0 0 rgba(255,107,53,0.4); } 50% { transform:scale(1.03); box-shadow:0 0 0 12px rgba(255,107,53,0); } }
@keyframes scrollBounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(8px); } }
@keyframes heroBgFade { 0% { opacity:0; } 20% { opacity:1; } 80% { opacity:1; } 100% { opacity:0; } }
@keyframes floatBadge { 0%,100% { transform:translateY(0) rotate(-3deg); } 50% { transform:translateY(-8px) rotate(-3deg); } }
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes countUp { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.animate-in > * { animation: fadeInUp 0.8s ease both; }
.animate-in > *:nth-child(1) { animation-delay: 0.1s; }
.animate-in > *:nth-child(2) { animation-delay: 0.2s; }
.animate-in > *:nth-child(3) { animation-delay: 0.3s; }
.animate-in > *:nth-child(4) { animation-delay: 0.4s; }
.animate-in > *:nth-child(5) { animation-delay: 0.5s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  animation: slideDown 0.3s ease;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; color: var(--white);
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.logo-usa { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.92rem;
  padding: 8px 14px; border-radius: 8px; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:2px; left:50%; right:50%;
  height:2px; background:var(--primary); border-radius:2px;
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { left:14px; right:14px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white) !important; font-weight: 700; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
  white-space: nowrap; letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.5); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: heroZoom 8s ease infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-bg-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.6) 50%, rgba(27,79,255,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,210,0,0.15); border: 1px solid rgba(255,210,0,0.4);
  color: var(--accent); padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--accent); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent), #ff5ee8);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease infinite;
}
.hero p {
  color: rgba(255,255,255,0.88); font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 620px; margin: 0 auto 36px; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white); font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,107,53,0.55); }
.pulse-btn { animation: pulse 2.5s ease infinite; }
.btn-outline {
  background: transparent;
  color: var(--white); font-weight: 600;
  padding: 15px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  padding: 24px 40px; flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 28px; }
.stat span { font-size: 2rem; font-weight: 800; color: var(--white); font-family: 'Playfair Display', serif; }
.stat p { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; margin: 0; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg); animation: scrollBounce 1.5s ease infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 18px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 500;
  padding: 10px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--primary); font-size: 1rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(27,79,255,0.1));
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--primary); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900;
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow);
  transition: var(--transition); position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(145deg, var(--white), #fff6f2);
}
.service-card.featured::before { opacity: 1; }
.featured-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white); margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 18px; }
.service-list { margin-bottom: 24px; }
.service-list li {
  display: flex; align-items: center; gap: 9px;
  color: var(--text); font-size: 0.88rem; padding: 5px 0;
}
.service-list li i { color: var(--success); font-size: 0.75rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 700; font-size: 0.9rem;
}
.service-link:hover { gap: 12px; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-main img { width:100%; height:100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 5px solid var(--white);
  aspect-ratio: 1;
}
.about-img-secondary img { width:100%; height:100%; object-fit: cover; }
.exp-badge {
  position: absolute; top: 24px; left: -24px;
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white); padding: 16px 24px; border-radius: 16px;
  text-align: center; box-shadow: 0 10px 30px rgba(255,107,53,0.4);
  animation: floatBadge 3s ease infinite;
}
.exp-num { display: block; font-size: 2.2rem; font-weight: 900; font-family: 'Playfair Display', serif; }

.about-content { padding-right: 20px; }
.about-lead { font-size: 1.1rem; color: var(--text); font-weight: 500; margin-bottom: 16px; }
.about-content > p { color: var(--text-light); margin-bottom: 32px; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item > i {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(27,79,255,0.08));
  color: var(--primary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.value-item strong { display: block; color: var(--dark); font-size: 1rem; margin-bottom: 4px; }
.value-item p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  position: relative; overflow: hidden;
}
.process::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27,79,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.1) 0%, transparent 60%);
}
.section-header.light h2 { color: var(--white); }
.highlight-light {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header.light p { color: rgba(255,255,255,0.65); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; z-index: 1;
}
.process-step {
  flex: 1; text-align: center; padding: 0 24px;
}
.step-number {
  font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: -10px;
}
.step-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  box-shadow: 0 10px 30px rgba(255,107,53,0.35);
  position: relative; z-index: 1;
}
.process-step h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.process-connector {
  color: rgba(255,255,255,0.2); font-size: 1.5rem;
  align-self: center; padding-bottom: 20px; padding-top: 20px;
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--light-bg); }
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: var(--white); color: var(--text-light);
  border: 2px solid var(--border); padding: 9px 22px;
  border-radius: 50px; font-weight: 600; font-size: 0.88rem; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white); border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item.large { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92), rgba(13,27,42,0.3), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 14px; }
.gallery-btn {
  display: inline-block;
  background: var(--primary); color: var(--white);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
}
.gallery-item.hidden { display: none; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex; gap: 28px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-card {
  min-width: calc(33.333% - 19px);
  background: var(--light-bg); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.stars { color: var(--accent); font-size: 0.95rem; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card > p { color: var(--text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.reviewer strong { display: block; font-weight: 700; color: var(--dark); }
.reviewer span { color: var(--text-light); font-size: 0.83rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.slider-btn:hover { background: var(--primary-dark); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0; position: relative; overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2d7a 50%, #0d1b2a 100%);
  background-size: 200% 200%;
  animation: gradientFlow 6s ease infinite;
}
.cta-bg::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.2) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  color: var(--white); margin-bottom: 16px;
}
.cta-content > p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.btn-white {
  background: var(--white); color: var(--primary);
  font-weight: 800; font-size: 1.05rem;
  padding: 18px 40px; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,255,255,0.3); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4); font-weight: 600;
  padding: 16px 36px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.cta-features { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-features span { color: rgba(255,255,255,0.75); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.cta-features i { color: var(--success); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px; }
.footer-logo span:not(.logo-icon):not(.logo-usa) { color: var(--white); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }
.footer-links-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; }
.footer-links-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 5px 0; display: block; }
.footer-links-col ul li a:hover { color: var(--primary); padding-left: 6px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list li i { color: var(--primary); margin-top: 3px; min-width: 14px; font-size: 0.9rem; }
.contact-list li span, .contact-list li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.contact-list li a:hover { color: var(--primary); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
  padding: 5px 10px; font-size: 0.76rem; display: flex; align-items: center; gap: 5px;
}
.badge i { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { color: rgba(255,255,255,0.45); font-size: 0.84rem; }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.84rem; }
.footer-legal a:hover { color: var(--primary); }
.footer-legal span { color: rgba(255,255,255,0.2); }

/* ===== INNER PAGES COMMON ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 160px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.15) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--white); font-weight: 900;
  margin-bottom: 12px; position: relative;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 16px; position: relative; }
.breadcrumb a, .breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.3); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 48px; box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--dark); font-size: 0.88rem; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 2px solid var(--border); font-family: 'Poppins', sans-serif; font-size: 0.92rem;
  color: var(--text); background: var(--light-bg);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white); font-weight: 700; font-size: 1rem;
  padding: 16px; width: 100%; border: none; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(255,107,53,0.35); transition: var(--transition);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,0.45); }

.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-info-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.info-item strong { display: block; font-size: 0.85rem; color: var(--dark); margin-bottom: 2px; }
.info-item span, .info-item a { color: var(--text-light); font-size: 0.88rem; }
.info-item a:hover { color: var(--primary); }

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none; background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #b8dacd; border-radius: 10px; padding: 18px 24px;
  color: #155724; font-weight: 600; text-align: center; margin-bottom: 24px;
  align-items: center; gap: 10px;
}
.success-msg.show { display: flex; }

/* ===== LEGAL PAGES ===== */
.legal-content { padding: 80px 0; }
.legal-content .container { max-width: 860px; }
.legal-block { margin-bottom: 44px; }
.legal-block h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--dark);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--light-bg2);
}
.legal-block p { color: var(--text); font-size: 0.95rem; line-height: 1.9; margin-bottom: 12px; }
.legal-block ul { padding-left: 20px; }
.legal-block ul li { color: var(--text); font-size: 0.95rem; line-height: 1.9; list-style: disc; padding: 3px 0; }
.legal-meta {
  background: var(--light-bg); border-radius: var(--radius); padding: 24px 32px;
  margin-bottom: 48px; border-left: 4px solid var(--primary);
}
.legal-meta p { color: var(--text-light); font-size: 0.88rem; }
.legal-meta strong { color: var(--dark); }

/* ===== PARTNERS PAGE ===== */
.partners-section { padding: 80px 0; }
.partners-intro { max-width: 700px; margin-bottom: 60px; }
.partners-intro h2 { font-family:'Playfair Display',serif; font-size:2rem; font-weight:900; color:var(--dark); margin-bottom:12px; }
.partners-intro p { color: var(--text-light); }

.partner-category { margin-bottom: 56px; }
.partner-category-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 2px solid var(--border);
}
.cat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white);
}
.partner-category-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.partner-count {
  background: var(--light-bg2); color: var(--secondary);
  border-radius: 50px; padding: 3px 12px; font-size: 0.8rem; font-weight: 700;
}
.partners-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.partner-name {
  padding: 10px 16px; font-size: 0.875rem; color: var(--text);
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.partner-name::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); display: inline-block; flex-shrink: 0;
}
.partner-name:hover { background: var(--light-bg); }

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  background: linear-gradient(135deg, var(--dark), #1a2d7a);
  padding: 80px 0; text-align: center;
}
.download-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--white); font-weight: 900; margin-bottom: 12px;
}
.download-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.download-btn-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.btn-download {
  background: linear-gradient(135deg, var(--primary), #ff8c5a);
  color: var(--white); font-size: 1.3rem; font-weight: 800;
  padding: 22px 60px; border-radius: 60px; border: none; cursor: pointer;
  box-shadow: 0 10px 40px rgba(255,107,53,0.45);
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: var(--transition); animation: pulse 2.5s ease infinite;
}
.btn-download:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 50px rgba(255,107,53,0.6);
  animation: none;
}
.btn-download i { font-size: 1.5rem; }
.download-info { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ===== INLINE QUOTE SECTION ===== */
.quote-section {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}
.quote-section::before {
  content:''; position:absolute; top:0; left:0; right:0; height:5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.quote-left .section-tag { margin-bottom: 12px; }
.quote-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900;
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.quote-left > p { color: var(--text-light); font-size: 1rem; margin-bottom: 28px; line-height: 1.75; }
.quote-perks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px;
}
.perk { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--text); font-weight: 500; }
.perk i { color: var(--success); font-size: 0.85rem; }
.quote-contact-note {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 20px;
}
.quote-contact-note > i { color: var(--primary); font-size: 1.1rem; margin-top: 3px; }
.quote-contact-note strong { display: block; color: var(--dark); font-size: 0.85rem; margin-bottom: 3px; }
.quote-contact-note a { color: var(--primary); font-size: 0.88rem; font-weight: 600; }
.quote-contact-note a:hover { text-decoration: underline; }
.quote-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 44px 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-wrap: wrap; }
  .process-connector { display: none; }
  .process-step { min-width: 45%; }
}
@media (max-width: 1024px) {
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); z-index: 999;
    align-items: center; justify-content: center; gap: 24px;
  }
  .nav-links.open a { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 60px; }
  .about-img-secondary { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-row: auto; }
  .testimonial-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { padding: 16px 20px; gap: 0; }
  .stat { padding: 10px 16px; }
  .process-step { min-width: 100%; }
  .partners-list { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
  .btn-download { font-size: 1rem; padding: 18px 36px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; gap: 4px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; justify-content: center; }
}
