/* ==========================================================================
   Riyadh Tents & Shades - Custom WordPress Theme Design System
   Language: Arabic | Direction: RTL
   ========================================================================== */

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

:root {
  --primary-color: #121927;
  --primary-dark: #0a0e17;
  --primary-light: #1e293b;
  --secondary-color: #c5a059;
  --secondary-light: #e2c27f;
  --secondary-dark: #9e7a35;
  --accent-color: #25d366;
  --accent-hover: #1eb956;
  
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #ffffff;
  
  --border-color: #e2e8f0;
  --border-gold: rgba(197, 160, 89, 0.3);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 16px 36px rgba(197, 160, 89, 0.2);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --font-arabic: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section-tag {
  display: inline-block;
  background: rgba(197, 160, 89, 0.12);
  color: var(--secondary-dark);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.text-center .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(18, 25, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  padding: 12px 0;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  background-color: rgba(10, 14, 23, 0.98);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a, .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 6px 0;
  position: relative;
}

.nav-menu a:hover, .nav-link:hover, .nav-link.active, .nav-menu .current-menu-item > a {
  color: var(--secondary-color);
}

.nav-menu a::after, .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-fast);
}

.nav-menu a:hover::after, .nav-link:hover::after, .nav-link.active::after, .nav-menu .current-menu-item > a::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

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

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

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

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

.btn-whatsapp:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light);
  padding: 6px;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--primary-dark);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  transition: right var(--transition-normal);
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-close {
  font-size: 1.75rem;
  color: var(--text-light);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.drawer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-link, .drawer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: block;
}

.drawer-link:hover, .drawer-link.active, .drawer-links a:hover {
  color: var(--secondary-color);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.92) 0%, rgba(18, 25, 39, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  word-break: break-word;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--secondary-light);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.phone-quick-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  direction: ltr;
}

.phone-quick-badge i {
  color: var(--secondary-color);
}

/* Sections Base */
.section-padding {
  padding: 80px 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.bg-dark {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Section 2 — Introduction */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro-image-wrapper:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.intro-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.intro-feature-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Section 3 — Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  top: 0;
}

.why-card:hover {
  top: -6px;
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--secondary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Services Grids & Royal Banner */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features-list {
  margin-bottom: 20px;
  margin-top: auto;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.royal-banner {
  background: linear-gradient(135deg, #161e2e 0%, #0a0e17 100%);
  border-radius: var(--radius-lg);
  padding: 45px;
  color: #ffffff;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.royal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.royal-content h3 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.royal-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.8;
}

.royal-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.royal-item {
  background: rgba(255,255,255,0.05);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border-right: 3px solid var(--secondary-color);
  font-weight: 700;
  font-size: 1rem;
}

.royal-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 360px;
}

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

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.pill {
  background: rgba(197, 160, 89, 0.12);
  color: var(--secondary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--border-gold);
}

/* Steps Timeline */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.step-number {
  position: absolute;
  top: -20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Trust Cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--bg-card);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-card i {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

.trust-card span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* STRICT 18 Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background-color: #e2e8f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.9);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  pointer-events: none;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 23, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 20px;
}

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

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

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

.lightbox-close {
  position: absolute;
  top: -45px;
  left: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

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

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--secondary-color);
}

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

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
  border-top: 2px solid var(--border-gold);
}

.final-cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-box h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.cta-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Modal Quote Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 20px;
}

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

.quote-modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--primary-color);
  color: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--secondary-color);
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(197, 160, 89, 0.15);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail label {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-light);
  margin-bottom: 4px;
}

.contact-detail a, .contact-detail p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--secondary-color);
  background: #ffffff;
}

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

.form-status {
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  display: none;
  font-weight: 700;
}

.form-status.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Page Hero & Inner Pages */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero h1 {
  color: #ffffff;
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 600;
}

.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: #ffffff; }

.content-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
}

.content-box h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 16px;
  color: var(--primary-color);
  border-right: 4px solid var(--secondary-color);
  padding-right: 12px;
}

.content-box p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.content-box ul {
  margin-bottom: 20px;
  padding-right: 20px;
}

.content-box li {
  list-style: disc;
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: var(--secondary-color);
  padding-right: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.call {
  background-color: var(--secondary-color);
}

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

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .nav-menu, .header-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .royal-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); } /* 2 cols tablet */
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .hero-section { padding: 70px 0 50px; min-height: auto; }
  .hero-title { font-size: 1.9rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .royal-banner { padding: 24px; }
  .royal-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.65rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; } /* 1 col mobile */
  .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }
  .floating-actions { bottom: 16px; left: 16px; }
  .lightbox-prev { right: 10px; }
  .lightbox-next { left: 10px; }
}
