﻿/*
Theme Name: Tents & Shade Services Riyadh
Theme URI: https://tentseriviceriyadh.com
Author: Riyadh Tent & Shade Services
Author URI: https://tentseriviceriyadh.com
Description: Premium Arabic RTL WordPress theme for Tent, Shade, Canopy, and Bayt Sha'r services in Riyadh, Saudi Arabia.
Version: 1.7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tentservice-riyadh
Tags: rtl-language-support, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   TENT & SHADE SERVICES RIYADH - PREMIUM ARABIC RTL DESIGN SYSTEM
   ========================================================================== */

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

:root {
  --font-arabic: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Color Palette */
  --bg-dark-primary: #0b1120;
  --bg-dark-secondary: #131c2e;
  --bg-dark-card: #1e293b;
  --bg-light-primary: #ffffff;
  --bg-light-secondary: #f8fafc;
  --bg-light-card: #ffffff;
  
  --primary-gold: #d97706;
  --primary-gold-hover: #b45309;
  --primary-gold-light: #fef3c7;
  --accent-gold: #f59e0b;
  
  --whatsapp-bright: #25d366;
  --whatsapp-dark: #128c7e;
  --phone-bright: #0088ff;
  --phone-dark: #0066cc;
  
  --text-dark-title: #0f172a;
  --text-dark-body: #334155;
  --text-dark-muted: #64748b;
  
  --text-light-title: #f8fafc;
  --text-light-body: #cbd5e1;
  --text-light-muted: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-dark: #334155;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(217, 119, 6, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  font-family: var(--font-arabic);
  font-size: 16px;
  background-color: var(--bg-dark-primary);
  color: var(--text-light-body);
}

body {
  overflow-x: hidden;
  width: 100%;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-arabic);
  font-weight: 800;
  line-height: 1.3;
}

.text-gold {
  color: var(--primary-gold);
}

.text-highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp-bright);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-phone {
  background-color: var(--phone-bright);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.35);
}

.btn-phone:hover {
  background-color: var(--phone-dark);
  transform: translateY(-2px);
  color: #ffffff;
}

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

.btn-outline:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.15rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */

.top-bar {
  background-color: #070b14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  padding: 0.5rem 0;
}

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

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-light-muted);
}

.top-bar-info item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info i {
  color: var(--primary-gold);
}

.top-bar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-link {
  color: var(--text-light-title);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.top-bar-link:hover {
  color: var(--primary-gold);
}

/* Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background-color: rgba(11, 17, 32, 0.98);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 65px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

/* Desktop Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-light-title);
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width var(--transition-fast);
}

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

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

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light-title);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.mobile-toggle:hover {
  color: var(--primary-gold);
}

/* Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--bg-dark-secondary);
  z-index: 2001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  padding: 1.5rem;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-dark);
}

.drawer-header img {
  height: 50px;
  width: auto;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--text-light-title);
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-close-btn:hover {
  background-color: var(--primary-gold);
  color: #fff;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  color: var(--text-light-title);
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: rgba(217, 119, 6, 0.15);
  color: var(--primary-gold);
}

.drawer-ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
}

/* ==========================================================================
   CUSTOM CENTERED HERO SECTION WITH BOTTOM CURVE (MATCHING USER SCREENSHOT)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark-primary);
  overflow: hidden;
  padding: 6rem 0 7rem;
  text-align: center;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 17, 32, 0.65) 0%, rgba(11, 17, 32, 0.92) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  max-width: 960px;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: #f1f5f9;
  line-height: 1.95;
  margin-bottom: 2.75rem;
  max-width: 940px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.hero-btn-whatsapp {
  flex: 1;
  background-color: var(--whatsapp-bright);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
}

.hero-btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.hero-btn-phone {
  flex: 1;
  background-color: var(--phone-bright);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 136, 255, 0.4);
  transition: all var(--transition-normal);
}

.hero-btn-phone:hover {
  background-color: var(--phone-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 136, 255, 0.6);
  color: #ffffff;
}

/* Hero Bottom SVG Curve Divider */
.hero-bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.hero-bottom-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.hero-bottom-curve path {
  fill: var(--bg-light-primary);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.section-light {
  background-color: var(--bg-light-primary);
  color: var(--text-dark-body);
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark-secondary);
  color: var(--text-light-body);
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-light .section-title {
  color: var(--text-dark-title);
}

.section-dark .section-title {
  color: var(--text-light-title);
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-light .section-description {
  color: var(--text-dark-muted);
}

.section-dark .section-description {
  color: var(--text-light-muted);
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper img.about-main-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}

/* Image Watermark Overlay (Bottom-Left Corner) */
.image-watermark {
  position: absolute !important;
  left: 12px !important;
  bottom: 12px !important;
  width: 55px !important;
  height: auto !important;
  z-index: 5 !important;
  pointer-events: none !important;
  opacity: 0.9 !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6)) !important;
  transition: all var(--transition-fast) !important;
}

@media (max-width: 768px) {
  .image-watermark {
    width: 42px !important;
    left: 8px !important;
    bottom: 8px !important;
  }
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bg-dark-primary);
  color: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  border-right: 5px solid var(--primary-gold);
  box-shadow: var(--shadow-lg);
}

.about-experience-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
}

.about-experience-text {
  font-size: 0.9rem;
  font-weight: 700;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--text-dark-title);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-dark-body);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2.25rem;
}

.feature-item-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-dark-title);
}

.feature-item-check i {
  color: var(--primary-gold);
  background: var(--primary-gold-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   SERVICES SECTION (DARK BACKGROUND)
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card.image-only-card {
  padding: 0 !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

.service-card.image-only-card .service-image {
  height: 100%;
  width: 100%;
}

.service-card.image-only-card .service-body,
.service-card.image-only-card .service-category-tag,
.service-card.image-only-card .service-title,
.service-card.image-only-card .service-desc,
.service-card.image-only-card .service-footer {
  display: none !important;
}

.about-experience-badge {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

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

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

.service-category-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 17, 32, 0.85);
  color: var(--primary-gold);
  border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem;
  color: var(--text-light-title);
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--text-light-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
}

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

.service-btn {
  color: var(--primary-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.service-btn:hover {
  color: #ffffff;
  gap: 0.75rem;
}

/* ==========================================================================
   FEATURED PROJECT SPOTLIGHTS (ALTERNATING DARK & LIGHT)
   ========================================================================== */

.spotlight-block {
  padding: 4.5rem 0;
}

.post-hero-image-block {
  padding: 3.5rem 0;
  background-color: var(--bg-dark-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.post-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-hero-image-wrapper img.post-hero-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}

.spotlight-image-only-block {
  padding: 3.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.spotlight-single-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-single-wrapper img:not(.image-watermark) {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.spotlight-grid.reverse {
  direction: ltr;
}

.spotlight-grid.reverse > * {
  direction: rtl;
}

.spotlight-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 420px;
  background-color: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-image img:not(.image-watermark) {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}
  transition: transform var(--transition-normal);
}

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

.spotlight-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.section-light .spotlight-content h3 {
  color: var(--text-dark-title);
}

.section-dark .spotlight-content h3 {
  color: var(--text-light-title);
}

.spotlight-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.spotlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.spotlight-item i {
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #ffffff;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-align: right;
}

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

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-gold-light);
  color: var(--primary-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary-gold);
  color: #ffffff;
}

.feature-card-title {
  font-size: 1.3rem;
  color: var(--text-dark-title);
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  color: var(--text-dark-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   PROJECT GALLERY & LIGHTBOX (ALL IMAGES GRID)
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-dark-card);
}

.gallery-item img:not(.image-watermark) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img:not(.image-watermark) {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-tag {
  font-size: 0.8rem;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Force-remove gallery zoom icons and why-us section completely */
.gallery-zoom-icon,
[class*="zoom-icon"],
.fa-magnifying-glass-plus,
#why-us,
.why-us-section {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: var(--text-light-title);
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--primary-gold);
}

.lightbox-prev {
  right: -70px;
}

.lightbox-next {
  left: -70px;
}

/* ==========================================================================
   PRIVACY POLICY SECTION (سياسة الخصوصية)
   ========================================================================== */

.privacy-card {
  background-color: var(--bg-light-primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  color: var(--text-dark-body);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.privacy-item {
  background: var(--bg-light-secondary);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--primary-gold);
}

.privacy-item h4 {
  color: var(--text-dark-title);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.privacy-item h4 i {
  color: var(--primary-gold);
}

.privacy-item p {
  color: var(--text-dark-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */

.cta-banner {
  position: relative;
  padding: 6rem 0;
  background-color: var(--bg-dark-primary);
  overflow: hidden;
  text-align: center;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.2);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, rgba(11, 17, 32, 0.95) 75%);
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 900;
}

.cta-box p {
  font-size: 1.2rem;
  color: var(--text-light-body);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.site-footer {
  background-color: #060912;
  color: var(--text-light-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--text-light-title);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

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

.footer-about-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(-4px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
}

.footer-contact-item i {
  color: var(--primary-gold);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

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

.copyright-text {
  color: var(--text-light-muted);
}

/* ==========================================================================
   FLOATING CALL & WHATSAPP BUTTONS (RIGHT SIDE)
   ========================================================================== */

.floating-contact-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.floating-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
}

.floating-whatsapp {
  background-color: var(--whatsapp-bright);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--whatsapp-bright);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

.floating-call {
  background-color: var(--phone-bright);
}

.floating-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--phone-bright);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2s infinite 1s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(11, 17, 32, 0.92);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .desktop-nav, .header-action-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .about-grid, .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .spotlight-grid.reverse {
    direction: rtl;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .lightbox-prev {
    right: 10px;
  }
  
  .lightbox-next {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .top-bar-info {
    font-size: 0.8rem;
  }

  .header-wrapper {
    height: 75px;
  }

  .brand-logo img {
    height: 50px;
  }

  .hero-section {
    min-height: 80vh;
    padding: 4.5rem 0 5.5rem;
  }

  .hero-action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-whatsapp, .hero-btn-phone {
    width: 100%;
  }

  .about-features-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card.image-only-card {
    height: 250px !important;
  }

  .spotlight-image {
    height: auto !important;
    min-height: 220px !important;
    max-height: 380px !important;
  }

  .spotlight-image img:not(.image-watermark) {
    width: 100% !important;
    height: auto !important;
    max-height: 380px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

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

  .gallery-item {
    height: 200px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-contact-wrapper {
    bottom: 20px;
    right: 15px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-light, .section-dark {
    padding: 3.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
