/*
Theme Name: General Clean
Theme URI: http://general-clean.local/
Author: General Clean
Description: قالب جينرال كلينينج لخدمات النظافة الاحترافية والتعقيم
Version: 1.0
Text Domain: general-clean
*/

/* ========================================
   جينرال كلينينج - General Clean
   Main Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --green-dark: #1b3d12;
  --green-darker: #132b0d;
  --green-primary: #5da628;
  --green: #6eb92e;
  --green-light: #7bb834;
  --green-lighter: #8fe139;
  --brand-lime: #9ded44;
  --brand-dark: #1a1e1b;
  --brand-blue: #0284c7;
  --brand-yellow: #f59e0b;
  --brand-red: #ef4444;
  --orange: #f97316;
  --orange-hover: #ea580c;
  --accent-bg: #f2f9ed;
  --accent-border: #d2ecb8;
  --white: #ffffff;
  --gray-50: #f8faf8;
  --gray-100: #f0f4f0;
  --gray-200: #e1e7e1;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.22);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

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

.section-padding { padding: 5rem 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-green { background-color: rgba(123,184,52,0.15); color: var(--green-dark); border: 1px solid rgba(123,184,52,0.3); }
.badge-blue { background-color: rgba(2,132,199,0.1); color: var(--brand-blue); }
.badge-yellow { background-color: rgba(245,158,11,0.15); color: #b45309; }
.badge-orange { background-color: rgba(249,115,22,0.1); color: var(--orange); }
.badge-red { background-color: rgba(239,68,68,0.1); color: var(--brand-red); }
.badge-white { background-color: rgba(255,255,255,0.18); color: var(--brand-lime); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); }

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.badge-dot-green { background-color: var(--green-light); }

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
}

/* ---------- WordPress Nav Menu Integration ---------- */
.nav-desktop .menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop .menu li a {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: block;
}

.nav-desktop .menu li a:hover {
  color: var(--green-dark);
  background-color: var(--accent-bg);
}

.nav-desktop .menu li.current-menu-item a,
.nav-desktop .menu li.current_page_item a {
  color: var(--white);
  background-color: var(--green-light);
  box-shadow: 0 4px 12px rgba(123,184,52,0.3);
}

.nav-mobile .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile .menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  font-weight: 600;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  transition: all 0.2s ease;
}

.nav-mobile .menu li a:hover { background-color: var(--accent-bg); color: var(--green-dark); }
.nav-mobile .menu li.current-menu-item a,
.nav-mobile .menu li.current_page_item a { background-color: var(--green-light); color: var(--white); }

/* ---------- Header ---------- */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header > .container:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(123,184,52,0.35);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 20px rgba(123,184,52,0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--green-dark);
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

.menu-toggle:hover { background-color: var(--accent-bg); }

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.nav-mobile {
  display: none;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.nav-mobile.open { display: block; }

.nav-mobile .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: var(--white);
  padding: 0.85rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(123,184,52,0.3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: inherit;
}

.btn-yellow {
  background: linear-gradient(135deg, #7bb834, #5ea827);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(123,184,52,0.35);
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #8fe139, #6eb92e);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,184,52,0.45);
  color: var(--white);
}

.btn-glass {
  background-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-glass:hover {
  background-color: rgba(255,255,255,0.22);
  border-color: var(--brand-lime);
  color: var(--white);
}

.btn-green {
  background-color: var(--green-light);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(123,184,52,0.3);
}
.btn-green:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.95rem; }

.btn svg {
  width: 20px;
  height: 20px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1b3d12 0%, #29541a 45%, #5da628 100%);
  padding: 4.5rem 0 6.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero .deco-circle {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

.page-hero .deco-circle-1 { width: 180px; height: 180px; top: 30px; right: 80px; }
.page-hero .deco-circle-2 { width: 260px; height: 260px; bottom: 10px; left: 40px; border-width: 1px; }

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 800;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* ---------- Hero Section (Home) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(19,43,13,0.96) 0%, rgba(27,61,18,0.88) 50%, rgba(41,84,26,0.55) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

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

.hero-content h1 {
  font-size: 3.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--brand-lime);
  text-shadow: 0 2px 20px rgba(157,237,68,0.4);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem;
  max-width: 560px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(157,237,68,0.4);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  font-family: inherit;
}

.stat-number.c-yellow { color: var(--brand-lime); }
.stat-number.c-green { color: #8fe139; }
.stat-number.c-blue { color: #38bdf8; }
.stat-number.c-orange { color: #fb923c; }

.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- About Section (Home) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
}

.about-text h2 { font-size: 2.25rem; color: var(--gray-900); margin-bottom: 1.5rem; }
.about-text h2 span { color: var(--green-light); }

.about-text p {
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-text .highlight {
  color: var(--green-dark);
  background-color: var(--accent-bg);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border-right: 4px solid var(--green-light);
}

.about-text .highlight strong {
  color: var(--green-primary);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.about-floating-badge img {
  height: 52px;
  width: auto;
  box-shadow: none;
}

.about-floating-badge .badge-text small {
  color: var(--gray-500);
  font-size: 0.825rem;
  display: block;
}

.about-floating-badge .badge-text strong {
  color: var(--green-light);
  font-size: 1.35rem;
  display: block;
  font-weight: 800;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--white);
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  fill: none;
}

.fi-green { background-color: rgba(123,184,52,0.15); }
.fi-green svg { stroke: var(--green-light); }
.fi-blue { background-color: rgba(2,132,199,0.1); }
.fi-blue svg { stroke: var(--brand-blue); }
.fi-yellow { background-color: rgba(245,158,11,0.15); }
.fi-yellow svg { stroke: #d97706; }
.fi-orange { background-color: rgba(249,115,22,0.12); }
.fi-orange svg { stroke: var(--orange); }

.feature-card p {
  color: var(--gray-800);
  line-height: 1.75;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-6px);
  border-color: var(--accent-border);
}

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

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

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

.service-card-image .card-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
}

.card-icon-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  fill: none;
}

.cib-green svg { stroke: var(--green-light); }
.cib-blue svg { stroke: var(--brand-blue); }
.cib-orange svg { stroke: var(--orange); }
.cib-yellow svg { stroke: #d97706; }
.cib-red svg { stroke: var(--brand-red); }

.service-card-content {
  padding: 1.75rem;
}

.service-card-content h3 {
  font-size: 1.35rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-card-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

.card-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

.cl-green { color: var(--green-light); }
.cl-green:hover { color: var(--green-dark); }
.cl-blue { color: var(--brand-blue); }
.cl-orange { color: var(--orange); }

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: linear-gradient(135deg, #132b0d 0%, #1b3d12 60%, #29541a 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section .deco-blur-1 {
  position: absolute; top: -100px; left: -100px; width: 400px; height: 400px;
  background-color: rgba(123,184,52,0.18); border-radius: 50%; filter: blur(100px);
}
.testimonials-section .deco-blur-2 {
  position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px;
  background-color: rgba(2,132,199,0.12); border-radius: 50%; filter: blur(100px);
}

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

.testimonial-card {
  background-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1.25rem;
  padding: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(157,237,68,0.3);
}

.testimonial-quote-icon svg {
  width: 32px;
  height: 32px;
  fill: rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
}

.testimonial-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author strong { display: block; font-size: 0.98rem; }
.testimonial-author span { color: var(--gray-400); font-size: 0.825rem; }

/* ---------- More Services Grid ---------- */
.more-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.more-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.more-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.more-card-image {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.more-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.more-card-image h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-size: 1.05rem;
}

.more-card-content {
  padding: 1.25rem;
}

.more-card-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #132b0d 0%, #1b3d12 40%, #5da628 100%);
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-section .deco-circle {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.cta-section .deco-circle-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-section .deco-circle-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.cta-section .deco-circle-3 { width: 150px; height: 150px; top: 50%; left: 20%; }

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.cta-content h2 span { color: var(--brand-lime); }

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #7bb834, #5ea827);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.3s;
}

.cta-phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123,184,52,0.4);
}

.cta-phone-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cta-phone-btn small { font-size: 0.75rem; opacity: 0.85; display: block; }

/* ---------- Contact Page Layout ---------- */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.contact-info-card-mini {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.contact-info-card-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.contact-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 2;
}

.ciw-green { background-color: rgba(123,184,52,0.15); stroke: var(--green-light); }
.ciw-blue { background-color: rgba(2,132,199,0.12); stroke: var(--brand-blue); }
.ciw-orange { background-color: rgba(249,115,22,0.12); stroke: var(--orange); }
.ciw-yellow { background-color: rgba(245,158,11,0.15); stroke: #d97706; }

.contact-info-card-mini h3 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-info-card-mini p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-card h2 {
  font-size: 1.85rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-form-card .form-sub {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

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

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

.form-group label {
  display: block;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
  direction: rtl;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-light);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(123,184,52,0.2);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2.5rem;
}

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: var(--white);
  padding: 0.95rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(123,184,52,0.35);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 20px rgba(123,184,52,0.45);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-quick-cta {
  background: linear-gradient(135deg, #1b3d12, #5da628);
  border-radius: 1.25rem;
  padding: 2.25rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-quick-cta .cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-quick-cta .cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-lime);
  fill: none;
  stroke-width: 2;
}

.contact-quick-cta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.contact-quick-cta > p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-quick-cta .cta-phone-link {
  display: block;
  background-color: var(--white);
  color: var(--green-dark);
  padding: 0.85rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.contact-quick-cta .cta-phone-link:hover {
  background-color: var(--brand-lime);
  transform: translateY(-2px);
}
.contact-quick-cta .cta-phone-link small { font-size: 0.8rem; opacity: 0.85; }

.contact-hours-card {
  background-color: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-hours-card h3 {
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.hours-row + .hours-row { border-top: 1px solid var(--gray-100); }
.hours-row span { font-size: 0.9rem; color: var(--gray-600); }
.hours-row .hours-value { color: var(--green-light); font-weight: 700; font-size: 0.9rem; }
.hours-row .hours-closed { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* ---------- About Page Details ---------- */
.about-story-section { padding: 5rem 0; background-color: var(--white); }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
}

.about-story-text h2 { font-size: 2.25rem; color: var(--gray-900); margin-bottom: 1.5rem; }
.about-story-text h2 span { color: var(--green-light); }

.about-story-text p {
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-story-image { position: relative; }
.about-story-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-story-image .deco-bg-1 {
  position: absolute; z-index: -1; top: -1rem; left: -1rem; width: 100%; height: 100%;
  background-color: rgba(123,184,52,0.15); border-radius: 1.5rem;
}
.about-story-image .deco-bg-2 {
  position: absolute; z-index: -1; bottom: -1rem; right: -1rem; width: 100%; height: 100%;
  background-color: rgba(2,132,199,0.1); border-radius: 1.5rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vm-card {
  background-color: var(--white);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.vm-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.vm-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.vm-card:hover .vm-card-icon { transform: scale(1.1); }
.vm-card-icon svg { width: 28px; height: 28px; stroke-width: 2; fill: none; }

.vm-card h2 { font-size: 1.6rem; color: var(--gray-900); margin-bottom: 0.75rem; }
.vm-card p { color: var(--gray-600); line-height: 1.8; font-size: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  background-color: var(--gray-50);
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow-xl);
  background-color: var(--white);
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.value-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s;
}

.value-card:hover .value-card-icon { transform: scale(1.1); }
.value-card-icon svg { width: 30px; height: 30px; stroke-width: 2; fill: none; }

.value-card h3 { font-size: 1.3rem; color: var(--gray-900); margin-bottom: 0.75rem; }
.value-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

.about-stats-section {
  background: linear-gradient(135deg, #132b0d, #1b3d12 60%, #29541a);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.about-stat-item { text-align: center; }

.about-stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-stat-label { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; }

.about-cta-box {
  background: linear-gradient(135deg, #1b3d12, #5da628);
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.about-cta-box h2 { color: var(--white); font-size: 2.25rem; margin-bottom: 1rem; font-weight: 800; }
.about-cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 620px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }

.services-cta-box {
  background: linear-gradient(135deg, #132b0d, #29541a 50%, #5da628);
  border-radius: 1.5rem;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.services-cta-box h2 { font-size: 2rem; margin-bottom: 0.5rem; font-weight: 800; }
.services-cta-box p { color: rgba(255,255,255,0.88); font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { background-color: #0f1410; color: var(--white); }

.footer-top-bar {
  background: linear-gradient(90deg, #132b0d, #1b3d12);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-top-bar p {
  color: var(--green-lighter);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-top-bar .ftb-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s;
}

.footer-top-bar .ftb-cta:hover {
  background: linear-gradient(135deg, var(--green-lighter), var(--green));
  color: var(--white);
  transform: translateY(-2px);
}
.footer-top-bar .ftb-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.footer-main {
  padding: 4rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 1.1fr;
  gap: 2.75rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 68px;
  width: auto;
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 0.4rem 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-section p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-section h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  position: relative;
  font-weight: 700;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--green-light);
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--gray-400); font-size: 0.92rem; transition: all 0.3s; }
.footer-links a:hover { color: var(--green-lighter); transform: translateX(-4px); }

.footer-cr-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--brand-lime) !important;
  font-weight: 700;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.3s;
}

.footer-contact-item:hover { color: var(--green-lighter); }

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg { width: 18px; height: 18px; stroke-width: 2; fill: none; }

.fci-green { background-color: rgba(123,184,52,0.2); }
.fci-green svg { stroke: var(--green-lighter); }
.fci-blue { background-color: rgba(2,132,199,0.2); }
.fci-blue svg { stroke: #38bdf8; }
.fci-orange { background-color: rgba(249,115,22,0.2); }
.fci-orange svg { stroke: #fb923c; }

.footer-contact-item span { color: var(--gray-300); font-size: 0.92rem; }

/* ---------- Saudi CR Badge in Footer ---------- */
.footer-cr-badge-wrap {
  margin-top: 1.5rem;
}

.footer-cr-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(27,61,18,0.7), rgba(19,43,13,0.9));
  border: 1px solid rgba(123,184,52,0.4);
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.footer-cr-badge:hover {
  background: linear-gradient(135deg, rgba(123,184,52,0.3), rgba(27,61,18,0.9));
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,184,52,0.25);
  color: var(--white);
}

.cr-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background-color: rgba(123,184,52,0.25);
  border: 1px solid rgba(123,184,52,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3e635;
  flex-shrink: 0;
}

.saudi-emblem-svg {
  width: 26px;
  height: 26px;
}

.cr-badge-content {
  flex-grow: 1;
}

.cr-badge-tag {
  display: block;
  font-size: 0.75rem;
  color: #a3e635;
  font-weight: 600;
}

.cr-badge-title {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}

.cr-badge-action svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-400);
  transition: stroke 0.3s;
}

.footer-cr-badge:hover .cr-badge-action svg {
  stroke: #a3e635;
}

/* ---------- Social Media & QR Cards ---------- */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background-color: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn svg { width: 20px; height: 20px; }

.social-snapchat:hover {
  background-color: #FFFC00;
  color: #000;
  border-color: #FFFC00;
  box-shadow: 0 4px 14px rgba(255,252,0,0.4);
  transform: translateY(-3px);
}

.social-tiktok:hover {
  background-color: #000;
  color: #25F4EE;
  border-color: #FE2C55;
  box-shadow: 0 4px 14px rgba(37,244,238,0.4);
  transform: translateY(-3px);
}

.social-whatsapp:hover {
  background-color: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transform: translateY(-3px);
}

.social-map:hover {
  background-color: var(--green-light);
  color: #fff;
  border-color: var(--green-light);
  box-shadow: 0 4px 14px rgba(123,184,52,0.4);
  transform: translateY(-3px);
}

.footer-qr-cards {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.qr-card-item {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.75rem;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
}

.qr-card-item:hover {
  background-color: rgba(123,184,52,0.2);
  border-color: var(--green-light);
  transform: translateY(-3px);
}

.qr-card-item img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  border-radius: 0.4rem;
  background-color: #fff;
  padding: 2px;
  margin-bottom: 0.35rem;
}

.qr-card-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-300);
  font-weight: 600;
}

/* ---------- QR Modal ---------- */
.gc-qr-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gc-qr-modal-box {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-2xl);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.gc-qr-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--gray-500);
  line-height: 1;
}

.gc-qr-modal-box h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.gc-qr-img-wrap {
  background-color: var(--gray-50);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
}

.gc-qr-img-wrap img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.35rem 0;
  background-color: #090c0a;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { color: var(--gray-400); font-size: 0.9rem; }

.scroll-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background-color: var(--green-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.scroll-top-btn:hover { background-color: var(--green); transform: translateY(-3px); }
.scroll-top-btn svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }

/* ---------- Floating Buttons ---------- */
.fc-floating-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}
.fc-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.fc-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.fc-float-btn svg {
  width: 28px;
  height: 28px;
}
.fc-float-call {
  background: linear-gradient(135deg, #1b3d12, #7bb834);
}
.fc-float-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats-cards { display: none; }
  .hero-content h1 { font-size: 2.75rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .more-services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .services-cta-box { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding: 4.5rem 0; }
  .hero-content h1 { font-size: 2.25rem; }
  .features-grid, .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .more-services-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; margin-top: -3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 2.15rem; }
  .page-hero { padding: 3.5rem 0 5.5rem; }
  .about-story-image img { height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stat-number { font-size: 2.25rem; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 1rem; }
  .fc-floating-buttons { bottom: 16px; left: 16px; }
  .fc-float-btn { width: 50px; height: 50px; }
  .fc-float-btn svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn { justify-content: center; }
  .contact-cards-row { grid-template-columns: 1fr; }
}
