/* 
 * FUTURE LINE DOCUMENTS CLEARING SERVICES EST
 * Master stylesheet (style.css)
 * Premium Modern Corporate Design System
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary: #2E3192;
  --primary-dark: #1F236D;
  --accent: #4D48B8;
  --accent-light: rgba(77, 72, 184, 0.1);
  --bg-light: #F7F8FC;
  --white: #FFFFFF;
  --text-main: #252525;
  --text-muted: #666666;
  --gold: #D4AF37;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BA5A;
  
  /* Styling Variables */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(31, 35, 109, 0.04);
  --shadow-md: 0 8px 24px rgba(31, 35, 109, 0.06);
  --shadow-lg: 0 16px 40px rgba(31, 35, 109, 0.1);
  --shadow-hover: 0 20px 48px rgba(46, 49, 146, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(46, 49, 146, 0.2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ANIMATED DOCUMENT LOADER */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Animation Container */
.loader-animation {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

/* Document Folder CSS Drawing */
.loader-folder {
  width: 90px;
  height: 70px;
  position: relative;
  perspective: 200px;
}

.folder-back {
  width: 90px;
  height: 70px;
  background: var(--primary);
  border-radius: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.folder-back::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 30px;
  height: 12px;
  background: var(--primary);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.folder-document {
  width: 76px;
  height: 60px;
  background: var(--white);
  border-radius: 4px;
  position: absolute;
  bottom: 5px;
  left: 7px;
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  animation: slide-doc 2s infinite ease-in-out;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doc-line {
  height: 3px;
  background: #E0E0E0;
  border-radius: 2px;
  width: 100%;
}
.doc-line:nth-child(2) { width: 80%; }
.doc-line:nth-child(3) { width: 60%; }
.doc-line.color-accent { background: var(--accent); }

.folder-front {
  width: 90px;
  height: 55px;
  background: rgba(46, 49, 146, 0.95);
  border-radius: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform-origin: bottom center;
  transform: rotateX(0deg);
  animation: flap-open 2s infinite ease-in-out;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Animations Keyframes */
@keyframes flap-open {
  0%, 100% { transform: rotateX(0deg); }
  25%, 70% { transform: rotateX(-35deg); }
}

@keyframes slide-doc {
  0%, 100% { transform: translateY(0); }
  35%, 60% { transform: translateY(-40px); }
}

/* Logo and text glow */
.loader-branding {
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  animation: brand-fade-in 1.2s forwards 0.6s ease-out;
}

.loader-title {
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.loader-subtitle {
  color: var(--gold);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(46, 49, 146, 0.8);
}

@keyframes brand-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER & NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-slow);
  padding: 20px 0;
}

header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(46, 49, 146, 0.08);
}

.logo-wrapper:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.logo-wrapper img {
  height: 44px;
  display: block;
  transition: var(--transition);
}

header.scrolled .logo-wrapper {
  padding: 6px 14px;
}

header.scrolled .logo-wrapper img {
  height: 36px;
}

.footer-logo-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  max-width: fit-content;
  border: 1px solid rgba(46, 49, 146, 0.08);
}

.footer-logo-wrapper img {
  height: 44px;
  display: block;
}

/* Nav Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding: 6px 0;
}

header.scrolled .nav-link {
  color: var(--primary-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

/* Header CTAs */
.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
}

header.scrolled .btn-phone {
  color: var(--primary);
}

.btn-phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46, 49, 146, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 35, 109, 0.4);
}

.btn-accent {
  background-color: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.btn-accent:hover {
  background-color: #C39F2D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 24px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  position: absolute;
  transition: var(--transition);
}

header.scrolled .mobile-toggle span {
  background: var(--primary-dark);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 10px; }
.mobile-toggle span:nth-child(3) { top: 20px; }

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  background: #0F1240;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 18, 64, 0.85) 0%, rgba(15, 18, 64, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 0.35;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* HERO ANIMATION GRAPHIC */
.hero-graphic {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glassmorphic Scene container */
.scene-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skyline-bg {
  position: absolute;
  width: 90%;
  height: 70%;
  background: url('../images/dubai-skyline.jpg') no-repeat center center;
  background-size: cover;
  border-radius: var(--radius-lg);
  opacity: 0.35;
  filter: grayscale(40%) contrast(120%);
  mask-image: radial-gradient(circle, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 100%);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease-out;
}

/* Card Specific Positions */
.card-passport {
  top: 15%;
  left: 5%;
  animation: float-slow 6s infinite ease-in-out;
}

.card-visa {
  bottom: 20%;
  left: -2%;
  animation: float-fast 5s infinite ease-in-out;
}

.card-license {
  top: 25%;
  right: 5%;
  animation: float-slow 7s infinite ease-in-out 1s;
}

.card-folder {
  bottom: 15%;
  right: 2%;
  animation: float-fast 6.5s infinite ease-in-out 0.5s;
}

/* Center Glowing Seal */
.center-seal {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(77, 72, 184, 0.6) 0%, rgba(46, 49, 146, 0.1) 80%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  position: relative;
  box-shadow: 0 0 40px rgba(77, 72, 184, 0.4);
  animation: spin-pulse 10s infinite linear;
}

.center-seal svg {
  width: 90px;
  height: 90px;
  fill: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

/* Card content styles */
.card-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.card-license .card-icon svg { fill: var(--gold); }

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text .title {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}

.card-text .desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Glowing Connecting Lines */
.glow-line {
  position: absolute;
  stroke: rgba(77, 72, 184, 0.4);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 8 4;
  animation: dash 30s infinite linear;
}

/* Float Keyframes */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-3deg); }
}

@keyframes spin-pulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

/* TRUST BADGES SECTION */
.trust-badges {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(46, 49, 146, 0.08);
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-sm);
  margin-top: -30px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.badges-header {
  text-align: center;
  margin-bottom: 30px;
}

.badges-header h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
}

.badges-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.badge-card {
  background: var(--bg-light);
  border: 1px solid rgba(46, 49, 146, 0.06);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: var(--transition);
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 49, 146, 0.15);
  background: var(--white);
}

.badge-card:hover::before {
  height: 100%;
}

.badge-icon {
  width: 42px;
  height: 42px;
  background: rgba(46, 49, 146, 0.06);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  transition: var(--transition);
}

.badge-card:hover .badge-icon {
  background: var(--primary);
  color: var(--white);
}

.badge-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.badge-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.badge-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SECTION UTILITIES */
.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--font-headings);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ABOUT SECTION - HOMEPAGE */
.about-home {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 480px;
}

.about-img-main {
  grid-column: 1 / 10;
  grid-row: 1 / 11;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-sub {
  grid-column: 5 / 13;
  grid-row: 5 / 13;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}

.about-img-main img,
.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-images:hover img {
  transform: scale(1.05);
}

.about-years-badge {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.about-years-badge h5 {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.about-years-badge p {
  font-size: 0.8rem;
  font-family: var(--font-headings);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-desc p {
  color: var(--text-muted);
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.about-bullet-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* WHY CHOOSE US */
.why-choose {
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid rgba(46, 49, 146, 0.03);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(77, 72, 184, 0.1);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(77, 72, 184, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SERVICES GRID (HOME & SERVICES PAGE) */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 49, 146, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(31, 35, 109, 0) 40%, rgba(31, 35, 109, 0.7) 100%);
}

.service-card-icon-overlay {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 3px solid var(--white);
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover .service-card-icon-overlay {
  background: var(--gold);
  color: var(--primary-dark);
  transform: rotate(360deg);
}

.service-card-icon-overlay svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-info {
  padding: 35px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.service-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.service-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 10px;
}

.service-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* PROCESS TIMELINE */
.process-section {
  background: var(--bg-light);
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(46, 49, 146, 0.1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-node {
  position: absolute;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-node {
  right: -23px;
}

.timeline-item:nth-child(even) .timeline-node {
  left: -23px;
}

.timeline-item.revealed .timeline-node {
  background: var(--primary);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(46, 49, 146, 0.35);
}

.timeline-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 49, 146, 0.02);
  transition: var(--transition);
}

.timeline-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.timeline-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* STATISTICS COUNTERS */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0F1240 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/abstract-bg.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -15px;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid rgba(46, 49, 146, 0.04);
  padding: 35px 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(77, 72, 184, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(46, 49, 146, 0.08);
  padding-top: 20px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.author-company {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-badge-google {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.2;
}

.testimonial-badge-google svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

/* CALL TO ACTION (CTA) */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/footer-pattern.svg') no-repeat right bottom;
  opacity: 0.15;
  pointer-events: none;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 750px;
}

.cta-text h2 {
  font-size: 2.3rem;
  color: var(--white);
  font-weight: 800;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-whatsapp-cta {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-right: 8px;
}

/* STICKY ACTION BUTTONS */
.sticky-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 998;
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.sticky-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* WhatsApp Widget */
.widget-whatsapp {
  background: var(--whatsapp);
  animation: pulse-green 2s infinite;
}

.widget-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.08);
}

/* Call Widget */
.widget-call {
  background: var(--primary);
  animation: bounce-call 3s infinite;
}

.widget-call:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

/* Tooltip on hover */
.widget-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.sticky-btn:hover .widget-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Animations */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes bounce-call {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* FOOTER SECTION */
footer {
  background: #0D0F35;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 300px;
  background: url('../images/footer-pattern.svg') no-repeat right bottom;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  max-width: 180px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--gold);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-form button {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  position: relative;
  z-index: 10;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ABOUT PAGE SPECIFIC STYLES */
.page-banner {
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 35, 109, 0.85) 0%, rgba(15, 18, 64, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

.page-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.page-banner-content h1 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs span.current {
  color: var(--gold);
  font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
  background: var(--bg-light);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mission-card.vision-card {
  border-top-color: var(--gold);
}

.mission-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 49, 146, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
}

.vision-card .mission-icon {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.mission-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.mission-card p {
  color: var(--text-muted);
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(46, 49, 146, 0.03);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(77, 72, 184, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(77, 72, 184, 0.06);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-card:hover .value-icon {
  background: var(--primary);
  color: var(--white);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.value-card h4 {
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Industries Served */
.industries {
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-item {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  transition: var(--transition);
  border: 1px solid rgba(46, 49, 146, 0.03);
}

.industry-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 49, 146, 0.15);
  transform: translateY(-3px);
}

.industry-item svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

/* SERVICES PAGE SPECIFIC STYLES */
.services-detailed-section {
  background: var(--bg-light);
}

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.service-row-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(46, 49, 146, 0.03);
}

.service-row-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-row-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-row-card:hover .service-row-img img {
  transform: scale(1.05);
}

.service-row-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-row-content h2 svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.service-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.service-bullet svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* CONTACT PAGE SPECIFIC STYLES */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-panel h2 {
  font-size: 2rem;
  font-weight: 800;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  border: 1px solid rgba(46, 49, 146, 0.03);
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 49, 146, 0.1);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(46, 49, 146, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-card:hover .contact-info-icon {
  background: var(--primary);
  color: var(--white);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-form-panel {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 49, 146, 0.03);
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(31, 35, 109, 0.15);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  margin-bottom: 20px;
  text-align: center;
}

.form-status.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
  display: block;
}

.form-status.error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
  display: block;
}

/* FAQs Accordion */
.faq-section {
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(46, 49, 146, 0.03);
}

.faq-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46, 49, 146, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--white);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(46, 49, 146, 0.06);
  padding-top: 16px;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 450px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE MEDIA QUERIES */

/* Large Tablets and smaller desktops (under 1024px) */
@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  .hero-content h1 { font-size: 2.8rem; }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 120px;
    height: auto;
    text-align: center;
  }
  
  .hero {
    height: auto;
    padding: 100px 0 60px 0;
  }
  
  .hero-tag {
    align-self: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-graphic {
    height: 400px;
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
  
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .service-row-card {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablets and Mobile Landscape (under 768px) */
@media (max-width: 768px) {
  header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
  }
  
  .logo-wrapper {
    padding: 6px 12px;
  }
  .logo-wrapper img {
    height: 30px;
  }
  
  .nav-link {
    color: var(--primary-dark);
  }
  
  /* Mobile Menu Toggle button */
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle span {
    background: var(--primary-dark);
  }
  
  /* Collapsible Navigation Menu */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 24px;
    transition: var(--transition-slow);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  
  .nav-actions {
    display: none; /* Hide desktop button actions, we'll place them inside nav or as floating buttons */
  }
  
  .badges-grid {
    /* Touch target-friendly scrolling list/carousel on mobile */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .badge-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-node {
    left: 2px !important;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile Devices (under 480px) */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 1.8rem; }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  /* Mobile Sticky Pill Actions at Bottom */
  .sticky-widgets {
    bottom: 20px;
    right: 20px;
    left: 20px;
    flex-direction: row;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .sticky-btn {
    flex: 1;
    border-radius: 50px;
    height: 50px;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
  }
  
  .sticky-btn svg {
    width: 22px;
    height: 22px;
  }
  
  .sticky-btn::after {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
  }
  
  .widget-whatsapp::after {
    content: 'WhatsApp';
  }
  
  .widget-call::after {
    content: 'Call Now';
  }
}
