/*
Theme Name: Anwar AlMadina
Theme URI: https://anwarcities.com
Author: Anwar AlMadina Team
Author URI: https://anwarcities.com
Description: Professional WordPress theme for Anwar AlMadina - Drain cleaning, sewage pumping, pest control, cleaning, and pool maintenance services in Al Kharj.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anwar-almadinah
Domain Path: /languages
Tags: rtl, responsive, services, blue, gold
*/

/* ========================================
   IMPORT GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --ocean-dark: #0A2463;
  --ocean-light: #3E92CC;
  --white: #FFFFFF;
  --turquoise: #D6F9DD;
  --gold: #D4AF37;
  --coral: #E63946;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow-card: 0 4px 20px rgba(10, 36, 99, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(10, 36, 99, 0.15);
  --radius: 0.625rem;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Tajawal', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray-800);
  background-color: var(--white);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ocean-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* ========================================
   LAYOUT HELPERS
   ======================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

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

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

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

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

/* ========================================
   TOP BANNER
   ======================================== */
.top-banner {
  background-color: var(--coral);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.top-banner a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
}

.top-banner a:hover { text-decoration: underline; }

.top-banner svg {
  width: 16px;
  height: 16px;
  animation: pulse-soft 2s ease-in-out infinite;
}

/* ========================================
   NAVBAR
   ======================================== */
.site-header {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s ease;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  top: 0;
}

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

.site-logo {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--white);
  transition: color 0.3s ease;
  text-decoration: none;
}

.site-header.scrolled .site-logo {
  color: var(--ocean-dark);
}

/* Main Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

.site-header.scrolled .nav-menu a {
  color: var(--ocean-dark);
}

.nav-menu a:hover {
  color: var(--ocean-light);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--ocean-light);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item-has-children > a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a svg {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ocean-dark);
  transition: all 0.2s ease;
}

.sub-menu li a:hover {
  background: rgba(214, 249, 221, 0.5);
  color: var(--ocean-light);
}

/* CTA Button in Nav */
.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  }
  
  .nav-cta svg {
    width: 16px;
    height: 16px;
  }
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 8px;
  transition: color 0.3s ease;
}

.site-header.scrolled .mobile-toggle {
  color: var(--ocean-dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--gray-200);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean-dark);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu .sub-menu-mobile {
  padding-right: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-menu .sub-menu-mobile a {
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: none;
  padding: 0.5rem 0;
}

.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--coral);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 8px;
  margin-top: 1rem;
  width: 100%;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean-dark);
  border-bottom: 1px solid var(--gray-100);
  background: none;
  cursor: pointer;
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-right: 1rem;
}

.mobile-dropdown.active {
  max-height: 300px;
}

.mobile-dropdown a {
  display: block;
  padding: 0.5rem 0;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.85) 0%, rgba(62, 146, 204, 0.75) 100%);
}

.hero-ripple {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-ripple::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 146, 204, 0.5) 0%, transparent 70%);
  top: 10%;
  right: 10%;
  animation: float 10s ease-in-out infinite;
  opacity: 0.15;
}

.hero-ripple::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 249, 221, 0.4) 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  animation: float 15s ease-in-out infinite reverse;
  opacity: 0.1;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 5vw 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

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

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Hero Compact (for service pages) */
.hero-compact {
  min-height: 70vh;
}

.hero-compact .hero-inner {
  padding: 7rem 5vw 4rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 56px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

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

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--ocean-dark);
}

.btn-white {
  background: var(--white);
  color: var(--ocean-dark);
}

.btn-white:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  text-decoration: none;
  height: 100%;
}

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

.service-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(10, 36, 99, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(10, 36, 99, 0.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--ocean-light);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ocean-light);
  transition: gap 0.3s ease;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

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

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

/* ========================================
   WHY CHOOSE US / FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   AREAS SECTION
   ======================================== */
.areas-section {
  background: var(--ocean-dark);
  color: var(--white);
}

.areas-section h2 {
  color: var(--white);
}

.areas-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

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

@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.area-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.area-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.area-item:hover svg {
  transform: scale(1.1);
}

.area-item span {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  color: rgba(10, 36, 99, 0.1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
}

.star {
  width: 20px;
  height: 20px;
}

.star-filled {
  color: var(--gold);
  fill: var(--gold);
}

.star-empty {
  color: var(--gray-200);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  color: var(--ocean-dark);
  font-size: 0.875rem;
}

.testimonial-author-info {
  text-align: right;
}

.testimonial-author-info .name {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ocean-dark);
  display: block;
}

.testimonial-author-info .area {
  font-size: 0.8rem;
  color: var(--gray-400);
}

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

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ========================================
   PROBLEM CARDS (Drain Cleaning)
   ======================================== */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.problem-icon svg {
  width: 32px;
  height: 32px;
  color: var(--coral);
}

/* ========================================
   EQUIPMENT / IMAGE GRID
   ======================================== */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.equipment-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.equipment-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.equipment-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .equipment-tags {
    grid-template-columns: repeat(4, 1fr);
  }
}

.equipment-tag {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  color: var(--ocean-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-section {
  background: rgba(214, 249, 221, 0.3);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ocean-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
}

.step-number span {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--white);
}

.step-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ========================================
   TABLE (Pumping page)
   ======================================== */
.data-table {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}

.data-table thead {
  background: var(--ocean-dark);
  color: var(--white);
}

.data-table th {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  padding: 1rem 1.5rem;
  text-align: right;
  font-size: 1rem;
}

.data-table td {
  padding: 1rem 1.5rem;
  text-align: right;
  border-bottom: 1px solid var(--gray-100);
}

.data-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.data-table tbody tr:hover {
  background: rgba(214, 249, 221, 0.2);
}

.data-table .price {
  color: var(--gold);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

/* ========================================
   PEST CARDS
   ======================================== */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .pests-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pest-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.pest-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pest-icon svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
}

.pest-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pest-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================================
   CLEANING CARDS
   ======================================== */
.cleaning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .cleaning-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cleaning-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.cleaning-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.cleaning-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ocean-light);
}

.cleaning-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cleaning-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================================
   POOL CARDS
   ======================================== */
.pool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pool-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   TIPS LIST
   ======================================== */
.tips-list {
  max-width: 700px;
  margin: 0 auto;
}

.tip-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ocean-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-number span {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.tip-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* ========================================
   SEO SECTION
   ======================================== */
.seo-section p {
  text-align: justify;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 2;
}

.seo-keywords {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.seo-keywords h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keywords-list span {
  background: rgba(10, 36, 99, 0.05);
  color: var(--ocean-dark);
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

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

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  fill: var(--white);
}

.whatsapp-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ripple 1.5s ease-out infinite;
  z-index: -1;
}

.whatsapp-ripple:nth-child(2) {
  animation-delay: 0.5s;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: linear-gradient(180deg, #0A2463 0%, #061a4a 100%);
  color: var(--white);
  padding: 4rem 0 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-phone-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ocean-light);
}

.footer-phone-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-phone-info a {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.footer-phone-info a:hover {
  text-decoration: underline;
}

.footer-column h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-right: 0.75rem;
  border-right: 2px solid var(--gold);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--ocean-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a,
.footer-contact span {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

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

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--ocean-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ocean-dark);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 639px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 640px) {
  .show-mobile {
    display: none !important;
  }
}
