/* =============================================
   MAHRAJ INDUSTRIES - Main Stylesheet
   Exact clone of mahrajindustries.com
   ============================================= */

/* CSS Variables - Color Scheme */
:root {
  --primary: #e8271a;        /* Red - brand primary */
  --primary-dark: #c51f14;   /* Darker red */
  --secondary: #1a1a2e;      /* Dark navy/black */
  --secondary-light: #16213e;
  --accent: #f5a623;         /* Gold/orange accent */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #e0e0e0;
  --dark-gray: #666666;
  --text: #333333;
  --text-light: #555555;
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.2);
  --radius: 4px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--secondary);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 39, 26, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-dark {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: white;
}
.btn-whatsapp i { margin-right: 8px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

/* Top Bar */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left a { color: #ccc; }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left i { color: var(--primary); font-size: 12px; }
.top-bar-right {
  display: flex;
  gap: 12px;
}
.top-bar-right a {
  color: #ccc;
  font-size: 15px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #444;
  transition: var(--transition);
}
.top-bar-right a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Main Navigation */
.main-nav {
  background: var(--white);
  padding: 0;
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  flex-shrink: 0;
  padding: 10px 0;
}
.nav-brand img {
  height: 60px;
  width: auto;
}
.nav-menu ul {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-menu > ul > li {
  position: relative;
}
.nav-menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 22px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.3px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-menu > ul > li > a:hover,
.nav-menu > ul > li > a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.nav-menu > ul > li > a i { font-size: 10px; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  z-index: 100;
  flex-direction: column !important;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 25px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

/* Nav CTA */
.nav-cta .btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-cta .btn-call:hover {
  background: var(--primary-dark);
  color: white;
}

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d1b1b 100%);
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/2024/01/p_slider_img_001.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.page-banner h1 span { color: var(--primary); }
.breadcrumb ol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb li { color: #ccc; }
.breadcrumb li a { color: #ccc; }
.breadcrumb li a:hover { color: var(--primary); }
.breadcrumb li.active { color: var(--primary); }
.breadcrumb .sep { color: #666; }

/* =============================================
   SECTION STYLES
   ============================================= */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light { background: var(--light-gray); }
.bg-dark { background: var(--secondary); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  padding: 0 30px;
}
.section-header .subtitle::before,
.section-header .subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--primary);
}
.section-header .subtitle::before { right: 0; }
.section-header .subtitle::after { left: 0; }
.section-header h2 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 15px;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 600px;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.slide {
  min-width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.4) 60%, transparent 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
}
.slide-content .subtitle {
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}
.slide-content h2 {
  font-size: 52px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 650px;
}
.slide-content h2 span { color: var(--primary); }
.slide-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 550px;
}
.slide-content .slide-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.slider-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.slider-dot.active { background: var(--primary); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--primary); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-bar {
  background: var(--secondary);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* =============================================
   ABOUT SECTION (Homepage)
   ============================================= */
.about-section {
  padding: 90px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  border-radius: 8px;
  border: 5px solid white;
  box-shadow: var(--shadow);
}
.about-exp-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--primary);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 110px;
  box-shadow: var(--shadow);
}
.about-exp-badge .years {
  font-size: 42px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}
.about-exp-badge .years-text {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 4px;
}
.about-content .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-content h2 span { color: var(--primary); }
.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15.5px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.about-feature i { color: var(--primary); font-size: 16px; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-section { padding: 90px 0; background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,39,26,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-body {
  padding: 24px;
}
.service-card-icon {
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card .read-more:hover { color: var(--secondary); }
.service-card .read-more i { font-size: 12px; transition: transform 0.3s; }
.service-card:hover .read-more i { transform: translateX(5px); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us-section {
  padding: 90px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.why-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/2025/06/hf.png') center/cover no-repeat;
  opacity: 0.05;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.why-us-content .subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}
.why-us-content h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}
.why-us-content h2 span { color: var(--primary); }
.why-us-content p {
  color: rgba(255,255,255,0.75);
  font-size: 15.5px;
  margin-bottom: 30px;
}
.why-features-list { display: flex; flex-direction: column; gap: 18px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}
.why-feature-text h4 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
}
.why-feature-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.why-us-image img {
  border-radius: 8px;
  width: 100%;
  box-shadow: var(--shadow);
}

/* =============================================
   PRODUCT/SERVICE TABS
   ============================================= */
.product-tabs { padding: 90px 0; }
.tabs-header {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--mid-gray);
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================
   TENT RENTAL PAGE - SERVICES
   ============================================= */
.rental-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a0a08 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rental-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/2026/01/WhatsApp-Image-2026-01-16-at-7.38.31-PM-3.jpeg') center/cover no-repeat;
  opacity: 0.25;
}
.rental-hero .container { position: relative; z-index: 1; }
.rental-hero-content { max-width: 750px; }
.rental-hero-content h1 {
  font-size: 50px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.rental-hero-content h1 span { color: var(--primary); }
.rental-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  line-height: 1.8;
}
.rental-hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* Rental Service Cards */
.rental-services { padding: 90px 0; }
.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.rental-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.rental-card-img {
  height: 260px;
  overflow: hidden;
}
.rental-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rental-card:hover .rental-card-img img { transform: scale(1.06); }
.rental-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rental-card h3 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.rental-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.rental-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.rental-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.rental-card-features li i { color: var(--primary); font-size: 13px; }

/* Coverage Area Map */
.coverage-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.coverage-item {
  background: white;
  padding: 28px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.coverage-item:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-3px);
}
.coverage-item i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}
.coverage-item h4 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 6px;
}
.coverage-item p {
  font-size: 13px;
  color: var(--text-light);
}

/* =============================================
   RAMADAN TENTS PAGE
   ============================================= */
.ramadan-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1a00 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ramadan-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.15) 0%, transparent 70%);
}
.ramadan-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.ramadan-hero h1 {
  font-size: 50px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.ramadan-hero h1 span { color: var(--accent); }
.ramadan-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}
.ramadan-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.ramadan-stat {
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 20px 30px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}
.ramadan-stat .num {
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.ramadan-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Ramadan Services */
.ramadan-services { padding: 90px 0; background: var(--light-gray); }
.ramadan-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ramadan-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ramadan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.ramadan-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.ramadan-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ramadan-card:hover .ramadan-card-img img { transform: scale(1.06); }
.ramadan-card-body {
  padding: 24px;
}
.ramadan-card h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.ramadan-card p {
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 15px;
}
.ramadan-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.ramadan-card ul li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ramadan-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--light-gray); color: var(--primary); }
.faq-question.active {
  background: var(--primary);
  color: white;
}
.faq-question i { transition: transform 0.3s; flex-shrink: 0; }
.faq-question.active i { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  background: var(--light-gray);
  border-top: 1px solid var(--mid-gray);
}
.faq-answer.open { display: block; }

/* Quote Form */
.quote-form-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.quote-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,39,26,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { text-align: center; margin-top: 10px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero-section {
  padding: 90px 0;
  background: var(--white);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-images {
  position: relative;
  padding-bottom: 40px;
  padding-right: 30px;
}
.about-hero-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-hero-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 8px;
  border: 5px solid white;
  box-shadow: var(--shadow);
}
.about-vision-mission {
  padding: 80px 0;
  background: var(--light-gray);
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vm-card {
  background: white;
  padding: 36px 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}
.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.vm-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
}
.vm-card h3 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 14px;
}
.vm-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Team/Experience */
.about-experience {
  padding: 80px 0;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.exp-list { display: flex; flex-direction: column; gap: 20px; margin-top: 25px; }
.exp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-left: 4px solid var(--primary);
}
.exp-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,39,26,0.1);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.exp-item h4 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 5px;
}
.exp-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 90px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 18px;
}
.contact-info p {
  font-size: 15.5px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 3px;
}
.contact-detail-text p, 
.contact-detail-text a {
  font-size: 15px;
  color: var(--text-light);
}
.contact-detail-text a:hover { color: var(--primary); }
.contact-form-card {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 28px;
}
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(20%);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d1b1b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/2024/01/p_slider_img_001.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 38px;
  color: white;
  margin-bottom: 16px;
}
.cta-section h2 span { color: var(--primary); }
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 90px 0; background: var(--light-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  padding: 32px 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: rgba(232,39,26,0.12);
  font-family: serif;
  line-height: 0.8;
  position: absolute;
  top: 20px;
  left: 20px;
}
.testimonial-stars {
  color: var(--accent);
  margin-bottom: 14px;
  font-size: 15px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 15px;
  color: var(--secondary);
}
.testimonial-author-info span {
  font-size: 13px;
  color: var(--text-light);
}

/* =============================================
   CLIENTS/PARTNERS
   ============================================= */
.clients-section { padding: 60px 0; }
.clients-section h3 {
  text-align: center;
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.client-logo {
  padding: 16px;
  background: var(--light-gray);
  border-radius: 6px;
  text-align: center;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: var(--transition);
}
.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow);
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.7);
  color: white;
}
.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--secondary);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--secondary); }
.footer-main { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 14.5px;
  margin: 16px 0;
  line-height: 1.8;
}
.footer-logo { height: 55px; width: auto; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: white;
}
.footer-col h3 {
  font-size: 17px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '\203A';
  color: var(--primary);
}
.footer-col ul li a:hover { color: white; padding-left: 5px; }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact ul li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 14px;
}
.footer-areas {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}
.footer-areas p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13.5px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   GALLERY GRID
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,39,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-grid { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    padding: 16px 0;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 200;
  }
  .nav-menu.open { display: block; }
  .nav-menu ul { flex-direction: column; }
  .nav-menu > ul > li > a { padding: 12px 20px; border-bottom: none; border-bottom: 1px solid var(--light-gray); }
  .dropdown { display: none; position: static; box-shadow: none; border-top: none; background: var(--light-gray); }
  .has-dropdown.open .dropdown { display: flex; }
  .main-nav .container { flex-wrap: wrap; }
  .nav-cta { display: none; }
  
  .hero-slider { height: 400px; }
  .slide-content h2 { font-size: 32px; }
  .slide-content p { font-size: 15px; }
  
  .about-grid, .about-hero-grid, .experience-grid,
  .why-us-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { padding-bottom: 80px; }
  .about-img-secondary { width: 50%; }
  .about-exp-badge { left: 0; }
  
  .services-grid { grid-template-columns: 1fr; }
  .rental-grid { grid-template-columns: 1fr; }
  .ramadan-service-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  
  .section-header h2 { font-size: 28px; }
  .page-banner h1 { font-size: 30px; }
  .rental-hero-content h1, .ramadan-hero h1 { font-size: 34px; }
  
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .contact-form-card { padding: 30px 20px; }
  .quote-form-wrapper { padding: 30px 20px; }
  
  .cta-section h2 { font-size: 28px; }
  .tab-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-slider { height: 350px; }
  .slide-content h2 { font-size: 26px; }
  .slide-content .slide-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ramadan-stats { gap: 16px; }
  .page-banner { padding: 50px 0; }
  .section-padding { padding: 60px 0; }
}

/* Smooth scroll offset for fixed header */
[id] { scroll-margin-top: 100px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Alert/notification */
.alert { padding: 14px 20px; border-radius: 6px; margin-bottom: 16px; font-size: 15px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
