/* ==========================================================================
   RY DEVELOPERS - PREMIUM LUXURY CSS STYLE SYSTEM
   ========================================================================== */

/* 1. RESET & VARIABLES */
:root {
  /* Color System */
  --bg-matte-black: #0a0a0a;
  --bg-deep-grey: #121212;
  --bg-card-dark: #181818;
  --bg-card-glass: rgba(20, 20, 20, 0.75);
  
  --gold-primary: #d4af37; /* Metallic classic gold */
  --gold-bright: #f9e295;  /* Sparkle / Glow highlights */
  --gold-dark: #a67c1e;    /* Border & shadow tones */
  --gold-translucent: rgba(212, 175, 55, 0.15);
  
  --text-white: #ffffff;
  --text-light-grey: #e0e0e0;
  --text-grey: #a0a0a0;
  --text-muted: #666666;
  
  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Decorative elements */
  --border-gold: 1px solid rgba(212, 175, 55, 0.2);
  --border-gold-glow: 1px solid rgba(212, 175, 55, 0.45);
  --box-shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.08);
  --box-shadow-gold-hover: 0 12px 40px 0 rgba(212, 175, 55, 0.2);
  --backdrop-blur-val: blur(16px) saturate(120%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-matte-black);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==========================================================================
   2. TYPOGRAPHY & BUTTONS
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

p {
  color: var(--text-grey);
  font-weight: 300;
}

/* Gold texts */
.gold-text {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.gold-text-glow {
  color: var(--gold-bright);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.red-text { color: #ff4a4a; }

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

.grid {
  display: grid;
  gap: 32px;
}

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-xs {
  padding: 6px 14px;
  font-size: 0.7rem;
  border-radius: 2px;
}

.btn-md {
  padding: 14px 28px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 100%);
  color: #000000;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, var(--text-white) 0%, var(--gold-bright) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

/* Glassmorphism styling helper */
.glassmorphism {
  background: var(--bg-card-glass);
  backdrop-filter: var(--backdrop-blur-val);
  -webkit-backdrop-filter: var(--backdrop-blur-val);
  border: var(--border-gold);
  box-shadow: var(--box-shadow-gold);
}

.gold-border-glow {
  position: relative;
}

.gold-border-glow::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold-bright), transparent 50%, var(--gold-dark));
  z-index: -1;
  border-radius: inherit;
  opacity: 0.4;
  transition: var(--transition-smooth);
}

.gold-border-glow:hover::after {
  opacity: 1;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 75px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-grey);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-matte-black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  left: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light-grey);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold-primary);
  transform: scale(1.05);
}

.mobile-cta {
  margin-top: 16px;
}

/* Header Burger Animation */
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: var(--bg-matte-black);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-content {
  max-width: 780px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  display: inline-block;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  font-family: var(--font-display);
  text-transform: capitalize;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Features bar below Hero */
.features-bar {
  background: rgba(18, 18, 18, 0.9);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0;
  text-align: center;
  gap: 16px;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light-grey);
}

.feature-bar-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   5. SECTION GLOBAL STYLES
   ========================================================================== */

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

.bg-dark-grey {
  background-color: var(--bg-deep-grey);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 64px auto;
}

.section-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.section-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-grey);
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */

.about-visuals {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-img-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 20px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.overlay-number {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.overlay-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--text-light-grey);
}

/* Stats Counter Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-grey);
}

/* Leadership Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.leader-card {
  padding: 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}

.leader-name {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.leader-role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.leader-bio {
  font-size: 0.78rem;
  color: var(--text-grey);
  line-height: 1.6;
}

.leader-call-btn {
  margin-top: 20px;
  align-self: flex-start;
}

.call-icon-sm {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */

.service-card {
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--box-shadow-gold-hover);
}

.service-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background: var(--gold-translucent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
  background: var(--gold-primary);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  color: #000000;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--text-white);
  padding-left: 6px;
}

/* ==========================================================================
   8. PROJECT SHOWCASE (GALLERY)
   ========================================================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--text-grey);
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold-primary);
  color: #000000;
  background-color: var(--gold-primary);
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: var(--transition-smooth);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  transition: var(--transition-smooth);
}

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

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

.project-category {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.project-loc {
  font-size: 0.78rem;
  color: var(--text-grey);
  margin-bottom: 16px;
}

/* Before / After Slider Styling */
.slider-wrapper-section {
  margin-top: 80px;
}

.slider-section-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.slider-section-desc {
  font-size: 0.88rem;
  margin-bottom: 36px;
  color: var(--text-grey);
}

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  user-select: none;
}

.before-after-container .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-after-container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-container .foreground-img {
  width: 50%; /* Starting position */
  border-right: 2px solid var(--gold-primary);
  z-index: 2;
}

.label-before,
.label-after {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 5;
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

/* Range input control slider overlay */
.before-after-container .slider {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  z-index: 10;
  cursor: ew-resize;
  top: 0;
  left: 0;
}

/* The Draggable Handle button graphic */
.before-after-container .slider-button {
  pointer-events: none;
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #000000;
  border: 2px solid var(--gold-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  transition: transform 0.2s ease;
}

.slider:hover ~ .slider-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.slider-chevron {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
  transform: rotate(90deg);
}

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */

.why-card {
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.45);
}

.why-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-translucent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-icon {
  width: 26px;
  height: 26px;
  color: var(--gold-primary);
}

.why-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-grey);
  line-height: 1.6;
}

/* ==========================================================================
   10. PROCESS TIMELINE
   ========================================================================== */

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

.timeline-line {
  position: absolute;
  top: 0;
  left: 32px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0; /* Animated dynamically */
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  box-shadow: 0 0 10px var(--gold-primary);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-step {
  display: flex;
  position: relative;
}

.timeline-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-matte-black);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-right: 32px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.timeline-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-grey);
  transition: var(--transition-smooth);
}

.timeline-content {
  padding: 32px;
  border-radius: 8px;
  flex-grow: 1;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-grey);
  line-height: 1.6;
}

/* Timeline Active / Scrolled Styles */
.timeline-step.active .timeline-icon-wrapper {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.timeline-step.active .timeline-number {
  color: var(--gold-bright);
}

/* ==========================================================================
   11. TESTIMONIALS Carousel
   ========================================================================== */

.testimonials-slider-container {
  overflow: hidden;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: calc(50% - 12px); /* Displays 2 reviews */
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.rating-stars {
  color: var(--gold-primary);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light-grey);
  font-style: italic;
  margin-bottom: 32px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.reviewer-desc {
  font-size: 0.75rem;
  color: var(--text-grey);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold-primary);
  transform: scale(1.2);
}

/* ==========================================================================
   12. FAQ Accordion
   ========================================================================== */

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 32px;
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(212, 175, 55, 0.04);
  color: var(--gold-bright);
}

.accordion-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
  padding: 0 32px 24px 32px;
  font-size: 0.88rem;
  color: var(--text-grey);
  line-height: 1.6;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   13. LEAD GENERATION SECTION
   ========================================================================== */

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  gap: 16px;
}

.trust-check {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--text-light-grey);
}

.quick-call-container {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.quick-call-title {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.quick-calls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-badge {
  display: flex;
  align-items: center;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-light-grey);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.call-badge:hover {
  border-color: var(--gold-primary);
  background: var(--gold-translucent);
  transform: translateX(4px);
}

/* Glassmorphic Form Card */
.lead-form-card {
  padding: 40px;
  border-radius: 12px;
}

.form-title {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.78rem;
  color: var(--text-grey);
  margin-bottom: 32px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-compact-grid {
  gap: 16px !important;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-grey);
}

.form-input {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-white);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(20, 20, 20, 0.9);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
}

/* File upload styling */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-btn {
  border: 1px dashed rgba(212, 175, 55, 0.3);
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.file-upload-input:hover ~ .file-upload-btn {
  border-color: var(--gold-primary);
  background: var(--gold-translucent);
}

.upload-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

#file-name-label {
  font-size: 0.8rem;
  color: var(--text-grey);
}

/* ==========================================================================
   14. CONTACT SECTION
   ========================================================================== */

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-card {
  padding: 32px;
  border-radius: 6px;
}

.contact-card-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.contact-card-value {
  font-size: 1.05rem;
  color: var(--text-light-grey);
  line-height: 1.6;
}

.contact-item-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
}

.contact-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.82rem;
  color: var(--text-grey);
}

.contact-val {
  font-size: 0.85rem;
  color: var(--text-light-grey);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.social-channels-card {
  padding: 24px 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-links-row {
  display: flex;
  gap: 16px;
}

.social-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-grey);
  transition: var(--transition-fast);
}

.social-link-icon:hover {
  border-color: var(--gold-primary);
  color: var(--gold-bright);
  background-color: var(--gold-translucent);
  transform: translateY(-2px);
}

.social-link-icon svg {
  width: 18px;
  height: 18px;
}

.contact-map-block {
  height: 100%;
  min-height: 450px;
}

.map-iframe-container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow-gold);
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-logo {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.footer-desc-text {
  font-size: 0.82rem;
  color: var(--text-grey);
  line-height: 1.7;
}

.footer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-grey);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-contact-info {
  font-size: 0.82rem;
  color: var(--text-grey);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact-info a {
  color: var(--text-light-grey);
  text-decoration: none;
}

.admin-portal-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted) !important;
  transition: var(--transition-fast);
  cursor: pointer;
}

.admin-portal-link:hover {
  color: var(--gold-primary) !important;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright,
.designer-credits {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   16. INTERACTIVE MODALS (LIGHTBOX, CRM DASHBOARD)
   ========================================================================== */

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.5);
  border: var(--border-gold);
  color: var(--text-white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold-primary);
  color: #000000;
}

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

.lightbox-content {
  max-width: 80%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 4px;
  border: var(--border-gold);
  box-shadow: var(--box-shadow-gold);
}

.lightbox-caption {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light-grey);
}

/* CRM Admin Portal Modal */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.9);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-modal.open {
  display: flex;
}

.admin-modal-card {
  width: 100%;
  max-width: 960px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.admin-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-title {
  font-size: 1.2rem;
}

.admin-modal-close {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.admin-modal-close:hover {
  color: var(--gold-primary);
}

.admin-modal-body {
  padding: 32px;
  overflow-y: auto;
  max-height: 70vh;
}

.admin-screen-desc {
  font-size: 0.85rem;
  color: var(--text-grey);
  margin-bottom: 24px;
}

.admin-stats-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.admin-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold-primary);
  display: block;
}

.admin-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-grey);
  text-transform: uppercase;
}

.admin-actions-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.leads-table-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  text-align: left;
}

.leads-table th,
.leads-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leads-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-light-grey);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.leads-table td {
  color: var(--text-grey);
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leads-table tr:hover td {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.01);
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.9);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-popup.open {
  display: flex;
}

.success-card {
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.15);
  border: 2px solid #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  margin-bottom: 24px;
}

.success-check-icon {
  width: 36px;
  height: 36px;
}

.success-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.success-msg {
  font-size: 0.88rem;
  color: var(--text-grey);
  margin-bottom: 32px;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}

.success-actions a,
.success-actions button {
  flex: 1;
}

.success-notice {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ==========================================================================
   17. FLOATING CHANNEL CTAS
   ========================================================================== */

.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 900;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-call {
  background-color: var(--gold-primary);
  border: 1px solid var(--gold-bright);
}

.btn-whatsapp {
  background-color: #25d366;
}

.float-icon {
  width: 24px;
  height: 24px;
}

/* Tooltip on hover */
.floating-btn .tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-card-dark);
  border: var(--border-gold);
  color: var(--text-light-grey);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.floating-btn:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   18. SCROLL REVEAL TRANSITIONS
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
}

.scroll-reveal.fade-in {
  transform: translateY(0);
}

.scroll-reveal.slide-left {
  transform: translateX(-40px);
}

.scroll-reveal.slide-right {
  transform: translateX(40px);
}

.scroll-reveal.slide-up {
  transform: translateY(40px);
}

.scroll-reveal.scale-up {
  transform: scale(0.96);
}

/* Active Class triggered by JS */
.scroll-reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay modifiers */
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================================
   19. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .before-after-container {
    height: 400px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    height: 80px;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions .btn {
    display: none; /* Hide consultation in header for mobile to save space */
  }
  
  .grid-2-col,
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  
  .features-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-img-container {
    aspect-ratio: 16/10;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .before-after-container {
    height: 300px;
  }
  .label-before, .label-after {
    font-size: 0.6rem;
    padding: 6px 12px;
  }
  
  .timeline-line {
    left: 20px;
  }
  .timeline-icon-wrapper {
    width: 44px;
    height: 44px;
    margin-right: 16px;
  }
  .timeline-number {
    font-size: 0.9rem;
  }
  .timeline-content {
    padding: 20px;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  .admin-stats-summary {
    grid-template-columns: 1fr;
  }
  
  .admin-actions-row {
    flex-direction: column;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn .tooltip {
    display: none !important; /* Hide tooltips on mobile */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .features-bar-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lead-form-card {
    padding: 24px 16px;
  }
  .form-compact-grid {
    grid-template-columns: 1fr;
    gap: 18px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
