/* ================= VARIABLES & RESET ================= */
:root {
  --primary: #d4af37;
  --primary-dark: #8b7500;
  --primary-light: #f4d778;
  --secondary: #0a1628;
  --accent: #ffd700;
  --light-bg: #faf8f0;
  --text-dark: #1a1f36;
  --text-light: #5a6378;
  --border: #e8dfc0;
  --success: #d4af37;
  --info: #f4d778;
}

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

/* Global outline icon style */
.feather {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER/NAVBAR ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.10);
  height: 70px;
  overflow: visible;
  transition: all 0.3s ease;
}

.main-header:hover {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.14);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  height: 100%;
}

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

.brand img {
  height: auto;
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: scale(1.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}

.brand-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.2px;
  margin-top: 0px;
  white-space: nowrap;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: -0.8px;
  transition: color 0.3s ease;
}

.brand-name:hover {
  color: #b8941e;
}

.main-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
  margin: 0;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: flex;
  align-items: center;
  height: auto;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d778);
  transition: all 0.3s ease;
  border-radius: 2px;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav a:hover,
.main-nav a.active {
  color: #d4af37;
  font-weight: 700;
}


.mobile-toggle {
  display: none;
  position: relative;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark);
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-toggle:hover,
.mobile-toggle:active {
  color: #d4af37;
}

.main-nav {
  transition: all 0.3s ease;
}

/* ================= MEGA-MENU (Services) ================= */
.main-nav .has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 24px 28px;
  display: none;
  width: auto;
  min-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-radius: 8px;
}

.mega-menu.show,
.main-nav .has-mega:hover .mega-menu,
.main-nav .has-mega.open .mega-menu {
  display: grid;
}

.mega-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  grid-column: 1 / -1;
}

.mega-viewall {
  font-size: 13px;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mega-viewall:hover {
  color: #b8941e;
}

.mega-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.mega-col h6 {
  font-size: 13px;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.mega-col li {
  margin: 0;
  padding: 0;
  text-align: left;
}

.mega-col a {
  display: flex;
  align-items: center;
  color: #555555;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 0;
  line-height: 1.4;
  position: relative;
  padding-left: 14px;
}

.mega-col a:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 10px;
  transition: all 0.2s ease;
}

.mega-col a:hover {
  color: #d4af37;
  font-weight: 600;
  padding-left: 18px;
}

.mega-col a:hover:before {
  left: 4px;
}

/* Mobile */
@media (max-width: 1000px) {
  .main-header {
    height: 65px;
    /* iOS Safari: backdrop-filter on fixed headers can occasionally block taps */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-wrap {
    padding: 10px 0;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 10.5px;
    margin-top: 0px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 65px;
    left: 12px;
    right: 12px;
    width: auto;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 16px;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px) scale(0.99);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.18s ease, transform 0.18s ease;
    z-index: 999;
  }

  .main-nav.mobile-open ul {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: none;
    height: auto;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #0a1d3a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.14);
    touch-action: manipulation;
  }

  .main-nav a:active {
    background: rgba(212, 175, 55, 0.08);
  }

  .main-nav a:hover {
    background: rgba(10, 29, 58, 0.05);
  }

  .main-nav a.active {
    background: rgba(212, 175, 55, 0.10);
    color: #8b7500;
    font-weight: 700;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-btn {
    margin: 10px 12px 6px !important;
    width: calc(100% - 24px) !important;
    text-align: center !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.22);
  }

  .mobile-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(10, 29, 58, 0.10);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    line-height: 1;
    font-size: 22px;
  }

  .mobile-toggle:active {
    transform: translateY(1px) scale(0.99);
  }

  .mega-menu {
    position: static;
    width: 100%;
    min-width: auto;
    max-width: none;
    transform: none;
    left: auto;
    display: none !important;
    grid-template-columns: 1fr;
    border: none;
    box-shadow: none;
    padding: 12px 0;
    gap: 12px;
    margin-top: 0;
    border-radius: 0;
  }
  
  .mega-menu.show,
  .main-nav .has-mega.open .mega-menu {
    display: grid;
  }
  
  .mega-bar {
    padding: 0 20px;
  }

  .mega-col {
    margin-bottom: 6px;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  }

  .mega-col h6 {
    font-size: 12px;
    margin: 0 0 8px 0;
  }

  .mega-col a {
    padding: 6px 0 6px 14px;
    font-size: 11px;
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding: 30px 0 60px;
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  background-image: url('../img/dubai.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #001f54;
  display: flex;
  align-items: center;
  color: white;
  animation: backgroundSlide 12s ease-in-out infinite;
}

/* Mobile Safari fix: background-attachment: fixed can break taps on fixed/sticky headers */
@media (max-width: 1000px) {
  .hero-section {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
}

/* Home page hero: use a clean black/dark overlay (instead of blue) */
.hero-section#home {
  background-color: #000000;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,20,50,0.48) 0%, rgba(10,45,90,0.28) 60%, rgba(10,45,90,0.18) 100%);
  z-index: 1;
}

.hero-section#home::before {
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.56) 60%, rgba(0,0,0,0.40) 100%);
}

/* Contact page specific hero to use provided banner image */
.hero-section.hero-contact {
  /* remove inherited page background and use a subtle gradient instead */
  background-image: none !important;
  background:
    radial-gradient(1000px circle at 18% 18%, rgba(255, 215, 0, 0.55), transparent 58%),
    radial-gradient(760px circle at 82% 22%, rgba(212, 175, 55, 0.42), transparent 56%),
    radial-gradient(720px circle at 45% 85%, rgba(139, 117, 0, 0.34), transparent 62%),
    linear-gradient(135deg, rgba(6, 6, 6, 0.98), rgba(28, 18, 3, 0.97) 42%, rgba(10, 16, 28, 0.94)) !important;
  background-color: #120c02;
  min-height: 420px;
  padding: 60px 0;
  color: #fff;
}

.hero-section.hero-contact::before {
  /* slightly darker overlay for better text contrast on contact banner */
  background:
    radial-gradient(900px circle at 22% 20%, rgba(0,0,0,0.14), transparent 60%),
    radial-gradient(760px circle at 85% 20%, rgba(0,0,0,0.22), transparent 58%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(0,0,0,0.62) 55%, rgba(0,0,0,0.30) 100%) !important;
}

.hero-section.hero-contact .hero-content h1,
.hero-section.hero-contact .hero-content p,
.hero-section.hero-contact .hero-tag {
  color: #fff;
}

/* Visa page hero banner */
.hero-section.hero-visa {
  background-image: url('../img/visa-services.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 420px;
  padding: 60px 0;
  color: #fff;
}

/* Two-column contact hero layout */
.hero-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0;
}

.hero-contact .hero-image {
  width: 100%;
  display: block;
  overflow: hidden;
}

.hero-contact .hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: none;
  display: block;
}

.hero-contact .hero-info {
  color: white;
}

.contact-cards {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  padding: 14px 18px;
  border-radius: 10px;
  min-width: 160px;
}

.contact-card h4 {
  margin-bottom: 6px;
  font-size: 14px;
  color: #cbe9ff;
}

.contact-card a {
  color: #ffffff;
  font-weight: 700;
}

/* Responsive: stack on small screens */
@media (max-width: 880px) {
  .hero-contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .hero-contact .hero-image img {
    height: 220px;
    object-fit: cover;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 400px;
  padding-top: 0px;
  padding-left: 0;
  animation: fadeInUp 0.8s ease-out;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin-left: -60px;
}

.hero-left {
  position: relative;
  z-index: 10;
  padding-left: 0;
}

.hero-right {
  position: relative;
  z-index: 10;
}

.hero-right p {
  font-size: 16px;
  color: rgba(235,245,255,0.9);
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 550px;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(244, 215, 120, 0.6), 0 0 80px rgba(244, 215, 120, 0.3);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
  animation: slideInText 1s ease-out;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 215, 0, 0.95);
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(244, 215, 120, 0.25);
  animation: slideInText 0.8s ease-out;
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: slideInText 1.2s ease-out;
}

.hero-content h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(244, 215, 120, 0.6), 0 0 80px rgba(244, 215, 120, 0.3);
}

.hero-content p {
  font-size: 16px;
  color: rgba(235,245,255,0.9);
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 650px;
}

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

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8941e);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #b8941e, #9a7a15);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 1);
  transform: translateY(-2px);
}

/* Animated buttons */
.animated-btn {
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.animated-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.animated-btn:hover::before {
  width: 300px;
  height: 300px;
}

.animated-btn:hover {
  animation: pulse 1.5s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInText {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes backgroundSlide {
  0% {
    background-image: url('../img/dubai.jpg');
  }
  33% {
    background-image: url('../img/dubai.jpg');
  }
  34% {
    background-image: url('../img/pro.jpg');
  }
  66% {
    background-image: url('../img/pro.jpg');
  }
  67% {
    background-image: url('../img/ContactUS.jpg');
  }
  100% {
    background-image: url('../img/ContactUS.jpg');
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.hero-actions .animated-btn:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-actions .animated-btn:nth-child(2) {
  animation-delay: 0.4s;
}

/* Contact button in navigation */
.main-nav .nav-btn {
  background: linear-gradient(135deg, #d4af37, #b8941e) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
  display: inline-block !important;
  height: auto !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
  border-bottom: none !important;
  padding-bottom: 10px !important;
}

.main-nav .nav-btn::after {
  display: none !important;
}

.main-nav .nav-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 7px 18px rgba(212, 175, 55, 0.4) !important;
  background: linear-gradient(135deg, #b8941e, #9a7a15) !important;
  color: white !important;
}

/* ================= HERO STATS OVERLAY ================= */
.hero-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.65) 60%, transparent 100%);
  padding: 60px 0 40px;
  z-index: 3;
  animation: slideUp 0.9s ease-out 0.3s both;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 40px;
  align-items: center;
  text-align: center;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out;
}

.stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(244, 215, 120, 0.35);
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

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

.stat-box {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(244, 215, 120, 0.3);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: capitalize;
}

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

.services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 50%;
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(244, 215, 120, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(212,175,55,0.14) 0%, rgba(244,215,120,0.10) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(212,175,55,0.18);
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin: 16px 0 20px;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 650px;
  margin: 16px auto 0;
  line-height: 1.8;
  font-weight: 500;
}

.service-box {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid rgba(212, 175, 55, 0.14);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, rgba(244,215,120,0.04) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(212,175,55,0.22);
  border-color: var(--primary);
}

.service-box:hover::before {
  left: 0;
}

.service-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.service-icon .feather {
  width: 40px;
  height: 40px;
  stroke: #000;
  stroke-width: 2.2;
  fill: none;
}

.service-box:hover .service-icon .feather {
  transform: scale(1.06);
}

.service-box h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.service-box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-btn {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.service-btn:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  padding-left: 4px;
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ================= INDEX: WHY TOP (FIRE PATTERN CARDS) ================= */
.why-top {
  background: linear-gradient(135deg, #ffffff 0%, #fff7e3 40%, #ffffff 100%);
}

.why-top .service-box {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 26px rgba(212,175,55,0.10);
  isolation: isolate;
}

.why-top .service-box > * {
  position: relative;
  z-index: 1;
}

/* Replace the generic slide overlay with animated embers */
.why-top .service-box::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 80%, rgba(255, 215, 0, 0.22) 0 2px, transparent 2px 70px),
    radial-gradient(circle at 62% 88%, rgba(212, 175, 55, 0.18) 0 2px, transparent 2px 80px),
    radial-gradient(circle at 88% 72%, rgba(255, 215, 0, 0.16) 0 2px, transparent 2px 85px),
    radial-gradient(circle at 32% 62%, rgba(10, 29, 58, 0.06) 0 2px, transparent 2px 95px);
  background-size: 560px 560px;
  opacity: 0.85;
  transform: translateZ(0);
  will-change: background-position, opacity;
  animation: emberDrift 10s linear infinite;
}

/* Fire glow layer */
.why-top .service-box::after {
  content: '';
  position: absolute;
  inset: -30% -20% -20% -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 240px at 18% 112%, rgba(255, 122, 0, 0.22), transparent 62%),
    radial-gradient(520px 240px at 52% 112%, rgba(255, 215, 0, 0.24), transparent 60%),
    radial-gradient(520px 240px at 86% 112%, rgba(212, 175, 55, 0.20), transparent 64%),
    conic-gradient(from 180deg at 50% 110%, rgba(255, 215, 0, 0.0) 0deg, rgba(255, 215, 0, 0.18) 50deg, rgba(255, 122, 0, 0.16) 120deg, rgba(255, 215, 0, 0.0) 210deg, rgba(212, 175, 55, 0.14) 290deg, rgba(255, 215, 0, 0.0) 360deg);
  filter: blur(0.2px);
  opacity: 0.95;
  mix-blend-mode: multiply;
  transform: translateY(0) translateX(0);
  will-change: transform, opacity;
  animation: fireFlow 3.8s ease-in-out infinite;
}

.why-top .service-icon {
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(212,175,55,0.14);
}

.why-top .service-box:hover {
  box-shadow: 0 34px 70px rgba(212,175,55,0.26);
}

.why-top .service-box:hover::after {
  opacity: 1;
}

@keyframes emberDrift {
  0% {
    background-position: 0 0;
    opacity: 0.78;
  }
  50% {
    opacity: 0.92;
  }
  100% {
    background-position: 220px 140px;
    opacity: 0.78;
  }
}

@keyframes fireFlow {
  0% {
    transform: translateY(0) translateX(-1%);
  }
  40% {
    transform: translateY(-1.2%) translateX(1%);
  }
  70% {
    transform: translateY(0.6%) translateX(-0.5%);
  }
  100% {
    transform: translateY(0) translateX(-1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-top .service-box::before,
  .why-top .service-box::after {
    animation: none !important;
  }
}

/* ================= WHY CHOOSE SECTION ================= */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2332 100%);
  color: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-box {
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(244, 215, 120, 0.25);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.why-box:hover {
  background: rgba(244, 215, 120, 0.08);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.why-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.why-box p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.testimonial-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.testimonial-box:hover {
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
}

.stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.author-info h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  color: var(--text-light);
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ================= FOOTER ================= */
.elite-footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(244, 215, 120, 0.22);
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.8;
}

.elite-footer h5 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.elite-footer ul {
  list-style: none;
}

.elite-footer li {
  margin-bottom: 10px;
}

.elite-footer a {
  color: #cbd5e1;
  font-size: 14px;
  transition: all 0.3s ease;
}

.elite-footer a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* Footer contact icons alignment */
.elite-footer p {
  font-size: 14px;
  line-height: 2;
  color: #cbd5e1;
}

.elite-footer p i {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  vertical-align: -4px;
  margin-right: 8px;
  display: inline-block;
}

.footer-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 13px;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: #cbd5e1;
  font-size: 13px;
}

.col-lg-4 {
  grid-column: span 1;
}

.col-lg-2 {
  grid-column: span 1;
}

.col-md-6 {
  grid-column: span 1;
}

/* ================= UTILITY CLASSES ================= */
.bg-light {
  background: var(--light-bg);
}

.g-4 {
  gap: 30px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-4 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-section {
    background-size: cover;
    background-position: center;
    animation: backgroundSlide 12s ease-in-out infinite;
  }

  .hero-content {
    padding-top: 20px;
    padding-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 0;
  }

  .hero-script {
    white-space: normal;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-right p {
    display: none;
  }

  .hero-stats-overlay {
    position: relative;
    background: transparent;
    padding: 20px 0;
    margin-top: 0;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Main service categories responsive */
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Mobile nav styling is handled in the (max-width: 1000px) block
     to keep behavior consistent across all mobile sizes. */

  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: auto;
    background-attachment: scroll;
    background-size: cover;
  }

  .hero-actions {
    flex-direction: column;
  }

  /* move stats overlay below hero on small screens so it doesn't cover content */
  .hero-stats-overlay {
    position: relative;
    background: transparent;
    padding: 20px 0 10px;
    animation: none;
  }

  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    padding: 0 20px;
  }

  .stat-item .stat-number {
    font-size: 24px;
  }

  .stat-item .stat-label {
    font-size: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .stats-section,
  .services-section,
  .why-choose-section,
  .testimonials-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .elite-footer {
    padding: 40px 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }

  .brand img {
    height: 55px;
  }

  .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-item .stat-number {
    font-size: 20px !important;
  }

  .stat-item .stat-label {
    font-size: 9px;
  }

  .stats-container {
    gap: 12px;
    padding: 0 15px;
  }

  .row {
    grid-template-columns: 1fr;
  }

  /* Main service categories mobile */
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 18px;
  }
}

/* ================= VISA SERVICES PAGE STYLES ================= */

/* Hero Visa Section */
.hero-section.hero-visa {
  /* gradient overlay plus background image */
  background: linear-gradient(135deg, rgba(15, 12, 0, 0.65), rgba(10, 8, 0, 0.35)),
              url('../img/visa-services.png') center/cover no-repeat;
  padding: 100px 0 80px;
}

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

.hero-visa-content {
  color: white;
}

.hero-visa-content .hero-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(235, 245, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visa-content h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin: 20px 0;
  color: white;
}

.hero-visa-content h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(244, 215, 120, 0.55);
}

.hero-visa-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(235, 245, 255, 0.9);
}

.hero-visa-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-visa-stats .stat {
  display: flex;
  flex-direction: column;
}

.hero-visa-stats .stat strong {
  font-size: 32px;
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 30px rgba(244, 215, 120, 0.35);
}

.hero-visa-stats .stat span {
  font-size: 13px;
  color: rgba(235, 245, 255, 0.8);
  margin-top: 4px;
  font-weight: 500;
}

.hero-visa-image {
  position: relative;
}

/* Ensure hero text is in front of background/overlay */
.hero-section.hero-visa {
  position: relative;
}

.hero-visa-content {
  position: relative;
  z-index: 3;
}

.hero-visa-image {
  position: relative;
  z-index: 1;
}

/* Visa Cards Grid */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.visa-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
}

.visa-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--primary);
}

.visa-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.visa-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.visa-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.visa-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary), #b8941e);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.visa-badge.premium {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
}

.visa-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.visa-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.visa-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.visa-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.visa-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.visa-highlights span {
  background: rgba(212, 175, 55, 0.08);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.visa-cta {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.visa-cta:hover {
  transform: translateX(4px);
  color: var(--primary-dark);
}

/* Process Timeline */
.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #b8941e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.process-step h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.process-icons {
  font-size: 24px;
  margin-top: 16px;
}

.process-arrow {
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin: 0 10px;
}

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

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid #f0f5fa;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #f0f5fa;
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-visa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .hero-visa-content h1 {
    font-size: 38px;
  }

  .hero-visa-stats {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section.hero-visa {
    padding: 70px 0 50px;
  }

  .hero-visa-content h1 {
    font-size: 28px;
  }

  .hero-visa-content p {
    font-size: 14px;
  }

  .hero-visa-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-visa-stats .stat strong {
    font-size: 24px;
  }

  .visa-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 24px 16px;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .process-step h5 {
    font-size: 15px;
  }

  .process-step p {
    font-size: 12px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .benefit-icon {
    font-size: 36px;
  }

  .visa-card-image {
    height: 200px;
  }

  .visa-card-content {
    padding: 24px;
  }
}

/* ================= MODERN CONTACT PAGE STYLES ================= */

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-form-box,
.contact-info-box {
  display: flex;
  flex-direction: column;
}

.form-header,
.info-header {
  margin-bottom: 30px;
}

.form-header h2,
.info-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-header h2 span,
.info-header h2 span {
  color: var(--primary);
}

.form-header p,
.info-header p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Modern Form Styling */
.modern-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.form-group {
  margin-bottom: 24px;
}

.form-group:last-of-type {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: -0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8eef7;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #fafbff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8c5d9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

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

.form-error {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
}

.btn-submit {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #b8941e 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Contact Info Cards */
.info-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 2px solid #f0f5fa;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.info-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.info-card strong {
  color: var(--text-dark);
}

.emergency-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(244, 215, 120, 0.07));
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.social-card {
  background: linear-gradient(135deg, var(--primary) 0%, #b8941e 100%);
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-top: auto;
}

.social-card h5 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Quick Contact Section */
.quick-contact-section {
  padding: 80px 0;
  background: #f8faff;
}

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

.method-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #f0f5fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.method-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.method-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.method-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.method-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.method-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid #f0f5fa;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  background: #fafbff;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-toggle {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  background: #fafbff;
  border-top: 1px solid #f0f5fa;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background: white;
  color: var(--primary);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Contact Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 215, 120, 0.08) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 16px 0 12px;
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .quick-contact-section {
    padding: 60px 0;
  }

  .faq-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .contact-grid {
    gap: 30px;
  }

  .modern-form {
    padding: 30px;
  }

  .contact-methods {
    gap: 20px;
  }

  .method-card {
    padding: 30px 20px;
  }

  .form-header h2,
  .info-header h2,
  .section-header h2 {
    font-size: 26px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .section-header p {
    font-size: 14px;
  }

  .method-btn,
  .btn-submit,
  .cta-btn {
    font-size: 13px;
    padding: 12px 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 20px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 20px 16px;
  }
}

/* ================= PRO SERVICES MODERNIZATION ================= */

.hero-pro {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(244, 215, 120, 0.06)) !important;
  position: relative;
  overflow: hidden;
}

.hero-pro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 215, 120, 0.12), transparent);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

/* Professional PRO Banner Hero */
.hero-pro-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0c00 0%, #1f1700 50%, #3a2a00 100%);
  overflow: hidden;
}

.hero-pro-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.hero-pro-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pro-text {
  color: white;
  z-index: 2;
}

.hero-pro-text .hero-tag {
  display: inline-block;
  background: rgba(244, 215, 120, 0.18);
  color: #ffd700;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(244, 215, 120, 0.35);
  backdrop-filter: blur(10px);
}

.hero-pro-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-pro-text h1 span {
  background: linear-gradient(135deg, #ffd700, #f4d778);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 8px;
}

.hero-pro-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-pro-text .btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8941e);
  color: white;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.30);
  text-decoration: none;
  display: inline-block;
}

.hero-pro-text .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #b8941e, #9a7a15);
}

.hero-pro-image-col {
  position: relative;
  z-index: 2;
}

.hero-pro-image-col img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hero-pro-image-col img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.4);
}

/* Responsive PRO Hero */
@media (max-width: 1024px) {
  .hero-pro-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-pro-text h1 {
    font-size: 38px;
  }

  .hero-pro-text p {
    font-size: 15px;
  }

  .hero-pro-banner {
    min-height: 450px;
  }

  .hero-pro-image-col img {
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .hero-pro-text h1 {
    font-size: 28px;
  }

  .hero-pro-text p {
    font-size: 14px;
  }

  .hero-pro-text .btn-primary {
    padding: 12px 32px;
    font-size: 14px;
  }

  .hero-pro-banner {
    min-height: 380px;
  }

  .hero-pro-image-col img {
    max-width: 100%;
    border-radius: 15px;
  }
}

.hero-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pro-image {
  position: relative;
  text-align: center;
}

.hero-pro-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
  width: 100%;
  max-width: 450px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

.hero-pro-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(212, 175, 55, 0.35);
}

/* Modern Service Cards Grid */
.pro-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.pro-service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.pro-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.22);
  border-color: rgba(244, 215, 120, 0.5);
}

.pro-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.pro-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(244, 215, 120, 0.18));
  z-index: 1;
}

.pro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 0;
}

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

.pro-card-content {
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.pro-card-content .service-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
  animation: bounce 2s ease-in-out infinite;
}

.pro-card-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.pro-service-card:hover .pro-card-content h5 {
  color: var(--primary);
}

.pro-card-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us Section */
.pro-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.pro-why-image {
  position: relative;
}

.pro-why-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pro-why-image:hover img {
  transform: scale(1.05);
}

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

.pro-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.04);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.pro-why-item:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(8px);
}

.pro-why-icon {
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
}

.pro-why-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--dark);
}

.pro-why-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Benefits Grid */
.pro-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.pro-benefit-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 215, 120, 0.05));
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.pro-benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(244, 215, 120, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pro-benefit-card:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(244, 215, 120, 0.1));
  border-color: var(--accent);
  transform: translateY(-8px);
}

.pro-benefit-card:hover::before {
  opacity: 1;
}

.pro-benefit-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.pro-benefit-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.pro-benefit-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive PRO Services */
@media (max-width: 1024px) {
  .hero-pro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pro-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pro-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pro-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero-pro::before {
    width: 300px;
    height: 300px;
  }

  .pro-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pro-card-image {
    height: 180px;
  }

  .pro-card-content {
    padding: 20px 16px;
  }

  .pro-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pro-benefit-card {
    padding: 24px 20px;
  }

  .pro-benefit-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .pro-why-item {
    padding: 16px;
    gap: 12px;
  }

  .pro-why-item h5 {
    font-size: 15px;
  }

  .pro-why-item p {
    font-size: 13px;
  }

  .hero-pro .container h1 {
    font-size: 28px;
  }
}

  .hero-pro-content h1 {
    font-size: 36px;
  }

  .hero-pro-content p {
    font-size: 16px;
  }

  .hero-pro-content .btn-primary {
    padding: 14px 40px;
    font-size: 15px;
  }

  .hero-pro-banner {
    min-height: 420px;
  }


/* Main categories grid (overrides inline layout on services.html) */
.main-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.category-card {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 2px solid #e0e8f5;
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(212,175,55,0.10);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle background patterns (per card) */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.88;
  pointer-events: none;
  background-repeat: repeat;
  background-position: 0 0;
  will-change: background-position, transform;
  mix-blend-mode: multiply;
}

/* Light sweep / shimmer overlay */
.category-card::after {
  content: '';
  position: absolute;
  inset: -40% -60%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 215, 0, 0.10) 35%,
      rgba(212, 175, 55, 0.22) 50%,
      rgba(255, 215, 0, 0.10) 65%,
      transparent 100%
    );
  transform: translateX(-35%) translateY(0) rotate(2deg);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  animation: categoryCardShimmer 3.4s ease-in-out infinite;
  will-change: transform, opacity;
}

.category-card > * {
  position: relative;
  z-index: 1;
}

/* 1) Visa & Immigration: flight-path dots + diagonal route lines */
.main-categories-grid > a:nth-child(1) .category-card::before {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(212,175,55,0.28) 0 2px, transparent 2px 60px),
    radial-gradient(circle at 78% 26%, rgba(212,175,55,0.22) 0 2px, transparent 2px 70px),
    radial-gradient(circle at 30% 78%, rgba(10, 29, 58, 0.12) 0 2px, transparent 2px 60px),
    repeating-linear-gradient(135deg, rgba(212,175,55,0.20) 0 2px, transparent 2px 14px);
  background-size: 520px 520px, 520px 520px, 520px 520px, 18px 18px;
  animation: categoryPatternVisa 18s linear infinite;
}

/* 2) Dubai PRO Services: clean grid/building blueprint */
.main-categories-grid > a:nth-child(2) .category-card::before {
  background-image:
    linear-gradient(to right, rgba(10, 29, 58, 0.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 29, 58, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(212,175,55,0.18) 0 140px, transparent 140px);
  background-size: 26px 26px, 26px 26px, 520px 520px;
  animation: categoryPatternGrid 22s linear infinite;
}

/* 3) Business Solutions: subtle dotted/circuit pattern */
.main-categories-grid > a:nth-child(3) .category-card::before {
  background-image:
    radial-gradient(circle, rgba(10, 29, 58, 0.14) 0 1.8px, transparent 1.8px),
    radial-gradient(circle at 15% 30%, rgba(212,175,55,0.18) 0 140px, transparent 140px);
  background-size: 18px 18px, 520px 520px;
  background-position: 0 0, 60% 15%;
  animation: categoryPatternDots 20s linear infinite;
}

/* 4) Legal & Attestation: refined diagonal lines */
.main-categories-grid > a:nth-child(4) .category-card::before {
  background-image:
    repeating-linear-gradient(45deg, rgba(10, 29, 58, 0.12) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 18% 25%, rgba(212,175,55,0.16) 0 160px, transparent 160px);
  background-size: 14px 14px, 520px 520px;
  animation: categoryPatternLegal 24s linear infinite;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(212,175,55,0.20);
  transform: translateY(-6px);
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover::after {
  opacity: 0.45;
}

@keyframes categoryCardShimmer {
  0% {
    opacity: 0.08;
    transform: translateX(-45%) translateY(0) rotate(2deg);
  }
  45% {
    opacity: 0.28;
  }
  100% {
    opacity: 0.08;
    transform: translateX(45%) translateY(-2%) rotate(2deg);
  }
}

@keyframes categoryPatternVisa {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 140px 120px, -120px 90px, 90px -110px, 180px 180px;
  }
}

@keyframes categoryPatternGrid {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 120px 0, 0 120px, -160px 140px;
  }
}

@keyframes categoryPatternDots {
  0% {
    background-position: 0 0, 60% 15%;
  }
  100% {
    background-position: 180px 160px, 70% 25%;
  }
}

@keyframes categoryPatternLegal {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 240px 240px, -180px 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-card::before {
    animation: none !important;
  }

  .category-card::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

.category-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.category-card h5 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  margin-top: auto;
}

.category-card:hover .card-link {
  color: #b8941e;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .main-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .main-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    padding: 32px 24px;
  }
}

/* ================= CONTACT PAGE FORM SECTION ================= */
.contact-form-section {
  padding: 80px 0;
  background:
    radial-gradient(900px circle at 18% 18%, rgba(255, 215, 0, 0.12), transparent 55%),
    radial-gradient(760px circle at 82% 12%, rgba(212, 175, 55, 0.10), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbf6e6 55%, #ffffff 100%);
  position: relative;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(212,175,55,0.10) 0 2px, transparent 2px 70px),
    radial-gradient(circle at 78% 26%, rgba(10, 29, 58, 0.05) 0 2px, transparent 2px 80px);
  opacity: 0.75;
}

.contact-form-section .container {
  position: relative;
  z-index: 1;
}

.contact-form-section-header {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 820px;
}

.contact-form-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #8b7500;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.22);
}

.contact-form-title {
  font-size: 40px;
  font-weight: 900;
  margin: 14px 0 10px;
  color: #0a1d3a;
}

.contact-form-title span {
  color: var(--primary);
}

.contact-form-subtitle {
  font-size: 15px;
  color: var(--text-light);
}

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

.contact-form-box,
.contact-info-box {
  background: white;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 14px 45px rgba(212,175,55,0.18);
  position: relative;
}

.contact-form-box {
  background:
    radial-gradient(700px circle at 12% 10%, rgba(255, 215, 0, 0.10), transparent 55%),
    linear-gradient(180deg, #ffffff, #fffdf7);
}

.contact-form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,175,55,0.55), rgba(10,29,58,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

/* Make the section anchor land nicely below the fixed header */
#contact-form-section {
  scroll-margin-top: 90px;
}

/* Highlight when navigating to the form via anchor */
#contact-form:target {
  border-radius: 14px;
  padding: 6px;
  outline: 2px solid rgba(212,175,55,0.45);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.10), 0 18px 60px rgba(212,175,55,0.20);
  animation: contactFormFocus 1.4s ease-out 1;
}

@keyframes contactFormFocus {
  0% {
    box-shadow: 0 0 0 0 rgba(212,175,55,0.0), 0 0 0 rgba(212,175,55,0.0);
  }
  100% {
    box-shadow: 0 0 0 6px rgba(212,175,55,0.10), 0 18px 60px rgba(212,175,55,0.20);
  }
}

@media (max-width: 768px) {
  .contact-form-title {
    font-size: 30px;
  }
}

.form-header,
.info-header {
  margin-bottom: 36px;
}

.form-header h2,
.info-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.form-header h2 span,
.info-header h2 span {
  color: var(--primary);
}

.form-header p,
.info-header p {
  font-size: 14px;
  color: var(--text-light);
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 2px solid #e0e8f5;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  min-height: 16px;
}

.btn-submit {
  background: linear-gradient(135deg, #d4af37, #b8941e);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

.info-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(244, 215, 120, 0.03));
  border: 2px solid #e0e8f5;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.info-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.emergency-badge {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.social-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(244, 215, 120, 0.03));
  border: 2px solid #e0e8f5;
  border-radius: 12px;
  padding: 28px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.social-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
}

.social-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-box,
  .contact-info-box {
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .hero-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .contact-form-box,
  .contact-info-box {
    padding: 28px;
  }
}

/* ================= QUICK CONTACT & FAQ SECTIONS ================= */
.quick-contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.method-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(244, 215, 120, 0.03));
  border: 2px solid #e0e8f5;
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.method-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.method-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.method-btn {
  background: linear-gradient(135deg, #d4af37, #b8941e);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.method-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.faq-section {
  padding: 80px 0;
  background: #f8fbff;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 2px solid #e0e8f5;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: white;
  border: none;
  border-bottom: 2px solid #e0e8f5;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fbff;
  color: var(--primary);
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 20px 24px;
  background: white;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  display: none;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(42, 31, 0, 0.92), rgba(10, 8, 0, 0.92)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  background-attachment: fixed;
  text-align: center;
  color: white;
  position: relative;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(235,245,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background: white;
  color: var(--primary);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.cta-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 32px;
  }
  

/* ================= ABOUT PAGE TWEAKS ================= */
.about-page .hero-section {
  padding: 90px 0 70px;
}

.about-page .hero-content h1 {
  font-size: 64px;
}

.about-page .hero-content p {
  font-size: 17px;
  max-width: 780px;
}

.about-page .hero-content {
  max-width: none;
  width: 100%;
}

.about-page .hero-section {
  display: block;
  min-height: 520px;
  padding: 90px 0 80px;
}

.about-hero-grid {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.about-hero-grid .hero-copy {
  max-width: 780px;
}

.about-page .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0 20px;
  max-width: 520px;
}

.about-page .hero-cta a {
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
}

/* hero-stats-panel removed */

.about-page .stat-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff;
  backdrop-filter: blur(6px);
}

.about-page .stat-value {
  font-size: 28px;
  font-weight: 800;
}

.about-page .stat-label {
  font-size: 13px;
  opacity: 0.9;
}

.about-page .services-section .service-box {
  margin-bottom: 24px;
}

.about-page .services-section.bg-light {
  padding-top: 80px;
}

@media (max-width: 1024px) {
  .about-page .hero-section {
    padding: 70px 0 60px;
  }
  .about-page .hero-content h1 {
    font-size: 48px;
  }
  .about-hero-grid {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-page .hero-content {
    text-align: center;
  }
  .about-page .hero-tag {
    margin: 0 auto;
  }
  .about-page .hero-content h1 {
    font-size: 36px;
  }
  .about-page .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-page .hero-cta {
    justify-content: center;
  }
  .about-page #story .row {
    row-gap: 28px;
  }
}

@media (max-width: 540px) {
  .about-page .hero-content h1 {
    font-size: 32px;
  }
  .about-page .stat-value {
    font-size: 26px;
  }
  .about-page .hero-cta {
    gap: 10px;
  }
}
  .cta-section p {
    font-size: 16px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
  }
}
