/*
 * Algessim Foreign Employment Agency
 * Main Stylesheet – Version 1.0.0
 * =============================================
 */

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --emerald-primary:   #0F766E;
  --emerald-secondary: #14B8A6;
  --gold:              #D4A017;
  --gold-light:        #f0c040;
  --white:             #FFFFFF;
  --light-gray:        #F8FAFC;
  --dark-text:         #1F2937;
  --medium-gray:       #6B7280;
  --border-color:      #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
  --radius:     12px;
  --radius-lg:  20px;
}

/* =============================================
   BASE & RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* =============================================
   LAYOUT
============================================= */
.section-padding    { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(15,118,110,0.1), rgba(20,184,166,0.1));
  color: var(--emerald-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(15,118,110,0.2);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark-text);
  margin-bottom: 16px;
}
.section-header h2 span { color: var(--emerald-primary); }
.section-header p {
  color: var(--medium-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-primary), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-text);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.5);
  color: var(--dark-text);
}
.btn-emerald {
  background: var(--emerald-primary);
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(15,118,110,0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.btn-emerald:hover {
  background: #0a5c56;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,118,110,0.45);
  color: var(--white);
}
.btn-outline-emerald {
  background: transparent;
  color: var(--emerald-primary);
  font-weight: 600;
  padding: 11px 32px;
  border-radius: 50px;
  border: 2px solid var(--emerald-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-emerald:hover {
  background: var(--emerald-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 11px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   TOP INFO BAR
============================================= */
#top-bar {
  background: var(--dark-text);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#top-bar .info-items   { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
#top-bar .info-item    { display: flex; align-items: center; gap: 6px; }
#top-bar .info-item i  { color: var(--gold); font-size: 0.75rem; }
#top-bar .info-item a  { color: inherit; }
#top-bar .social-icons { display: flex; align-items: center; gap: 10px; }
#top-bar .social-icons a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  transition: var(--transition);
}
#top-bar .social-icons a:hover     { background: var(--emerald-primary); color: var(--white); transform: translateY(-1px); }
#top-bar .social-icons a.whatsapp:hover  { background: #25D366; }
#top-bar .social-icons a.facebook:hover  { background: #1877F2; }
#top-bar .social-icons a.instagram:hover { background: #E1306C; }
#top-bar .social-icons a.tiktok:hover    { background: #000; }
#top-bar .social-icons a.telegram:hover  { background: #0088CC; }

/* =============================================
   NAVBAR
============================================= */
#mainNav {
  background: rgba(15,22,35,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
}
.navbar-brand .brand-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.navbar-brand .brand-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-top: 2px;
}
#mainNav.scrolled .navbar-brand .brand-sub { color: var(--medium-gray); }
#mainNav .navbar-toggler       { border: none; padding: 4px 8px; }
#mainNav .navbar-toggler:focus { box-shadow: none; }
#mainNav .navbar-toggler-icon  { filter: invert(1); }
#mainNav.scrolled .navbar-toggler-icon { filter: none; }
#mainNav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
#mainNav.scrolled .nav-link { color: var(--dark-text) !important; }
#mainNav .nav-link:hover,
#mainNav .nav-link.active   { color: var(--gold) !important; background: rgba(212,160,23,0.1); }
#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active { color: var(--emerald-primary) !important; background: rgba(15,118,110,0.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark-text) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* =============================================
   HERO SECTION
============================================= */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #050d1a 0%, #0a1f2e 25%, #0F3D35 50%, #0a2535 75%, #060e1c 100%);
}
#hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(15,118,110,0.15), transparent);
  z-index: 1;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 8%,  rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 35%, rgba(255,255,255,0.4) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-buildings {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.25;
}
.building {
  background: linear-gradient(to top, rgba(20,184,166,0.8), rgba(15,118,110,0.4));
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  flex-shrink: 0;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,118,110,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}
.hero-content    { position: relative; z-index: 10; text-align: center; }
.hero-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-title span { color: var(--gold); }
.hero-slogan { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.hero-slogan strong { color: var(--emerald-secondary); font-weight: 600; }
.hero-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--emerald-secondary));
  border-radius: 2px;
  margin: 18px auto 28px;
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat  { text-align: center; padding: 0 12px; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hero-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; animation: bounce 2s infinite; }
.scroll-indicator a { display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; }
.scroll-indicator i { font-size: 1.1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle  { position: absolute; border-radius: 50%; animation: floatParticle linear infinite; opacity: 0; }
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-20px) scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

/* =============================================
   INTRO SECTION
============================================= */
.intro-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.intro-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
}
.intro-feature h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; color: var(--dark-text); }
.intro-feature p  { font-size: 0.85rem; color: var(--medium-gray); line-height: 1.5; margin: 0; }
.intro-card {
  background: linear-gradient(135deg, var(--emerald-primary), #0a5c56);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.intro-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.intro-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; position: relative; z-index: 1; }
.intro-stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.intro-stat-item .num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.intro-stat-item .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* =============================================
   COUNTRIES
============================================= */
.country-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  height: 100%;
  cursor: pointer;
}
.country-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.country-flag { font-size: 3.5rem; display: block; margin-bottom: 14px; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.country-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.country-card p  { font-size: 0.82rem; color: var(--medium-gray); line-height: 1.5; margin: 0; }
.country-tag {
  display: inline-block;
  background: rgba(15,118,110,0.08);
  color: var(--emerald-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 10px;
}

/* =============================================
   FEATURES / WHY CHOOSE US
============================================= */
.feature-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover h4, .feature-card:hover p { color: var(--white) !important; }
.feature-card:hover .feature-icon { background: rgba(255,255,255,0.2); color: var(--gold); }
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(15,118,110,0.12), rgba(20,184,166,0.12));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--emerald-primary);
  transition: var(--transition);
  position: relative; z-index: 1;
}
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; transition: var(--transition); position: relative; z-index: 1; }
.feature-card p  { font-size: 0.84rem; color: var(--medium-gray); line-height: 1.6; margin: 0; transition: var(--transition); position: relative; z-index: 1; }

/* =============================================
   STATISTICS
============================================= */
#stats {
  background: linear-gradient(135deg, #0a1f2e 0%, var(--emerald-primary) 40%, #0a2535 100%);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.stat-card { text-align: center; padding: 32px 20px; position: relative; z-index: 1; }
.stat-card .stat-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
}
.stat-card .counter {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .counter .suffix { color: var(--gold); }
.stat-card .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.12); height: 80px; align-self: center; }

/* =============================================
   JOB CARDS
============================================= */
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  cursor: pointer;
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--emerald-secondary); }
.job-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(15,118,110,0.1), rgba(20,184,166,0.1));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--emerald-primary);
  transition: var(--transition);
}
.job-card:hover .job-icon { background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-secondary)); color: var(--white); }
.job-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.job-card p  { font-size: 0.8rem; color: var(--medium-gray); margin: 0 0 14px; line-height: 1.5; }
.job-card a  { font-size: 0.8rem; color: var(--emerald-primary); font-weight: 600; }
.job-listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md) !important; border-color: var(--emerald-secondary) !important; }

/* =============================================
   PROCESS
============================================= */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-primary), var(--gold), var(--emerald-secondary));
  z-index: 0;
}
.process-step { flex: 1; text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--emerald-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--emerald-primary);
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 16px rgba(15,118,110,0.2);
}
.process-step:hover .step-circle { background: var(--emerald-primary); color: var(--white); transform: scale(1.1); }
.step-number {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark-text);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.process-step h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.process-step p  { font-size: 0.75rem; color: var(--medium-gray); line-height: 1.5; margin: 0; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-size: 5rem;
  color: var(--emerald-primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text  { font-size: 0.95rem; color: #374151; line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 1rem;
  font-family: 'Poppins', sans-serif; flex-shrink: 0;
}
.author-info h6  { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.author-info span { font-size: 0.78rem; color: var(--medium-gray); }

/* =============================================
   CTA SECTION
============================================= */
#cta {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #0a5c56 50%, #083a35 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,160,23,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-content  { position: relative; z-index: 1; text-align: center; }
#cta h2       { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
#cta h2 span  { color: var(--gold); }
#cta p        { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns     { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   SERVICES
============================================= */
.service-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--emerald-secondary); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-secondary));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); margin-bottom: 18px;
}
.service-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 0.84rem; color: var(--medium-gray); line-height: 1.6; margin: 0; }

/* =============================================
   ABOUT / VALUES
============================================= */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--emerald-primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateX(6px); border-left-color: var(--gold); box-shadow: var(--shadow-md); }
.value-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.value-card p  { font-size: 0.83rem; color: var(--medium-gray); margin: 0; }

/* =============================================
   GALLERY
============================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--emerald-primary), #0a3d35);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
}
.gallery-placeholder i    { font-size: 2.5rem; color: rgba(255,255,255,0.5); }
.gallery-placeholder span { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,118,110,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay i { font-size: 2rem; color: var(--white); }

/* =============================================
   CONTACT
============================================= */
.contact-info-card {
  background: linear-gradient(135deg, var(--emerald-primary), #0a5c56);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3     { font-size: 1.5rem; margin-bottom: 8px; color: var(--white); }
.contact-info-card p.subtitle { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 32px; }
.contact-item   { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--gold);
}
.contact-item h6  { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-item p   { font-size: 0.9rem; color: var(--white); margin: 0; }
.contact-socials  { display: flex; gap: 10px; margin-top: 28px; }
.contact-social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); font-size: 0.85rem;
  transition: var(--transition);
}
.contact-social-btn:hover { background: var(--gold); color: var(--dark-text); border-color: var(--gold); transform: translateY(-3px); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border-color);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--light-gray);
}
.form-control:focus, .form-select:focus {
  border-color: var(--emerald-primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.12);
  background: var(--white);
}
.form-label    { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
textarea.form-control { min-height: 130px; resize: vertical; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 280px; border: none; display: block; }

/* =============================================
   FOOTER
============================================= */
#footer { background: var(--dark-text); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-brand .brand-main { color: var(--gold); font-size: 1.5rem; }
.footer-brand .brand-sub  { color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc  { font-size: 0.85rem; line-height: 1.7; margin: 16px 0 20px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--emerald-primary); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--gold);
}
.footer-links   { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a  { font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--emerald-secondary); padding-left: 4px; }
.footer-links a i { font-size: 0.6rem; color: var(--emerald-secondary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i    { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--emerald-secondary); }

/* =============================================
   FLOATING BUTTONS
============================================= */
.floating-btns {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.scroll-top-btn {
  width: 46px; height: 46px;
  background: var(--emerald-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  cursor: pointer; box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; visibility: hidden; border: none;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover   { background: #0a5c56; transform: translateY(-3px); }
.whatsapp-btn {
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.whatsapp-btn::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: whatsappPulse 2s ease-out infinite;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-btn:hover  { background: #1ebe57; transform: scale(1.08); color: var(--white); }
.whatsapp-tooltip {
  position: absolute; right: 65px;
  background: var(--dark-text); color: var(--white);
  font-size: 0.75rem; font-weight: 500;
  padding: 5px 12px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================
   PAGE HERO
============================================= */
.page-hero { background: linear-gradient(135deg, #050d1a, #0F766E, #0a2535); padding: 80px 0; text-align: center; }

/* =============================================
   PAGINATION
============================================= */
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--dark-text);
  font-size: 0.9rem;
  margin: 0 3px;
  transition: var(--transition);
}
.page-numbers:hover, .page-numbers.current {
  background: var(--emerald-primary);
  color: var(--white);
  border-color: var(--emerald-primary);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .process-timeline { flex-direction: column; gap: 30px; }
  .process-timeline::before { display: none; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .step-circle  { margin: 0; flex-shrink: 0; }
  .stat-divider { display: none; }
  .hero-glass   { padding: 36px 28px; }
  .hero-stats   { gap: 16px; }
}
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  #top-bar .info-items { gap: 10px; font-size: 0.72rem; }
  .hero-glass { padding: 28px 20px; }
  .contact-form-card, .contact-info-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .intro-card { margin-top: 30px; }
}
@media (max-width: 575px) {
  .hero-stats  { display: none; }
  .process-step p { display: none; }
}
