/* ===========================
   Mahraj Industries - Main CSS
   Theme: Industrie (RSTheme Clone)
   Primary Color: #ea5501
   =========================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #ea5501;
  --primary-dark: #c94800;
  --primary-light: #ff6b1a;
  --secondary: #1a1a2e;
  --dark: #111111;
  --dark-2: #222222;
  --dark-3: #333333;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 5px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 8px;
  --container-max: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-3);
  background: var(--white);
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: 0.02em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  text-align: center;
  position: relative;
}
.preloader-circle {
  width: 70px;
  height: 70px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 15px auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) { .container { padding: 0 15px; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.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 8px 25px rgba(234,85,1,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--primary); border-color: var(--primary); }
.mt-3 { margin-top: 1rem; }

/* ---- Section Styles ---- */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .sub-title {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.section-title .sub-title::before,
.section-title .sub-title::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin: 0 8px;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}
.section-title.text-left { text-align: left; }
.section-title.text-left p { margin: 0; }
.section-divider {
  width: 60px; height: 4px;
  background: var(--primary);
  margin: 15px auto;
}
.section-divider.left { margin-left: 0; }
.bg-light { background: var(--light-gray); }
.bg-dark { background: var(--dark); }
.bg-dark h2, .bg-dark h3, .bg-dark p { color: var(--white); }

/* ---- Header ---- */
.header-topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left a, .topbar-right a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--primary); }
.topbar-left a i, .topbar-right a i { margin-right: 5px; color: var(--primary); }

.header-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: relative;
  z-index: 100;
}
.header-main.sticky-header.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  animation: slideDown 0.3s ease;
  z-index: 999;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 30px;
}
.site-logo img { width: 180px; height: auto; }

/* ---- Navigation ---- */
.main-navigation { flex: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.menu-item {
  position: relative;
}
.menu-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.menu-item > a i { font-size: 10px; transition: transform 0.3s; }
.menu-item:hover > a { color: var(--primary); }
.menu-item:hover > a i { transform: rotate(180deg); }
.menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.menu-item:hover > a::after { transform: scaleX(1); }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
}
.sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top: none;
  border-left: 3px solid var(--primary);
}
.has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--dark-3);
  font-family: var(--font-body);
  font-weight: 400;
  border-bottom: 1px solid var(--border);
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover { color: var(--primary); background: var(--light-gray); padding-left: 24px; }
.sub-menu li.has-children > a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  float: right;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 15px; }
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ---- Breadcrumb ---- */
.breadcrumb-area {
  background: var(--light-gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin: 0;
}
.breadcrumb-item { font-size: 13px; color: var(--gray); }
.breadcrumb-item a { color: var(--gray); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; margin-right: 5px; color: var(--gray); }
.breadcrumb-item.active { color: var(--primary); font-weight: 500; }

/* ---- Hero / Slider ---- */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-slide.active { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 60px 0;
}
.hero-content .hero-sub {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-indicators button.active {
  background: var(--primary);
  transform: scale(1.3);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Page Banner ---- */
.page-banner {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-banner h1 {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.page-banner p { color: rgba(255,255,255,0.8); font-size: 16px; }
.page-banner .banner-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
  margin-bottom: 15px;
}

/* ---- Cards & Services ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1100px) { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .cards-grid, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .cards-grid, .cards-grid-4, .cards-grid-2 { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image .card-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 55px; height: 55px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 15px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--dark);
  transform: rotate(5deg);
}
.service-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.service-card-body .read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-body .read-more:hover { gap: 10px; }

/* ---- Stats Counter ---- */
.stats-section {
  background: var(--primary);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.stat-plus { font-size: 30px; vertical-align: super; }

/* ---- Why Choose Us ---- */
.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}
.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark);
}
.feature-content p { font-size: 14px; color: var(--gray); margin: 0; }

/* ---- About Section ---- */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-content { grid-template-columns: 1fr; } }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 25px;
  border-radius: var(--radius-lg);
  min-width: 130px;
  box-shadow: var(--shadow);
}
.about-badge .years { font-family: var(--font-heading); font-size: 48px; font-weight: 700; line-height: 1; }
.about-badge .label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.about-text .sub-label {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-text h2 { font-size: 38px; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.check-list { list-style: none; margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--primary); font-size: 16px; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  border-left: 4px solid var(--primary);
  margin: 15px;
}
.testimonial-stars { color: #ffc107; margin-bottom: 15px; }
.testimonial-text {
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author img {
  width: 55px; height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.testimonial-author-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.testimonial-author-info span { font-size: 13px; color: var(--gray); }

/* ---- Contact Form ---- */
.contact-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-wrapper { grid-template-columns: 1fr; } }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234,85,1,0.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 35px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 22px; margin-bottom: 25px; }
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 45px; height: 45px; min-width: 45px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
}
.contact-info-text p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }
.contact-info-text a { color: var(--white); font-weight: 500; }
.contact-info-text a:hover { color: var(--primary); }
.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 15px;
  margin-top: 15px;
  display: none;
}

/* ---- Product/Image Grid ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-image { height: 240px; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.product-card-body p { font-size: 14px; color: var(--gray); margin-bottom: 15px; }

/* ---- Content Page (Service Pages) ---- */
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
@media (max-width: 1000px) { .content-layout { grid-template-columns: 1fr; } }
.content-main h2 { font-size: 28px; font-weight: 700; text-transform: uppercase; margin: 30px 0 15px; }
.content-main h3 { font-size: 22px; font-weight: 600; text-transform: uppercase; margin: 25px 0 12px; }
.content-main h4 { font-size: 18px; font-weight: 600; margin: 20px 0 10px; }
.content-main p { color: var(--gray); line-height: 1.8; margin-bottom: 15px; }
.content-main ul { list-style: none; margin: 15px 0 20px; }
.content-main ul li {
  padding: 6px 0 6px 25px;
  position: relative;
  color: var(--gray);
  font-size: 15px;
}
.content-main ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 13px;
  top: 8px;
}
.content-main .content-image {
  margin: 25px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-main .content-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.content-main .content-image figcaption {
  background: var(--light-gray);
  padding: 10px 15px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 25px;
}
.widget-title {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 20px;
  letter-spacing: 0.05em;
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px;
  width: 40px; height: 3px;
  background: var(--primary);
}
.widget-body { padding: 20px; }
.widget-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: var(--dark-3);
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.widget-nav li a:hover,
.widget-nav li a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: var(--light-gray);
}
.widget-nav li a i { font-size: 11px; }
.widget-cta {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 25px;
  text-align: center;
  color: var(--white);
}
.widget-cta h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.widget-cta p { font-size: 14px; opacity: 0.9; margin-bottom: 18px; }
.widget-cta .btn { background: var(--white); color: var(--primary); border-color: var(--white); width: 100%; justify-content: center; }
.widget-cta .btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ---- FAQ Accordion ---- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--light-gray); color: var(--primary); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-question i { transition: transform 0.3s; }
.faq-question.active i { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--white);
}
.faq-answer.open { max-height: 500px; padding: 15px 20px; }
.faq-answer p { font-size: 15px; color: var(--gray); margin: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { width: 170px; margin-bottom: 20px; filter: brightness(10); }
.footer-about p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.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: var(--white);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  align-items: flex-start;
}
.footer-contact-list li i { color: var(--primary); margin-top: 3px; min-width: 16px; }
.footer-contact-list a { color: rgba(255,255,255,0.7); }
.footer-contact-list a:hover { color: var(--primary); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 600px) { .footer-bottom-inner { justify-content: center; text-align: center; } }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 55px; height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 5px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px; height: 45px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- Mobile Menu ---- */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  z-index: 1001;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 5px 0 30px rgba(0,0,0,0.3);
}
.mobile-sidebar.open { left: 0; }
.mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-sidebar-header img { filter: brightness(10); width: 130px; }
.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}
.mobile-menu .menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .menu-item a:hover { color: var(--primary); background: rgba(255,255,255,0.05); }
.mobile-menu .sub-menu {
  position: static;
  box-shadow: none;
  border: none;
  background: rgba(0,0,0,0.3);
  display: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  border-radius: 0;
}
.mobile-menu .sub-menu.open { display: block; }
.mobile-menu .sub-menu li a { padding-left: 35px; font-size: 13px; color: rgba(255,255,255,0.7); }
.mobile-menu .sub-menu .sub-menu li a { padding-left: 50px; }
.mobile-sidebar-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 10px; }
.mobile-sidebar-footer p { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 8px; }
.mobile-sidebar-footer a { color: rgba(255,255,255,0.9); }

/* ---- Grid Utilities ---- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.py-5 { padding: 3rem 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }

/* ---- Two-column Image Text Section ---- */
.img-text-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .img-text-section { grid-template-columns: 1fr; } }
.img-text-section.reverse { direction: rtl; }
.img-text-section.reverse > * { direction: ltr; }
.img-text-section .img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-text-section .img-wrap img { width: 100%; height: 400px; object-fit: cover; }

/* ---- Banner CTA ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('/images/slide_bg-1536x680.webp') center/cover no-repeat;
  opacity: 0.15;
}
.cta-content { position: relative; z-index: 2; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: 36px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; }
.cta-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* ---- Responsive Header ---- */
@media (max-width: 1100px) {
  .main-navigation { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-actions .btn { display: none; }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 36px; }
  .page-banner h1 { font-size: 30px; }
  .section-title h2 { font-size: 28px; }
  .stats-grid { gap: 20px; }
  .stat-number { font-size: 38px; }
  .topbar-left .topbar-email { display: none; }
}

/* ---- Map embed ---- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 30px; }
.map-embed iframe { width: 100%; height: 350px; border: none; display: block; }

/* ---- Ramadan page specific ---- */
.ramadan-tent-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
@media (max-width: 900px) { .ramadan-tent-types { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .ramadan-tent-types { grid-template-columns: 1fr; } }
.tent-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.tent-type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tent-type-image { height: 200px; overflow: hidden; }
.tent-type-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tent-type-card:hover .tent-type-image img { transform: scale(1.07); }
.tent-type-body { padding: 20px; }
.tent-type-body h3 { font-size: 18px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.tent-type-body ul { margin-bottom: 15px; }
.tent-type-body ul li { font-size: 13px; color: var(--gray); padding: 4px 0 4px 20px; position: relative; }
.tent-type-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ---- Amenities Grid ---- */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
.amenity-item {
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.amenity-item:hover { border-bottom-color: var(--primary); transform: translateY(-3px); }
.amenity-item i { font-size: 32px; color: var(--primary); margin-bottom: 12px; }
.amenity-item h4 { font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--dark); margin: 0; }

/* ---- Portacabin FAQ Specific ---- */
.faq-section-title { font-size: 22px; font-weight: 700; color: var(--primary); text-transform: uppercase; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }

/* ---- Image gallery grid ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { border-radius: var(--radius); overflow: hidden; height: 180px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
