/*
Theme Name: MMAR Technical & Cleaning Services
Theme URI: https://mmarservices.com/
Author: MMAR Technical
Author URI: https://mmarservices.com/
Description: Premium WordPress theme for Mohammad Monir & Abdur Rahman Technical & Cleaning Services Dubai.
Version: 1.0.1
Text Domain: mmar-theme
*/

/* MMAR TECHNICAL & CLEANING SERVICES - COMPLETE LUXURY DESIGN SYSTEM */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Luxury Navy & Gold */
  --primary-navy: #0A192F;
  --navy-dark: #071120;
  --navy-light: #162A45;
  --navy-card: #0F2137;
  
  --accent-gold: #D4AF37;
  --accent-amber: #F59E0B;
  --accent-gold-light: #FCD34D;
  --accent-gold-glow: rgba(212, 175, 55, 0.2);
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --text-silver: #94A3B8;

  --bg-main: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;

  --border-color: #E2E8F0;
  --border-gold: rgba(212, 175, 55, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 15px 35px -10px rgba(10, 25, 47, 0.12);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-heading);
  transition: var(--transition);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- BUTTON SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: none;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #F59E0B 100%);
  color: #071120;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline-navy {
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
}

/* --- HEADER & NAVIGATION --- */
.top-bar {
  background: var(--navy-dark);
  color: var(--text-silver);
  padding: 0.5rem 0;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-item i {
  color: var(--accent-gold);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: none; /* REMOVED HEAVY DROP SHADOW */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

/* NO HARSH DROP SHADOW ON LOGO */
.brand-logo-img {
  height: 52px;
  max-width: 270px;
  width: auto;
  object-fit: contain;
  background: #FFFFFF;
  padding: 5px 14px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: none !important;
  filter: none !important;
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  background: #FFFFFF;
  border-color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: none !important;
}

.footer-logo-img {
  height: 65px;
  max-width: 280px;
  box-shadow: none !important;
}

.nav-menu, .nav-menu ul, .dropdown-menu {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.nav-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.75rem !important;
  list-style: none !important;
}

.nav-menu > li {
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  list-style: none !important;
}

.nav-menu li a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--accent-gold);
}

.nav-menu li.has-dropdown:hover > .dropdown-menu,
.nav-menu li.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block !important;
}

.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 270px !important;
  max-height: 480px !important;
  overflow-y: auto !important;
  background: var(--navy-card) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-lg) !important;
  list-style: none !important;
  padding: 0.5rem 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100 !important;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--navy-card);
}

.dropdown-menu li {
  display: block !important;
  list-style: none !important;
  width: 100% !important;
}

.dropdown-menu li a {
  padding: 0.6rem 1.25rem !important;
  display: block !important;
  font-size: 0.9rem !important;
  color: var(--text-silver) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  white-space: nowrap !important;
}

.dropdown-menu li a::after {
  display: none !important;
  content: none !important;
}

.nav-menu > li > a {
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after,
.nav-menu > li.current-menu-item > a::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  background: transparent;
  color: var(--text-light);
  font-size: 1.4rem;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(180deg, var(--primary-navy) 0%, var(--navy-dark) 100%);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.75rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-title .gold-text {
  background: linear-gradient(135deg, #FCD34D 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-silver);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trust-pills {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-silver);
}

.trust-item i {
  color: var(--accent-gold);
}

.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-media-card img.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-overlay-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 17, 32, 0.95) 0%, rgba(7, 17, 32, 0) 100%);
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag-info h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.tag-info p {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* --- STATS SECTION --- */
.stats-section {
  background: var(--navy-card);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  padding: 0.75rem;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
  display: block;
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-silver);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- SECTION SYSTEM --- */
.section {
  padding: 4.5rem 0;
  overflow: visible !important; /* ALLOW UNCLIPPED CARDS & BADGES */
}

.bg-light {
  background-color: var(--bg-secondary);
}

.bg-dark {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.sub-title {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.section-title.light {
  color: #FFFFFF;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 620px;
  margin: 0 auto;
}

.section-desc.light {
  color: var(--text-silver);
}

/* --- SERVICES SECTION & CARDS --- */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-navy);
  color: var(--accent-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  padding: 0.5rem 0.25rem 1rem;
}

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.service-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
  color: var(--accent-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary-navy);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.service-footer {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color);
}

.service-link {
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

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

/* --- AMC SECTION & PACKAGES --- */
.amc-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-light);
  overflow: visible !important;
}

.amc-banner-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3.5rem;
  align-items: center;
}

.amc-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.amc-banner-info {
  padding: 2.5rem;
}

.amc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.amc-banner-info h3 {
  color: #FFFFFF;
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.amc-banner-info p {
  color: var(--text-silver);
  margin-bottom: 1.5rem;
  font-size: 0.925rem;
}

.amc-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.chk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.chk-item i {
  color: var(--accent-gold);
}

.amc-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem; /* PREVENT BADGE CLIPPING */
  padding-bottom: 1rem;
  align-items: stretch;
  overflow: visible !important;
}

.amc-package-card {
  background: rgba(15, 33, 55, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  box-shadow: none;
}

.amc-package-card.featured {
  background: var(--navy-card);
  border: 1.5px solid var(--accent-gold);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37 0%, #F59E0B 100%);
  color: #071120;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 5;
}

.package-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.package-name {
  color: #FFFFFF;
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.package-target {
  color: var(--accent-gold);
  font-size: 0.825rem;
  font-weight: 600;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  color: var(--text-silver);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.package-features li i {
  color: var(--accent-gold);
}

/* --- WHY CHOOSE US & FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding: 0.5rem 0.25rem 1rem;
}

.feature-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.why-us-cta-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  border: 1px solid var(--border-gold);
}

.cta-banner-text h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.cta-banner-text p {
  color: var(--text-silver);
  font-size: 0.9rem;
}

.cta-banner-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* --- PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 0.5rem 0.25rem 1rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
}

.step-num-badge {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.25);
  font-family: var(--font-heading);
}

.process-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1.25rem;
}

.step-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--text-silver);
  font-size: 0.825rem;
  line-height: 1.45;
}

/* --- INDUSTRIES WE SERVE GRID --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  padding: 0.5rem 0.25rem 1rem;
}

.industry-card {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-badge-icon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 2;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 32, 0.9) 0%, rgba(7, 17, 32, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.industry-gold-bar {
  border-left: 3px solid var(--accent-gold);
  padding-left: 0.75rem;
}

.industry-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.industry-subtitle {
  color: var(--text-silver);
  font-size: 0.8rem;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  padding: 0.5rem 0.25rem 1rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.client-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
  color: var(--accent-gold);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.client-details h5 {
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.client-details span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-text a, .info-text p {
  color: var(--text-silver);
  font-size: 0.85rem;
}

.contact-form-card {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.925rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 17, 32, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-tertiary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.modal-close:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- FOOTER & DEVELOPED BY --- */
.footer {
  background: var(--navy-dark);
  color: var(--text-silver);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-silver);
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--navy-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.4rem;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-silver);
  font-size: 0.875rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.developed-by {
  color: var(--text-silver);
  font-size: 0.825rem;
}

.developed-by a {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.developed-by a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.payment-methods {
  display: flex;
  gap: 0.65rem;
  font-size: 1.35rem;
  color: var(--text-silver);
}


/* --- RESPONSIVE MEDIA QUERIES & MOBILE HORIZONTAL CAROUSELS --- */
@media (max-width: 1024px) {
  .hero-grid, .amc-banner-card, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .amc-packages-grid, .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide Top Bar on Mobile as requested */
  .top-bar {
    display: none !important;
  }

  .brand-logo-img {
    height: 46px;
    max-width: 200px;
    padding: 4px 10px;
  }
  .footer-logo-img {
    height: 56px;
    max-width: 230px;
  }
  .nav-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background: var(--primary-navy);
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding: 3rem 0 4rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .section {
    padding: 3.5rem 0;
    overflow: visible !important;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .section-desc {
    font-size: 0.875rem;
  }
  .form-row, .amc-checklist-grid {
    grid-template-columns: 1fr;
  }
  .why-us-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* --- SWIPEABLE MOBILE CAROUSEL - NO CLIPPING / NO JUMPING --- */
  .services-grid,
  .amc-packages-grid,
  .industries-grid,
  .testimonials-grid,
  .process-grid,
  .features-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 1.25rem !important;
    padding: 1.75rem 1rem 1.75rem !important; /* AMPLE PADDING FOR CARDS & BADGES */
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .services-grid::-webkit-scrollbar,
  .amc-packages-grid::-webkit-scrollbar,
  .industries-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar,
  .features-grid::-webkit-scrollbar {
    display: none !important;
  }

  .services-grid .service-card,
  .amc-packages-grid .amc-package-card,
  .industries-grid .industry-card,
  .testimonials-grid .testimonial-card,
  .process-grid .process-card,
  .features-grid .feature-box {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    min-width: 270px !important;
    scroll-snap-align: center !important;
    transform: none !important; /* DISABLE Y-TRANSLATION TO PREVENT CUTTING OFF */
  }

  .amc-package-card.featured {
    transform: none !important;
  }

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

@media (max-width: 480px) {
  .brand-logo-img {
    height: 40px;
    max-width: 160px;
    padding: 3px 8px;
  }
  .footer-logo-img {
    height: 50px;
    max-width: 190px;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-description {
    font-size: 0.875rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* --- INNER SERVICE PAGES STYLING --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  border-bottom: 2px solid var(--border-gold);
  color: #FFFFFF;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-silver);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--accent-gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-silver);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.page-hero-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  max-height: 380px;
}

.page-hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Detail Content Grid */
.detail-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}

.service-article {
  background: #FFFFFF;
}

.article-section {
  margin-bottom: 3rem;
}

.article-h2 {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.article-h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.article-p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.feature-box-item {
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-gold);
}

.feature-box-item h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.feature-box-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question i {
  color: var(--accent-gold);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  color: #FFFFFF;
  position: sticky;
  top: 90px;
  margin-bottom: 2rem;
}

.sidebar-widget .form-group {
  margin-bottom: 1rem;
}

.sidebar-widget .form-label {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: block;
}

.sidebar-widget .form-input,
.sidebar-widget .form-select,
.sidebar-widget .form-textarea {
  background-color: #FFFFFF;
  color: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
}

.sidebar-widget .form-select option {
  background-color: #FFFFFF;
  color: #0F172A;
}

.widget-title {
  font-size: 1.35rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.widget-cta-btn {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .page-hero-grid, .detail-layout-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-widget {
    position: static;
  }
  .page-hero-title {
    font-size: 2rem;
  }
}

.article-img-card {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
}

.article-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

