/* ==========================================================================
   407 Screens - Modern Design System & Custom Styles
   Brand Palette: Coral-Orange, Golden-Yellow & Slate-Charcoal (Matching Logo)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Primary Brand Colors (From Logo: Orange, Yellow, Charcoal) */
  --color-primary: #E84A3B;              /* Vivid Coral-Orange */
  --color-primary-dark: #C93427;         /* Deep Crimson-Orange */
  --color-primary-light: #FF6E5E;        /* Warm Coral Light */
  
  --color-amber: #F5A623;                /* Golden Yellow / Amber */
  --color-amber-dark: #D48806;           /* Rich Amber Gold */
  --color-amber-light: #FFC247;          /* Bright Warm Yellow */
  --color-amber-glow: rgba(245, 166, 35, 0.4);

  --color-gray-logo: #8C929D;            /* Middle Gray from Logo Center Panel */
  --color-gray-dark: #3F444E;            /* Dark Charcoal-Gray */
  --color-gray-light: #E9ECEF;           /* Light Surface Gray */

  --color-dark: #16191E;                 /* Architectural Roof Charcoal */
  --color-dark-surface: #22262E;         /* Elevated Charcoal Card Surface */
  --color-dark-card: rgba(22, 25, 30, 0.88);
  
  --color-text-main: #16191E;            /* High Contrast Charcoal Black */
  --color-text-muted: #525866;           /* Readable Slate Gray */
  --color-text-light: #F8F9FA;
  --color-text-subtle: #9EA5B0;

  --color-bg-light: #FAFBFD;             /* Crisp clean light backdrop */
  --color-bg-white: #FFFFFF;
  --color-border: #E5E8EC;
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #E84A3B 0%, #FF7A00 55%, #F5A623 100%);
  --gradient-primary-hover: linear-gradient(135deg, #C93427 0%, #E84A3B 50%, #D48806 100%);
  --gradient-amber: linear-gradient(135deg, #F5A623 0%, #FF9F1C 100%);
  --gradient-dark: linear-gradient(135deg, #16191E 0%, #22262E 100%);
  --gradient-hero-overlay: radial-gradient(circle at center, rgba(22, 25, 30, 0.65) 0%, rgba(15, 17, 21, 0.94) 85%);

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(22, 25, 30, 0.08);
  --shadow-lg: 0 18px 36px rgba(22, 25, 30, 0.12);
  --shadow-glow: 0 10px 25px rgba(232, 74, 59, 0.35);
  --shadow-amber-glow: 0 10px 25px rgba(245, 166, 35, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--font-primary) !important;
  color: var(--color-text-main) !important;
  background-color: var(--color-bg-light);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: #111418;
  color: #D6D9E0;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a {
  color: var(--color-amber-light);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
.top-bar a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.modern-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.modern-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.modern-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.modern-brand:hover .modern-brand-logo {
  transform: scale(1.04);
}
.modern-brand-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.modern-brand-text span {
  color: var(--color-primary);
}

.modern-navbar .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #2B303A !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.modern-navbar .nav-link:hover,
.modern-navbar .nav-item.active .nav-link {
  color: var(--color-primary) !important;
  background: rgba(232, 74, 59, 0.08);
}
.modern-navbar .nav-link::after {
  display: none !important;
}

.nav-cta-btn {
  background: var(--gradient-primary);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(232, 74, 59, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 74, 59, 0.48);
  background: var(--gradient-primary-hover);
  color: #FFFFFF !important;
}

.btn-lang-toggle {
  color: #2B303A;
  border: 1.5px solid var(--color-gray-logo);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-lang-toggle:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.modern-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
}

.hero-gradient-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 120px 0;
  color: #FFFFFF;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 940px;
  height: 85%;
  background: radial-gradient(ellipse at center, rgba(10, 12, 16, 0.58) 0%, rgba(10, 12, 16, 0) 74%);
  z-index: -1;
  pointer-events: none;
  filter: blur(14px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(17, 20, 24, 0.88);
  border: 1.5px solid rgba(245, 166, 35, 0.9);
  backdrop-filter: blur(10px);
  color: #FFD479;
  font-size: clamp(11px, 2.8vw, 13.5px);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
}
.hero-title .highlight {
  color: #FFC107 !important;
  -webkit-text-fill-color: #FFC107 !important;
  display: inline;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #FFFFFF;
  max-width: 740px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  font-weight: 600;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(232, 74, 59, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(232, 74, 59, 0.55);
  background: var(--gradient-primary-hover);
  color: #FFFFFF;
}

.btn-hero-secondary {
  background: rgba(17, 20, 24, 0.72);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

/* ==========================================================================
   TRUST STATS BAR
   ========================================================================== */
.trust-stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 40px;
}

.stats-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 20px 45px rgba(22, 25, 30, 0.08);
  border: 1px solid var(--color-border);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
}
.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.1;
}
.stat-label {
  font-size: 13.5px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 100px 0 70px 0;
  background-color: var(--color-bg-light);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(232, 74, 59, 0.1);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(232, 74, 59, 0.2);
}

.section-heading {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(232, 74, 59, 0.15);
  border-color: rgba(245, 166, 35, 0.5);
}

.service-image-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image-box img {
  transform: scale(1.08);
}
.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(22, 25, 30, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-amber-light);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 166, 35, 0.4);
}

.service-body {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.service-features li {
  font-size: 13.5px;
  font-weight: 600;
  color: #2B303A;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.service-features li i {
  color: #E84A3B;
  font-size: 15px;
}

.service-card-btn {
  background: rgba(232, 74, 59, 0.08);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 14px;
  padding: 11px;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(232, 74, 59, 0.15);
}
.service-card-btn:hover {
  background: var(--gradient-primary);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(232, 74, 59, 0.35);
}

/* ==========================================================================
   ABOUT & WHY CHOOSE US
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background: #FFFFFF;
}

.about-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.about-feature-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--color-dark);
}
.about-feature-desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.quote-highlight-card {
  background: var(--gradient-dark);
  color: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(22, 25, 30, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.2);
}
.quote-highlight-card::before {
  content: '“';
  font-size: 120px;
  font-family: serif;
  color: rgba(245, 166, 35, 0.08);
  position: absolute;
  top: -20px;
  right: 20px;
  line-height: 1;
}
.quote-highlight-card p {
  color: #F1F3F7;
  font-size: 18px;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.quote-highlight-card cite {
  color: var(--color-amber-light);
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portfolio-section {
  padding: 90px 0;
  background: #F4F6F9;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.portfolio-filters a {
  background: #FFFFFF;
  color: #3F444E;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
}
.portfolio-filters a:hover,
.portfolio-filters a.active {
  background: var(--gradient-primary);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(232, 74, 59, 0.35);
}

.modern-portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid var(--color-border);
}
.modern-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(22, 25, 30, 0.14);
  border-color: rgba(245, 166, 35, 0.5);
}
.modern-portfolio-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.modern-portfolio-card:hover .modern-portfolio-img {
  transform: scale(1.06);
}

.modern-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(17, 20, 24, 0.96) 0%, rgba(17, 20, 24, 0.65) 60%, transparent 100%);
  color: #FFFFFF;
}
.portfolio-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.portfolio-card-meta {
  font-size: 13.5px;
  color: var(--color-amber-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-section-wrapper {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAFBFD 0%, #F0F2F6 100%);
}

.contact-card-modern {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(22, 25, 30, 0.12);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--gradient-dark);
  color: #FFFFFF;
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-title {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 14px;
}
.contact-info-text {
  color: #B8BFCB;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.quick-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}
.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.quick-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.14);
  color: var(--color-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(245, 166, 35, 0.3);
}
.quick-contact-label {
  font-size: 12px;
  color: #8C929D;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.05em;
}
.quick-contact-val {
  font-size: 16px;
  font-weight: 700;
  color: #F8F9FA;
  text-decoration: none;
  transition: color 0.2s;
}
.quick-contact-val:hover {
  color: var(--color-amber-light);
}

.contact-form-panel {
  padding: 48px;
}
.form-floating-custom {
  margin-bottom: 20px;
}
.form-floating-custom label {
  font-size: 14px;
  font-weight: 700;
  color: #2B303A;
  margin-bottom: 8px;
  display: block;
}
.form-control-modern {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 1.5px solid #D0D5DD;
  border-radius: var(--radius-md);
  background: #F8F9FA;
  color: var(--color-dark);
  font-family: inherit;
  transition: all 0.2s ease;
}
.form-control-modern:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(232, 74, 59, 0.12);
}

.btn-submit-modern {
  width: 100%;
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 10px 22px rgba(232, 74, 59, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit-modern:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(232, 74, 59, 0.48);
  background: var(--gradient-primary-hover);
}
.btn-submit-modern:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================================================================
   SERVICE AREAS BADGES
   ========================================================================== */
.service-areas-bar {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-bottom: 30px;
  text-align: center;
}
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F8F9FA;
  color: #2B303A;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin: 4px;
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
}
.city-badge:hover {
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-primary);
  border-color: rgba(245, 166, 35, 0.4);
}

/* ==========================================================================
   MAP CONTAINER
   ========================================================================== */
.modern-map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.modern-footer {
  background: #111418;
  color: #9EA5B0;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.footer-logo-title span {
  color: var(--color-amber);
}
.footer-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #9EA5B0;
}

.footer-heading {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #9EA5B0;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-links a:hover {
  color: var(--color-amber-light);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer-social-icons a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  color: #6C7381;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & OVERFLOW PREVENTION
   ========================================================================== */
section, header, footer, .trust-stats-bar, .services-section, .portfolio-section, .about-section, .contact-section {
  max-width: 100vw;
  overflow-x: clip;
}

@media (max-width: 767.98px) {
  .trust-stats-bar {
    margin-top: -30px;
    margin-bottom: 30px;
  }
  .stats-card {
    padding: 20px 14px;
  }
  .stat-item {
    gap: 10px;
    padding: 4px 0;
  }
  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
    border-radius: 12px;
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-label {
    font-size: 11.5px;
    line-height: 1.25;
  }
}

@media (max-width: 575.98px) {
  .modern-navbar {
    padding: 8px 0;
  }
  .modern-brand-logo {
    height: 38px;
  }
  .btn-lang-toggle {
    padding: 5px 10px;
    font-size: 12px;
  }
  .nav-cta-btn {
    padding: 8px 14px;
    font-size: 12px;
    gap: 4px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .hero-actions {
    gap: 12px;
    margin-bottom: 36px;
  }
  .modern-hero {
    min-height: 80vh;
  }
  .hero-content {
    padding: 50px 0 80px 0;
  }
}

/* ==========================================================================
   SAFE PROGRESSIVE SCROLL REVEAL (NO HYDRATION BUGS, NO BLANK SECTIONS)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


