/* 
   Green Land Landscaping Riyadh - CSS Design System & Stylesheet
   Luxury Visual Identity, Animations, Responsive & RTL Support
*/

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

:root {
  /* Color Palette */
  --primary-dark: #0F3D2E;      /* أخضر غامق فاخر */
  --primary-natural: #2F7D4F;   /* أخضر طبيعي */
  --primary-light: #8BC34A;     /* أخضر فاتح للنباتات */
  --sand-beige: #F3E9D2;        /* بيج رملي دافئ */
  --soft-white: #FAFAF7;        /* أبيض ناعم */
  --luxury-gold: #C9A646;       /* ذهبي خفيف للتفاصيل الفاخرة */
  --dark-charcoal: #1F2A24;     /* رمادي داكن للنصوص */
  --white: #ffffff;
  --black: #000000;
  
  /* Gradients */
  --gradient-dark: linear-gradient(135deg, #0F3D2E 0%, #08221a 100%);
  --gradient-natural: linear-gradient(135deg, #2F7D4F 0%, #1e5233 100%);
  --gradient-gold: linear-gradient(135deg, #C9A646 0%, #a4812f 100%);
  --gradient-glass: linear-gradient(135deg, rgba(250, 250, 247, 0.85) 0%, rgba(243, 233, 210, 0.4) 100%);
  --gradient-glass-dark: linear-gradient(135deg, rgba(15, 61, 46, 0.85) 0%, rgba(31, 42, 36, 0.95) 100%);
  --gradient-overlay: linear-gradient(to top, rgba(15, 61, 46, 0.9) 0%, rgba(15, 61, 46, 0.4) 50%, rgba(15, 61, 46, 0.2) 100%);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(31, 42, 36, 0.05);
  --shadow-md: 0 10px 20px rgba(31, 42, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(31, 42, 36, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(15, 61, 46, 0.1);
  --shadow-gold: 0 8px 25px rgba(201, 166, 70, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Fonts */
  --font-primary: 'Tajawal', sans-serif;
  --font-secondary: 'Cairo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--soft-white);
  color: var(--dark-charcoal);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--soft-white);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-natural);
  border-radius: var(--radius-pill);
  border: 2px solid var(--soft-white);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 166, 70, 0.4);
}

.btn-secondary {
  background: var(--gradient-natural);
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(47, 125, 79, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-sm {
  background-color: #25D366;
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-whatsapp-sm:hover {
  background-color: #20ba5a;
}

/* Glassmorphism Card style */
.glass-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
}

/* Header Section */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 20px 0;
}

.header-wrapper.sticky {
  background: rgba(15, 61, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(201, 166, 70, 0.2);
}

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

/* Brand Logo */
.logo {
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: height var(--transition-fast);
}

.header-wrapper.sticky .logo-img {
  height: 44px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }
  .header-wrapper.sticky .logo-img {
    height: 36px;
  }
}

.logo-title {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: var(--transition-fast);
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--luxury-gold);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.header-wrapper:not(.sticky) .logo-tagline {
  color: var(--sand-beige);
}

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

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

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

.nav-link:hover {
  color: var(--white);
}

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

.nav-link.active {
  color: var(--luxury-gold);
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.burger-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

/* Drawer / Mobile Navigation */
.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--gradient-dark);
  z-index: 1005;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: right var(--transition-normal);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.drawer-link {
  color: var(--soft-white);
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--luxury-gold);
  padding-right: 8px;
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dark);
  overflow: hidden;
  padding-top: 120px; /* Offset sticky header */
}

.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;
  transform: scale(1.05);
  animation: heroZoom 15s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.85) 0%, rgba(15, 61, 46, 0.5) 60%, rgba(31, 42, 36, 0.4) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-content {
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--luxury-gold);
  background: linear-gradient(135deg, var(--luxury-gold) 0%, #ecd07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(250, 250, 247, 0.9);
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Trust Badges */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition-fast);
}

.hero-badge-item i {
  color: var(--luxury-gold);
  font-size: 1.2rem;
}

.hero-badge-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--luxury-gold);
  transform: translateY(-2px);
}

/* Hero Visual Block (Left side on desktop/top on mobile) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
}

.floating-card i {
  color: var(--primary-natural);
  font-size: 1.2rem;
  background: rgba(47, 125, 79, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-1 {
  top: 15%;
  right: 10%;
  animation: floatAnim 6s ease-in-out infinite alternate;
}

.fc-2 {
  bottom: 20%;
  right: 5%;
  animation: floatAnim 8s ease-in-out infinite alternate-reverse;
}

.fc-3 {
  top: 40%;
  left: 5%;
  animation: floatAnim 7s ease-in-out infinite alternate 0.5s;
}

.fc-4 {
  bottom: 10%;
  left: 15%;
  animation: floatAnim 9s ease-in-out infinite alternate-reverse 0.3s;
}

/* Quick Services Bar */
.quick-services-bar {
  background: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--luxury-gold);
  padding: 24px 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.quick-services-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quick-services-title {
  color: var(--luxury-gold);
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 250px;
}

.quick-services-list {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar for clean look */
}

.quick-services-list::-webkit-scrollbar {
  display: none;
}

.quick-service-item {
  flex: 1;
  min-width: 130px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.quick-service-item:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.quick-service-item:hover .qs-title {
  color: var(--primary-dark);
}

.quick-service-item:hover .qs-icon {
  color: var(--primary-natural);
}

.qs-icon {
  font-size: 1.4rem;
  color: var(--luxury-gold);
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.qs-title {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition-fast);
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: radial-gradient(circle at center, #fbfaf6 0%, var(--sand-beige) 100%);
  border-top: 1px solid rgba(15, 61, 46, 0.05);
  border-bottom: 1px solid rgba(15, 61, 46, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px 20px;
  box-shadow: 0 4px 20px rgba(15, 61, 46, 0.03);
  border-top: 3px solid var(--luxury-gold);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(201, 166, 70, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 61, 46, 0.08);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Section Header Style */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(47, 125, 79, 0.08);
  border: 1px solid rgba(47, 125, 79, 0.2);
  color: var(--primary-natural);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--dark-charcoal);
  margin-top: 15px;
  opacity: 0.8;
}

/* Section "Why Green Land?" */
.why-section {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  padding: 40px;
  position: relative;
  transition: all var(--transition-normal);
  border: 1px solid rgba(15, 61, 46, 0.06);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 166, 70, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(47, 125, 79, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-natural);
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--gradient-natural);
  color: var(--white);
}

.why-card-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  line-height: 1.7;
}

/* Before / After Slider Section */
.before-after-section {
  background-color: var(--soft-white);
}

.before-after-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.image-before {
  z-index: 1;
}

.image-after {
  z-index: 2;
  width: 50%; /* JS will control this */
}

/* Labels on slider */
.slider-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  z-index: 10;
  pointer-events: none;
  font-family: var(--font-secondary);
}

.label-before {
  right: 20px;
}

.label-after {
  left: 20px;
}

/* Handle line and button */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%; /* JS will control this */
  width: 4px;
  height: 100%;
  background: var(--luxury-gold);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  pointer-events: none;
}

.slider-button i {
  font-size: 0.8rem;
}

.comparison-slider-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  text-align: center;
  gap: 15px;
}

.comparison-slider-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Main Services Section */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 61, 46, 0.04);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 166, 70, 0.2);
}

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

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

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

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-natural);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 5;
}

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

.service-card-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--dark-charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 61, 46, 0.05);
  padding-top: 15px;
}

.service-more-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-natural);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-more-link i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-more-link {
  color: var(--primary-dark);
}

.service-card:hover .service-more-link i {
  transform: translateX(-4px); /* RTL */
}

/* Timeline Process Section */
.process-section {
  background-color: var(--sand-beige);
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 4px;
  background-color: rgba(47, 125, 79, 0.2);
  transform: translateX(50%);
}

.timeline-progress-line {
  position: absolute;
  top: 0;
  right: 50%;
  width: 4px;
  background: var(--gradient-natural);
  transform: translateX(50%);
  height: 0%; /* JS will update this on scroll */
  transition: height 0.1s linear;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item-right {
  right: 0;
  text-align: left;
}

.timeline-item-left {
  right: 50%;
  text-align: right;
}

.timeline-badge {
  position: absolute;
  top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary-natural);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.timeline-item-right .timeline-badge {
  left: -16px;
}

.timeline-item-left .timeline-badge {
  right: -16px;
}

.timeline-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 61, 46, 0.04);
  transition: all var(--transition-normal);
}

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

.timeline-content:hover ~ .timeline-badge,
.timeline-item.active .timeline-badge {
  background: var(--gradient-natural);
  color: var(--white);
  border-color: var(--luxury-gold);
  transform: scale(1.15);
}

.timeline-step-num {
  font-size: 0.8rem;
  color: var(--primary-natural);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.timeline-title {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--dark-charcoal);
  line-height: 1.6;
}

/* Service Areas Section */
.areas-section {
  background-color: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.area-tag {
  background: var(--soft-white);
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all var(--transition-fast);
  cursor: default;
}

.area-tag:hover {
  background: var(--gradient-natural);
  color: var(--white);
  border-color: var(--primary-natural);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.areas-cta-wrapper {
  text-align: center;
}

/* Call to Action (Pre-Footer) - Premium Visual Identity */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #081C15;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ctaBgZoom 30s ease-in-out infinite alternate;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 28, 21, 0.92) 0%, rgba(15, 61, 46, 0.85) 50%, rgba(27, 38, 32, 0.9) 100%);
  z-index: 2;
  border-top: 3px solid var(--luxury-gold);
}

.cta-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Premium Glass Card Wrapper */
.cta-card {
  background: rgba(15, 61, 46, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(201, 166, 70, 0.4);
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(8, 28, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 166, 70, 0.15);
  border: 1px solid rgba(201, 166, 70, 0.35);
  color: var(--luxury-gold);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  font-family: var(--font-secondary);
  box-shadow: 0 4px 15px rgba(201, 166, 70, 0.1);
}

.cta-badge i {
  font-size: 0.95rem;
  animation: pulseGoldBadge 1.5s infinite alternate;
}

.cta-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.35;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-title span {
  color: var(--luxury-gold);
  background: linear-gradient(135deg, #FFE194 0%, #C9A646 50%, #B89235 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(250, 250, 247, 0.9);
  margin-bottom: 45px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Modern Action Buttons Grid */
.cta-actions,
.cta-actions-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-card-btn {
  position: relative;
  display: flex;
  align-items: center;
  text-align: right;
  padding: 16px 24px;
  border-radius: 16px;
  gap: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: 270px;
  direction: rtl;
  z-index: 1;
}

.cta-card-btn:hover {
  transform: translateY(-5px);
}

/* Phone Button Style */
.btn-phone {
  background: var(--gradient-gold);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulseShadowGold 3s infinite;
}

.btn-phone:hover {
  box-shadow: 0 15px 35px rgba(201, 166, 70, 0.4), 0 0 0 4px rgba(201, 166, 70, 0.2);
}

/* WhatsApp Button Style */
.btn-whatsapp-modern {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulseShadowGreen 3s infinite;
  animation-delay: 0.5s;
}

.btn-whatsapp-modern:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.2);
}

/* Quote Button Style */
.btn-quote-modern {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-quote-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--luxury-gold);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.05), 0 0 15px rgba(201, 166, 70, 0.2);
}

/* Inner elements styling */
.cta-btn-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn-quote-modern .cta-btn-icon {
  background: rgba(201, 166, 70, 0.15);
  color: var(--luxury-gold);
}

.cta-card-btn:hover .cta-btn-icon {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-whatsapp-modern:hover .cta-btn-icon {
  color: #25D366;
}

.btn-phone:hover .cta-btn-icon {
  color: #C9A646;
}

.cta-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.cta-btn-title {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-btn-subtitle {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 400;
}

.cta-btn-badge {
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  opacity: 0.9;
  font-family: var(--font-primary);
}

.badge-green {
  background: rgba(255, 255, 255, 0.2);
}

.badge-gold {
  background: rgba(201, 166, 70, 0.2);
  color: #FFEAA7;
}

/* Shimmer Sweep Animation */
.btn-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: -1;
}

.cta-card-btn:hover .btn-shine-effect {
  animation: shineSweep 1.2s ease-in-out;
}

/* Custom Animation Keyframes */
@keyframes ctaBgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

@keyframes pulseGoldBadge {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes shineSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

@keyframes pulseShadowGold {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 166, 70, 0.6), 0 8px 25px rgba(201, 166, 70, 0.25);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(201, 166, 70, 0), 0 8px 25px rgba(201, 166, 70, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 166, 70, 0), 0 8px 25px rgba(201, 166, 70, 0.25);
  }
}

@keyframes pulseShadowGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 25px rgba(37, 211, 102, 0.25);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.25);
  }
}

/* Wiggle Phone Icon */
.btn-phone:hover .cta-btn-icon i {
  animation: phoneWiggle 0.5s ease-in-out infinite;
}

.btn-phone .cta-btn-icon i {
  animation: phoneWigglePeriodic 5s infinite;
  display: inline-block;
}

@keyframes phoneWiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

@keyframes phoneWigglePeriodic {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(15deg); }
  94% { transform: rotate(-15deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-10deg); }
}

/* Responsive adjustments for cta section */
@media (max-width: 991px) {
  .cta-section {
    padding: 100px 0;
  }
  .cta-card {
    padding: 50px 30px;
    margin: 0 16px;
  }
  .cta-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .cta-card {
    padding: 40px 20px;
    border-radius: 18px;
  }
  .cta-title {
    font-size: 1.9rem;
  }
  .cta-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .cta-actions-modern {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .cta-card-btn {
    width: 100%;
    min-width: unset;
  }
}

/* Footer Section */
.footer {
  background-color: #081C15;
  color: rgba(250, 250, 247, 0.85);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 15px;
}

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

.footer-link {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link i {
  font-size: 0.75rem;
  color: var(--luxury-gold);
  transition: transform var(--transition-fast);
}

.footer-link:hover {
  color: var(--luxury-gold);
}

.footer-link:hover i {
  transform: translateX(-4px); /* RTL */
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  font-size: 1.1rem;
  color: var(--luxury-gold);
  margin-top: 3px;
}

.footer-contact-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gradient-natural);
  color: var(--white);
  transform: translateY(-3px);
}

/* Floating Actions Button (Contact buttons fixed) */
.floating-actions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
}

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

.floating-whatsapp {
  background-color: #25D366;
}

.floating-call {
  background-color: var(--primary-natural);
  display: none; /* Only show on desktop if requested, but we'll show both on mobile and customize via media query */
}

/* Floating label */
.floating-btn::before {
  content: attr(data-label);
  position: absolute;
  left: 70px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.floating-btn:hover::before {
  opacity: 1;
  visibility: visible;
  left: 66px;
}

/* Mobile Sticky Bottom CTA Bar (Alternative to floating elements on mobile) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(15, 61, 46, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 998;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(201, 166, 70, 0.3);
  padding: 12px 16px;
}

.mobile-sticky-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Scroll Reveal animation triggers */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Animation Keyframes */
@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.08);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

/* Media Queries for Responsiveness */

/* Large screens and desktop */
@media (min-width: 992px) {
  /* Ensure hover styling only applies to hover-capable devices */
  .why-card:hover {
    background-color: var(--soft-white);
  }
}

/* Tablets (landscape and portrait) */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-badges {
    margin: 0 auto;
  }
  
  .hero-visual {
    height: 350px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-line, .timeline-progress-line {
    right: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-right: 60px;
    padding-left: 0;
    text-align: right;
    margin-bottom: 40px;
  }
  
  .timeline-item-left {
    right: 0;
  }
  
  .timeline-item-right .timeline-badge,
  .timeline-item-left .timeline-badge {
    right: 14px;
    left: auto;
  }
  
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile screens */
@media (max-width: 767px) {
  body {
    padding-bottom: 80px; /* Space for mobile sticky bottom CTA bar */
  }

  .nav-menu {
    display: none; /* Handled by drawer */
  }
  
  .burger-menu-btn {
    display: flex;
  }
  
  .header-ctas .btn {
    display: none; /* Hide primary buttons from header on mobile */
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-item {
    padding: 20px 12px;
  }
  
  .stat-num {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .quick-services-bar {
    padding: 16px 0;
  }
  
  .quick-services-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quick-services-title {
    min-width: auto;
    font-size: 1rem;
  }
  
  .quick-services-list {
    width: 100%;
  }
  
  .quick-service-item {
    min-width: 120px;
  }
  
  .comparison-slider {
    height: 320px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .floating-actions {
    display: none; /* Handled by bottom sticky bar */
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-desc {
    font-size: 0.95rem;
  }
}

/* Accessibility: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-bg img {
    animation: none !important;
  }
  
  .floating-card {
    animation: none !important;
  }
}

/* ==========================================================================
   Shared Gallery & Projects Styling
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.gallery-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 61, 46, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 166, 70, 0.3);
}
.gallery-card.hidden {
  display: none;
}
.gallery-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}
.gallery-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(15, 61, 46, 0.9);
  color: var(--luxury-gold);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.gallery-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.gallery-card-title {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.gallery-card-meta {
  font-size: 0.85rem;
  color: var(--dark-charcoal);
  opacity: 0.8;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gallery-card-meta i {
  color: var(--primary-natural);
}
.gallery-card-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Testimonials (Client Reviews) Styling
   ========================================================================== */
.testimonials-section {
  background: var(--soft-white);
  border-top: 1px solid rgba(15, 61, 46, 0.03);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 61, 46, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 166, 70, 0.3);
}
.testimonial-stars {
  color: var(--luxury-gold);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(15, 61, 46, 0.05);
  padding-top: 15px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-secondary);
}
.testimonial-info h4 {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--dark-charcoal);
  opacity: 0.7;
}

/* ==========================================================================
   Send Garden Photos CTA Styling
   ========================================================================== */
.send-photos-section {
  background: var(--white);
  border-top: 1px solid rgba(15, 61, 46, 0.05);
  border-bottom: 1px solid rgba(15, 61, 46, 0.05);
}
.send-photos-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.send-step-card {
  text-align: center;
  padding: 25px 20px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 61, 46, 0.04);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.send-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 166, 70, 0.3);
}
.send-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 15px;
}
.send-step-title {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.send-step-desc {
  font-size: 0.85rem;
  color: var(--dark-charcoal);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .send-photos-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .send-photos-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Breadcrumbs Navigation Styling (Global)
   ========================================================================== */
.breadcrumbs {
  background: var(--soft-white);
  padding: 15px 0;
  border-bottom: 1px solid rgba(15, 61, 46, 0.05);
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs-list a {
  color: var(--primary-natural);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumbs-list a:hover {
  color: var(--primary-dark);
}
.breadcrumbs-list i {
  font-size: 0.75rem;
  color: var(--dark-charcoal);
  opacity: 0.5;
}
.breadcrumbs-list li[aria-current="page"] {
  color: var(--dark-charcoal);
  opacity: 0.8;
  font-weight: 500;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(15, 61, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-top-btn:hover {
  background: var(--luxury-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201, 166, 70, 0.25);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 90px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
}
