/*
 * Ahtsham Munawar Services W.L.L.
 * Official Stylesheet
 * Custom designed corporate theme
 */

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

:root {
  /* Color Palette */
  --primary-navy: #0B1F3B;
  --primary-navy-light: #17325C;
  --primary-navy-dark: #071426;
  --accent-gold: #C5A358;
  --accent-gold-light: #DFBE76;
  --accent-gold-dark: #A6853B;
  --accent-blue: #3A86C8;
  
  --bg-light: #F8F9FC;
  --bg-white: #FFFFFF;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --text-light: #F3F4F6;
  --text-white: #FFFFFF;
  
  /* Borders and Shadows */
  --border-color: #E5E7EB;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(11, 31, 59, 0.08);
  --shadow-gold: 0 10px 25px rgba(197, 163, 88, 0.15);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Spacing (8px Grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  
  /* Widths */
  --max-width-site: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-1);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

li {
  list-style: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* Top utility bar */
.top-bar {
  background-color: var(--primary-navy-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 0;
  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: var(--space-2);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-gold);
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Header & Nav */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.header-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  border: 1px solid var(--accent-gold);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-subtext {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

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

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

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

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

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-navy-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--primary-navy-dark);
  color: var(--text-white);
  padding: var(--space-8) 0 var(--space-12) 0;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 30%, rgba(23, 50, 92, 0.2) 0%, var(--primary-navy-dark) 80%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-6);
}

.hero-content {
  max-width: 620px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(197, 163, 88, 0.15);
  color: var(--accent-gold-light);
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(197, 163, 88, 0.3);
  margin-bottom: var(--space-2);
}

.hero-title {
  font-size: 3.25rem;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: var(--space-2);
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-features {
  display: flex;
  gap: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94A3B8;
}

.hero-feat-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 380px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background-color: var(--bg-white);
  color: var(--primary-navy);
  padding: 16px var(--space-3);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  border-left: 4px solid var(--accent-gold);
}

.hero-badge-float .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
}

.hero-badge-float .lbl {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

/* Sections */
.section {
  padding: var(--space-8) 0;
}

.section-bg-alt {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-6) auto;
}

.section-header .section-tag {
  color: var(--accent-gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-header .section-title {
  font-size: 2.25rem;
}

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

/* Card Grid Styles */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-3);
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-navy);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 163, 88, 0.2);
}

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

.service-img-container {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-3);
  position: relative;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-icon {
  background-color: rgba(11, 31, 59, 0.05);
  color: var(--primary-navy);
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  transition: var(--transition-normal);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-navy);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary-navy);
  color: var(--accent-gold);
}

.service-card:hover .service-card-icon svg {
  stroke: var(--accent-gold);
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
  flex-grow: 1;
}

.service-card-points {
  margin-bottom: var(--space-3);
}

.service-card-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-card-points svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.card-link {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-normal);
}

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

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

/* About Section Home */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-6);
}

.about-home-content {
  padding-right: var(--space-3);
}

.about-home-visual {
  position: relative;
}

.about-home-img-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2);
}

.about-home-img {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
}

.about-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home-img.tall {
  height: 340px;
  margin-top: -30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  background-color: rgba(197, 163, 88, 0.1);
  color: var(--accent-gold-dark);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold-dark);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 2px;
}

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

/* Why Choose Us */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}

.wcu-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: var(--space-3);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.wcu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 163, 88, 0.15);
}

.wcu-icon-box {
  color: var(--accent-gold-dark);
  margin-bottom: 12px;
}

.wcu-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-gold-dark);
}

.wcu-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.wcu-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-white);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin: var(--space-4) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(197, 163, 88, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.cta-text {
  max-width: 600px;
}

.cta-title {
  color: var(--text-white);
  font-size: 1.85rem;
  margin-bottom: 10px;
}

.cta-desc {
  color: #94A3B8;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Floating Elements */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25D366;
  color: var(--text-white);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

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

/* Footer styling */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: #94A3B8;
  padding: var(--space-6) 0 var(--space-2) 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-col-title {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
  position: relative;
  padding-bottom: 8px;
}

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

.footer-col-desc {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94A3B8;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.footer-hours-table {
  width: 100%;
}

.footer-hours-table td {
  padding: 4px 0;
}

.footer-hours-table td:last-child {
  text-align: right;
  color: var(--text-white);
  font-weight: 500;
}

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

.footer-bottom-links {
  display: flex;
  gap: var(--space-3);
}

/* Page Intro/Header (For Inner Pages) */
.page-header {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(197, 163, 88, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  color: var(--text-white);
  font-size: 2.75rem;
  margin-bottom: 8px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94A3B8;
}

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

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

/* About Page Styles */
.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.about-mv-card {
  background-color: var(--bg-white);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.about-mv-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(197, 163, 88, 0.1);
  color: var(--accent-gold-dark);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.about-mv-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.value-card {
  background-color: var(--bg-white);
  padding: var(--space-3);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(11, 31, 59, 0.05);
  color: var(--primary-navy);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2) auto;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-navy);
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.value-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Service Detail Sections */
.detailed-services-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.detailed-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-6);
}

.detailed-service-item:nth-child(even) {
  direction: rtl;
}

.detailed-service-item:nth-child(even) .detailed-service-content {
  direction: ltr;
}

.detailed-service-content {
  padding: var(--space-2) 0;
}

.detailed-service-tag {
  color: var(--accent-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.detailed-service-title {
  font-size: 2.25rem;
  margin-bottom: var(--space-2);
}

.detailed-service-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
}

.detailed-service-list {
  margin-bottom: var(--space-4);
}

.detailed-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.detailed-service-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.detailed-service-list strong {
  color: var(--primary-navy);
}

.detailed-service-img-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  border: 1px solid var(--border-color);
}

.detailed-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Page Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  align-items: start;
}

.contact-info-card {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--text-white);
  margin-bottom: var(--space-3);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 1px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
}

.contact-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
}

.contact-hours h4 {
  color: var(--text-white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--bg-white);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-2);
}

.form-desc {
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--accent-gold-dark);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(197, 163, 88, 0.15);
}

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

.form-error {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-control.invalid {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.form-control.invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Map Section */
.map-section {
  margin-top: var(--space-6);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 350px;
}

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

/* Custom Alert / Toast Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 20, 38, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.success-modal.active {
  opacity: 1;
  pointer-events: all;
}

.success-card {
  background-color: var(--bg-white);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: translateY(30px);
  transition: var(--transition-normal);
  border-top: 6px solid var(--accent-gold);
}

.success-modal.active .success-card {
  transform: translateY(0);
}

.success-icon-box {
  width: 72px;
  height: 72px;
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3) auto;
}

.success-icon-box svg {
  width: 38px;
  height: 38px;
  stroke: #25D366;
  stroke-width: 3;
}

.success-title {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.success-message {
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  .hero-title { font-size: 2.75rem; }
  .hero-container { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-visual { display: none; }
  .about-home { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
  .detailed-service-item { grid-template-columns: 1fr; gap: var(--space-3); }
  .detailed-service-item:nth-child(even) { direction: ltr; }
  .detailed-service-img-wrapper { height: 300px; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4);
    gap: var(--space-3);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    width: 100%;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
  }
  .nav-link::after { display: none; }
  .nav-cta {
    width: 100%;
    margin-top: var(--space-2);
  }
  .nav-cta .btn {
    width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .about-mission-vision { grid-template-columns: 1fr; }
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
