/*
 * Premium Luxury Real Estate Styling - Adnnan Contractor Redesign (Dark Luxury Edition)
 * Design Style: Dubai Luxury Real Estate Brand - Dark Theme & Gold Accents
 * Color Palette: Primary Slate (#0F172A), Secondary Charcoal (#111827), Premium Gold (#D4AF37)
 */

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

:root {
  --primary-color: #0F172A;
  --secondary-color: #111827;
  --accent-gold: #D4AF37;
  --light-gold: #E6C77D;
  --dark-gold: #AA771C;
  --white: #FFFFFF;
  --gray-text: #9CA3AF;
  --light-gray: #E2E8F0;
  
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(212, 175, 55, 0.15);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --gold-metallic: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 70%, #FBF5B7 85%, #AA771C 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--primary-color);
  color: var(--light-gray);
  font-family: var(--font-body) !important;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body, p, span, li, a, button, select, input, textarea, option {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6, .section-title, .hero-title {
  font-family: var(--font-heading) !important;
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 600;
}

/* Ambient Animated Lighting Effects in Background */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
  animation: ambientLight 20s infinite alternate ease-in-out;
}

@keyframes ambientLight {
  0% { filter: hue-rotate(0deg) opacity(0.8); }
  100% { filter: hue-rotate(10deg) opacity(1); }
}

/* Custom Selection */
::selection {
  background: var(--accent-gold);
  color: var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-metallic);
  border-radius: 5px;
  border: 2px solid var(--primary-color);
}

/* Custom Cursor Follower */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--gold-metallic);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease-out, border-color 0.3s, background-color 0.3s;
}

.custom-cursor.hovered {
  width: 12px;
  height: 12px;
  background: var(--white);
}

.custom-cursor-follower.hovered {
  width: 52px;
  height: 52px;
  border-color: var(--light-gold);
  background-color: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gold-metallic);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* Section Header Utilities */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-subheading) !important;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: inline-block;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 3px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold-metallic);
  margin: 1.2rem auto 0 auto;
  box-shadow: 0 1px 5px rgba(212, 175, 55, 0.4);
}

/* Sticky Luxury Navbar */
.navbar-luxury {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
  padding: 1.5rem 3rem;
}

.navbar-luxury.scrolled {
  background: #000000;
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  padding: 0.9rem 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.navbar-brand img {
  height: 52px;
  transition: var(--transition-smooth);
  filter: brightness(0) invert(1); /* Pure white logo */
}

.navbar-luxury.scrolled .navbar-brand img {
  height: 45px;
}

.nav-link-luxury {
  color: var(--accent-gold) !important; /* Gold text */
  font-family: var(--font-subheading) !important;
  font-size: 0.85rem;
  font-weight: 700 !important; /* Bold */
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.1rem;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--gold-metallic);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link-luxury:hover {
  color: var(--accent-gold) !important;
  transform: translateY(-1px);
}

.nav-link-luxury:hover::after {
  width: 70%;
}

/* Luxury Buttons */
.btn-gold-outline {
  border: 1px solid transparent;
  border-image: var(--gold-metallic) 1;
  color: var(--accent-gold) !important;
  font-family: var(--font-subheading) !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.85rem 1.8rem;
  border-radius: 0;
  background: transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-metallic);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-gold-outline:hover {
  color: var(--primary-color) !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-gold-outline:hover::before {
  left: 0;
}

.btn-gold-solid {
  background: var(--gold-metallic);
  color: var(--primary-color) !important;
  border: none;
  font-family: var(--font-subheading) !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.95rem 2.2rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gold-solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-30deg);
  transition: 0.75s;
  pointer-events: none;
}

.btn-gold-solid:hover::before {
  left: 120%;
}

.btn-gold-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* Hamburger menu toggle */
.navbar-toggler-luxury {
  border: none;
  outline: none;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Section Spacing */
.py-section {
  padding: 8.5rem 0;
}

/* ========================================
   ANIMATED PROCESS FLOW SECTION
   ======================================== */
.flow-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--primary-color) 0%, #080d1a 100%);
  position: relative;
  overflow: hidden;
}

.flow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Individual flow card */
.flow-row-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.flow-row-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(212, 175, 55, 0.05);
}

/* Row label with colored bar */
.flow-row-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.flow-label-bar {
  display: inline-block;
  width: 4px;
  height: 20px;
  border-radius: 99px;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.flow-label-text {
  font-family: var(--font-subheading) !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* Flow steps row */
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
}

/* Individual step */
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Icon wrapper */
.flow-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(var(--icon-color, #d4af37), 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--icon-color, #d4af37);
  box-shadow: 0 0 0 0 var(--icon-color, #d4af37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  cursor: pointer;
  animation: flowIconFloat 3s ease-in-out infinite;
}

.flow-step:nth-child(1)  .flow-icon-wrap { animation-delay: 0s; }
.flow-step:nth-child(3)  .flow-icon-wrap { animation-delay: 0.3s; }
.flow-step:nth-child(5)  .flow-icon-wrap { animation-delay: 0.6s; }
.flow-step:nth-child(7)  .flow-icon-wrap { animation-delay: 0.9s; }
.flow-step:nth-child(9)  .flow-icon-wrap { animation-delay: 1.2s; }

@keyframes flowIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Active/hover icon glow */
.flow-step:hover .flow-icon-wrap,
.flow-step.active .flow-icon-wrap {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.08), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: scale(1.15) translateY(-5px);
}

.flow-step-name {
  font-family: var(--font-subheading) !important;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s ease;
}

.flow-step:hover .flow-step-name,
.flow-step.active .flow-step-name {
  color: var(--accent-gold);
}

/* Connector line between steps */
.flow-connector {
  flex: 1;
  min-width: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin-bottom: 28px; /* offset to align with icon center, above label */
}

/* Animated dashed line */
.flow-dashes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.5) 0px,
    rgba(212, 175, 55, 0.5) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 14px 2px;
  animation: dashFlow 1.8s linear infinite;
}

@keyframes dashFlow {
  0% { background-position: 0 0; }
  100% { background-position: 56px 0; }
}

/* Moving dot on the connector */
.flow-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8), 0 0 16px rgba(212, 175, 55, 0.4);
  animation: dotTravel 2.5s ease-in-out infinite;
}

.flow-row-card:nth-child(2) .flow-dot { animation-delay: 0.5s; }
.flow-row-card:nth-child(3) .flow-dot { animation-delay: 1s; }
.flow-row-card:nth-child(4) .flow-dot { animation-delay: 1.5s; }

@keyframes dotTravel {
  0%   { left: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

/* Responsive flow */
@media (max-width: 768px) {
  .flow-steps {
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
  }
  .flow-connector { display: none; }
  .flow-step { width: calc(33% - 1rem); }
  .flow-row-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .flow-step { width: calc(50% - 0.6rem); }
}

/* Hero Section with Parallax Background & Overlay */
.hero-luxury {
  height: auto !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10rem 0 12rem 0 !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.96) 100%);
  z-index: 1;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.hero-subtitle {
  font-family: var(--font-subheading) !important;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-intro-text {
  color: var(--light-gray) !important;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 650px;
}

.hero-intro-text strong {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Role tag beneath the name */
.hero-role-tag {
  color: var(--light-gold) !important;
  font-family: var(--font-subheading) !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-role-tag i {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* Credential badges row */
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cred-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 30px;
  padding: 0.45rem 1rem;
  font-family: var(--font-subheading) !important;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-gold) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.hero-cred-badge:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.hero-cred-badge i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* Contact row in Hero */
.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--light-gray) !important;
  text-decoration: none !important;
  font-family: var(--font-subheading) !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.hero-contact-item i {
  width: 32px;
  height: 32px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.hero-contact-item:hover {
  color: var(--accent-gold) !important;
}

.hero-contact-item:hover i {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--accent-gold);
}


/* Portrait photo styling in Hero */
.hero-portrait-wrapper {
  position: relative;
  display: inline-block;
  z-index: 2;
  margin: 1.5rem auto;
  cursor: pointer;
}

/* Ambient gold glow orb behind the person */
.hero-portrait-glow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 3.5s ease-in-out infinite;
  filter: blur(10px);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

/* Outer animated ring */
.hero-portrait-ring {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  z-index: 0;
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
}

/* Inner animated ring */
.hero-portrait-ring.ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(212, 175, 55, 0.12);
  animation: ringPulse 3s ease-in-out infinite 0.8s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-portrait-img {
  max-width: 420px;
  width: 100%;
  height: 540px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 1px rgba(212, 175, 55, 0.2));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
  position: relative;
  z-index: 1;
}

.hero-portrait-wrapper:hover .hero-portrait-img {
  transform: translateY(-18px) scale(1.04);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

/* Name Card Overlay at bottom of portrait */
.hero-portrait-namecard {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 3;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 12px rgba(212, 175, 55, 0.1);
}

.hero-portrait-wrapper:hover .hero-portrait-namecard {
  border-color: var(--accent-gold);
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateX(-50%) translateY(-4px);
}

.hero-portrait-namecard-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.portrait-namecard-name {
  font-family: var(--font-heading) !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portrait-namecard-title {
  font-family: var(--font-subheading) !important;
  font-size: 0.7rem;
  color: var(--gray-text);
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portrait-namecard-title i {
  color: var(--accent-gold);
}

.portrait-namecard-verified {
  width: 34px;
  height: 34px;
  background: var(--gold-metallic);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
}

.portrait-namecard-verified i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

.hero-portrait-wrapper:hover .portrait-namecard-verified {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Portrait social links that appear on hover */
.hero-portrait-socials {
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 5;
  opacity: 0;
  transition: var(--transition-smooth);
}

.hero-portrait-wrapper:hover .hero-portrait-socials {
  opacity: 1;
  right: -50px;
}

.hero-portrait-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(10, 14, 26, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold) !important;
  text-decoration: none !important;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.hero-portrait-social-btn:hover {
  background: var(--gold-metallic);
  color: var(--primary-color) !important;
  border-color: var(--accent-gold);
  transform: scale(1.15);
}

/* Instagram Interactive Banner */
.instagram-banner-glass {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15) 0%, rgba(253, 29, 29, 0.15) 50%, rgba(252, 176, 69, 0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem 4rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.instagram-banner-glass::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
  pointer-events: none;
}

.instagram-banner-glass:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 30px rgba(253, 29, 29, 0.3);
  border-color: rgba(253, 29, 29, 0.6);
}

.instagram-banner-glass:hover::before {
  opacity: 1;
  transform: scale(1);
}

.instagram-banner-glass .insta-banner-btn {
  transition: all 0.3s ease;
}

.instagram-banner-glass:hover .insta-banner-btn {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Instagram Reel Wrapper */
.instagram-reel-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 14px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(253, 29, 29, 0.5), rgba(131, 58, 180, 0.5));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(131, 58, 180, 0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-reel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: reelGlowPulse 4s ease-in-out infinite;
}

@keyframes reelGlowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.instagram-embed-iframe {
  border-radius: 10px;
  display: block;
  background: #ffffff;
}

.instagram-reel-wrapper:hover {
  transform: translateY(-10px) scale(1.02) rotate(-1deg);
}

/* Animated entrance for hero text */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-hero-text {
  animation: heroFadeRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.animate-hero-img {
  animation: heroFadeLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}


/* Glass Search Bar */
.luxury-search-bar {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.luxury-search-bar:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
}

.search-input-group label {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.search-select {
  background: transparent;
  color: var(--white);
  border: none;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
  padding: 0.3rem 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.search-select:focus {
  border-bottom-color: var(--accent-gold);
}

.search-select option {
  background-color: var(--secondary-color);
  color: var(--white);
}

.search-divider {
  width: 1px;
  height: 45px;
  background-color: rgba(212, 175, 55, 0.2);
  margin: 0 auto;
}

/* Floating Statistics Card inside Hero */
.hero-stats-wrapper {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 3;
}

.hero-stats-glass {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.8rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-stat-item {
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.hero-stat-item:hover {
  transform: scale(1.05);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-family: var(--font-subheading) !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gray-text);
  letter-spacing: 2px;
}

/* About Section (White/Light Theme) */
#about {
  background-color: #ffffff;
  color: #1e293b;
}

#about h1, #about h2, #about h3, #about h4, #about .section-title {
  color: #0f172a !important;
}

#about p, #about span {
  color: #475569 !important;
}

#about .text-white-50 {
  color: #64748b !important;
}

#about .about-badge {
  color: #0f172a !important;
}

#about .about-badge-text, #about .about-badge-num {
  color: #0f172a !important;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.06) rotate(0.5deg);
}

.about-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--gold-metallic);
  color: var(--primary-color);
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--font-heading);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-badge {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.about-badge-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.luxury-divider-gold {
  width: 100px;
  height: 3px;
  background: var(--gold-metallic);
  margin: 1.8rem 0;
  box-shadow: 0 1px 5px rgba(212, 175, 55, 0.4);
}

.about-highlight-box {
  background: rgba(212, 175, 55, 0.04);
  border-left: 4px solid var(--accent-gold);
  border-image: linear-gradient(to bottom, var(--accent-gold), var(--dark-gold)) 1 100%;
  padding: 1.8rem;
  margin-top: 2.2rem;
  border-radius: 0 8px 8px 0;
  transition: var(--transition-smooth);
}

.about-highlight-box:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(5px);
}

/* Mission Section Card Layout */
#mission {
  background-color: var(--secondary-color) !important;
}

.mission-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 4.5rem 3.5rem;
  border-radius: 8px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-metallic);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.mission-card:hover {
  transform: translateY(-10px) rotateX(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
  display: inline-block;
  transition: var(--transition-smooth);
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-card:hover .mission-icon {
  transform: rotateY(180deg) scale(1.1);
}

.mission-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* What Makes Us Special Section */
#special-features {
  background-color: var(--primary-color) !important;
}

.feature-glass-card {
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 3rem 2.2rem;
  border-radius: 8px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.feature-glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-glass-card:hover::after {
  opacity: 1;
}

.feature-glass-card:hover {
  transform: translateY(-8px) scale(1.03) rotateY(2deg);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
}

.feature-icon-gold {
  color: var(--accent-gold);
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.feature-glass-card:hover .feature-icon-gold {
  transform: scale(1.1);
  color: var(--light-gold);
}

.feature-glass-card h4 {
  font-size: 1.3rem;
  color: var(--white) !important;
}

/* Why Choose Me Section */
#why-choose-us {
  background-color: var(--secondary-color) !important;
}

.why-choose-card {
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  height: 100%;
}

.why-choose-card:hover {
  background: rgba(17, 24, 39, 0.8);
  border-color: var(--glass-border);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
  transform: translateY(-8px) scale(1.02);
}

.why-choose-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.why-choose-card:hover .why-choose-icon-wrap {
  background: var(--gold-metallic);
  color: var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.why-choose-icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.why-choose-card:hover .why-choose-icon-wrap i {
  color: var(--primary-color);
}

.why-choose-card h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Statistics Strip Section */
.stats-strip {
  background: var(--gold-metallic);
  color: var(--primary-color);
  padding: 4.5rem 0;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.stat-strip-box {
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-strip-box:hover {
  transform: scale(1.08);
}

.stat-strip-num {
  font-family: var(--font-heading) !important;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--primary-color) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.stat-strip-label {
  font-family: var(--font-subheading) !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.85) !important;
}

/* Services Section (White/Light Theme) */
#services {
  background-color: #ffffff !important;
}

#services .section-title {
  color: #0f172a !important;
}

#services .text-white-50 {
  color: #64748b !important;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 440px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.service-card-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.12) rotate(0.5deg);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.98) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2.5rem;
  z-index: 3;
  transition: var(--transition-smooth);
  transform: translateY(50px);
}

.service-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.08);
}

.service-card:hover .service-card-content {
  transform: translateY(0);
}

.service-card-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--white) !important;
}

.service-card-desc {
  color: var(--gray-text) !important;
  font-size: 0.95rem;
  opacity: 0;
  transition: var(--transition-smooth);
  margin-bottom: 2rem;
}

.service-card:hover .service-card-desc {
  opacity: 1;
}

/* Portfolio Masonry Filtering */
#portfolio {
  background-color: var(--secondary-color) !important;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.case-study-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-study-img-area {
  position: relative;
  height: 260px;
  background: #111827;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-img-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.case-study-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0ea5e9;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
}

.case-study-img3d {
  width: 80%;
  height: auto;
  transform: translateZ(60px) rotateX(10deg);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  z-index: 2;
  transition: all 0.5s ease;
}

.case-study-card:hover .case-study-img3d {
  transform: translateZ(80px) rotateX(0deg) scale(1.05);
  box-shadow: 0 30px 50px rgba(0,0,0,0.7);
}

.case-study-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  transform: translateZ(30px);
}

.case-study-img-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.case-study-img-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.case-study-content {
  padding: 2.5rem 2rem;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.case-study-heading {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-study-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-study-stats-row {
  display: flex;
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: auto;
  margin-bottom: 1rem;
  justify-content: space-around;
  border: 1px solid #f1f5f9;
}

.case-study-stat {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.read-full-btn {
  color: rgba(212, 175, 55, 1);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.read-full-btn:hover {
  color: #0f172a;
}

/* Portfolio Filters */
.portfolio-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-subheading) !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.portfolio-filter-btn.active, .portfolio-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
  background: rgba(212, 175, 55, 0.05);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
}

.portfolio-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
}

.portfolio-item:hover .portfolio-item-img {
  transform: scale(1.08) rotate(0.5deg);
}

.portfolio-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  text-align: center;
  border: 1px solid var(--accent-gold);
  border-image: var(--gold-metallic) 1;
  border-radius: 8px;
  transform: translateZ(50px) scale(0.95);
}

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

.portfolio-item-title {
  font-size: 1.5rem;
  color: var(--accent-gold) !important;
  margin-bottom: 0.5rem;
}

.portfolio-item-desc {
  font-size: 0.9rem;
  color: var(--gray-text) !important;
  margin-bottom: 1.8rem;
}

/* Founder Section */
.founder-card {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.founder-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.founder-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 450px;
}

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

.founder-card:hover .founder-img {
  transform: scale(1.03);
}

.founder-social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(360deg, rgba(15, 23, 42, 0.95), transparent);
  padding: 2.5rem;
  text-align: center;
}

.founder-social-link {
  color: var(--white) !important;
  font-size: 1.3rem;
  margin: 0 1rem;
  transition: var(--transition-smooth);
}

.founder-social-link:hover {
  color: var(--accent-gold) !important;
  transform: translateY(-3px) scale(1.1);
}

.founder-bio-wrap {
  padding: 4.5rem 3.5rem;
}

.founder-title-gold {
  color: var(--accent-gold) !important;
  font-family: var(--font-subheading) !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 2.2rem;
  font-weight: 600;
}

/* Testimonials Carousel Section */
#testimonials {
  background-color: var(--secondary-color) !important;
}

.testimonial-card-luxury {
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  border-radius: 8px;
  margin: 1rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card-luxury::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.04);
  pointer-events: none;
}

.testimonial-card-luxury:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 25px 45px rgba(212, 175, 55, 0.08);
  transform: scale(1.01);
}

.testimonial-quote {
  font-style: italic;
  color: var(--gray-text) !important;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.testimonial-author-name {
  color: var(--white) !important;
  font-size: 1.15rem;
}

.testimonial-author-title {
  color: var(--accent-gold) !important;
  font-size: 0.8rem;
}

/* FAQ Accordion Section */
#faqs {
  background-color: var(--primary-color) !important;
}

.faq-accordion .accordion-item {
  background-color: rgba(17, 24, 39, 0.6) !important;
  border: 1px solid var(--glass-border) !important;
  margin-bottom: 1.2rem;
  border-radius: 6px !important;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.4) !important;
}

.faq-accordion .accordion-button {
  background-color: transparent !important;
  color: var(--white) !important;
  font-family: var(--font-subheading) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 1.5rem;
  box-shadow: none !important;
  border: none !important;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-gold) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.faq-accordion .accordion-body {
  color: var(--gray-text) !important;
  font-size: 0.95rem;
  padding: 1.8rem;
  line-height: 1.8;
}

/* Contact Form Section */
#contact-form-section {
  background-color: var(--secondary-color) !important;
}

.lead-modal-content {
  background-color: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--accent-gold);
  border-image: var(--gold-metallic) 1;
  border-radius: 8px;
  padding: 3.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.lead-modal-content h3 {
  color: var(--white) !important;
}

.lead-modal-form .form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 0.95rem 1.2rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
}

.lead-modal-form .form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  color: var(--white);
}

/* Luxury Multi-Column Footer */
.footer-luxury {
  background-color: #0B101E;
  border-top: 1px solid var(--glass-border);
  padding: 7rem 0 2rem 0;
}

.footer-luxury h4, .footer-luxury span, .footer-luxury p, .footer-luxury a {
  color: var(--white) !important;
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
}

.footer-about-text {
  color: var(--gray-text) !important;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.footer-social-wrap {
  display: flex;
  gap: 1.2rem;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  background: var(--gold-metallic);
  border-color: var(--accent-gold);
  color: var(--primary-color) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-5px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 2.2rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-metallic);
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 1rem;
}

.footer-links-list a {
  color: var(--gray-text) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--accent-gold) !important;
  transform: translateX(8px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gray-text) !important;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent-gold) !important;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-contact-item a {
  color: var(--gray-text) !important;
}

.footer-contact-item a:hover {
  color: var(--accent-gold) !important;
}

.footer-newsletter-form {
  position: relative;
}

.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  padding: 0.95rem 1.2rem;
  width: 100%;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-newsletter-input:focus {
  border-color: var(--accent-gold);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
}

.footer-newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--gold-metallic);
  border: none;
  padding: 0 1.5rem;
  color: var(--primary-color) !important;
  transition: var(--transition-smooth);
}

.footer-newsletter-btn:hover {
  background: var(--light-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2.5rem 0;
  margin-top: 5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.85rem;
}

/* Floating Actions */
.floating-actions-container {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.floating-action-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  font-size: 1.4rem;
  cursor: pointer;
}

.floating-action-btn:hover {
  transform: translateY(-6px) scale(1.05);
}

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

.btn-whatsapp:hover {
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.btn-call {
  background: var(--gold-metallic);
  color: var(--primary-color) !important;
}

.btn-call:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-totop {
  background-color: rgba(15, 23, 42, 0.9);
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.btn-totop.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Exit Intent Popup Trigger */
.lead-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lead-modal-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

/* Page Loader */
#luxury-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 10100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}

#luxury-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrap {
  width: 130px;
  margin-bottom: 2.5rem;
  animation: logoPulse 1.8s ease-in-out infinite alternate;
}

.loader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background: var(--gold-metallic);
  animation: loaderProgress 1.6s infinite ease-in-out;
}

@keyframes logoPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 15px rgba(212,175,55,0.4)); }
}

@keyframes loaderProgress {
  0% { left: -60%; }
  100% { left: 100%; }
}

/* Global Text Visibility & High Contrast Overrides for Dark Theme */
#about, #mission, #special-features, #why-choose-us, #portfolio, #testimonials, #faqs, #contact-form-section {
  color: var(--light-gray) !important;
}

#about p, #mission p, #special-features p, #why-choose-us p, #portfolio p, #testimonials p, #faqs p, #contact-form-section p,
#about span, #mission span, #special-features span, #why-choose-us span, #portfolio span, #testimonials span, #faqs span, #contact-form-section span {
  color: var(--light-gray) !important;
}

/* Keep gold and white texts properly highlighted */
.text-gold, .section-subtitle, .about-badge-text, .founder-title-gold, .stat-strip-label {
  color: var(--accent-gold) !important;
}

.hero-title, .section-title, .about-badge-num, .stat-strip-num, .hero-stat-num, .service-card-title, .portfolio-item-title, .testimonial-author-name {
  color: var(--white) !important;
}

.text-white-50, .text-muted {
  color: var(--gray-text) !important;
}

.lead {
  color: var(--white) !important;
}

/* Direct premium luxury font overrides to guarantee rendering */
body, p, span, li, a, button, select, input, textarea, option, .testimonial-quote, .mission-text {
  font-family: 'Outfit', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .about-badge-num, .founder-title-gold, .stat-strip-num, .hero-stat-num {
  font-family: 'Cinzel', serif !important;
  letter-spacing: 2px !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-divider {
    display: none;
  }
  .hero-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.2rem 0;
  }
  .hero-stat-item:last-child {
    border-bottom: none;
  }
  .navbar-luxury {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    padding: 1rem 2rem;
  }
  .hero-portrait-img {
    max-width: 300px;
    height: 400px;
  }
  .hero-portrait-socials {
    display: none;
  }
}

@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .founder-bio-wrap {
    padding: 3rem 1.8rem;
  }
  .hero-portrait-img {
    max-width: 260px;
    height: 340px;
  }
  .hero-portrait-namecard {
    width: calc(100% - 16px);
    padding: 0.65rem 0.75rem;
  }
  .portrait-namecard-name {
    font-size: 0.78rem;
  }
  .portrait-namecard-title {
    font-size: 0.62rem;
  }
}
