/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #19191d;
  --bg-light: #f9f9fb;
  --text-dark-primary: #18181b;
  --text-dark-secondary: #52525b;
  
  --gold-primary: #d4af37;
  --gold-dark: #b38728;
  --gold-light: #f5e4a8;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-gradient: linear-gradient(135deg, #b38728 0%, #f5e4a8 30%, #b38728 70%, #d4af37 100%);
  --gold-text-gradient: linear-gradient(135deg, #c59b27 0%, #fbf5b7 50%, #aa771c 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a9;
  --text-muted: #71717a;
  
  --border-color: rgba(212, 175, 55, 0.15);
  --border-hover: rgba(212, 175, 55, 0.4);
  
  --font-headings: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  --glass-bg: rgba(17, 17, 19, 0.75);
  --glass-border: rgba(212, 175, 55, 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

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

/* Typography & General Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.gold-gradient-text {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-serif {
  font-family: var(--font-serif);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  border: none;
  box-shadow: 0 4px 15px rgba(179, 135, 40, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 135, 40, 0.6);
  filter: brightness(1.1);
}

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

.btn-outline:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 135, 40, 0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

/* TOP UTILITY BAR */
.top-bar {
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 10px 0;
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

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

/* GLASS NAVIGATION HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 5px 0;
}

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

.logo-wrapper img {
  height: 65px;
  transition: var(--transition-smooth);
}

header.scrolled .logo-wrapper img {
  height: 52px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.15;
  transition: var(--transition-smooth);
}

.logo-title-text {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.logo-subtitle-text {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  margin-top: 1px;
}

header.scrolled .logo-title-text {
  font-size: 0.95rem;
}

header.scrolled .logo-subtitle-text {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .logo-title-text {
    font-size: 0.95rem;
  }
  .logo-subtitle-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .logo-title-text {
    font-size: 0.8rem;
  }
  .logo-subtitle-text {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .logo-text {
    display: none;
  }
}

/* NAV LINKS */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

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

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--gold-primary);
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
  border-radius: 0 0 6px 6px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dropdown-item a:hover {
  background-color: rgba(212, 175, 55, 0.05);
  color: var(--gold-primary);
  padding-left: 25px;
}

/* HERO SLIDER SECTION */
.hero-section {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 550px;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, background-size 10s ease-out;
  background-size: 105%;
  background-position: center;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.7) 40%, rgba(10, 10, 11, 0.4) 100%);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  background-size: 100%;
}

/* HERO TEXT SLIDER ANIMATION */
.hero-slide .hero-subtitle,
.hero-slide .hero-title,
.hero-slide .hero-desc,
.hero-slide .hero-btns {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-slide.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero-slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* FLOATING SIDE PANEL */
.floating-side-panel {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.floating-btn i {
  font-size: 1.1rem;
  color: var(--gold-primary);
}

.floating-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #000000;
  transform: translateX(-5px);
}

.floating-btn.whatsapp:hover i {
  color: #000000;
}

/* HERO SLIDER CONTROLS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17,17,19,0.5);
  border: 1px solid rgba(212,175,55,0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* bottom hero cards */
.hero-bottom-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 10, 11, 1) 0%, rgba(10, 10, 11, 0) 100%);
  z-index: 15;
  padding-bottom: 20px;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-bottom-card {
  background: rgba(17, 17, 19, 0.85);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 6px;
  display: flex;
  gap: 15px;
  transition: var(--transition-smooth);
}

.hero-bottom-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.hero-bottom-card i {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-top: 3px;
}

.hero-bottom-card h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.hero-bottom-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* TOP SERVICES SECTION */
.services-section {
  background-color: var(--bg-light);
  color: var(--text-dark-primary);
}

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

.service-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card-icon {
  background-color: rgba(212, 175, 55, 0.08);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: var(--gold-gradient);
  transform: rotateY(180deg);
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

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

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-dark-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* SECTION HEADER SPAN DIVIDER */
.title-divider {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold-gradient);
  margin-top: 15px;
  border-radius: 2px;
}

/* FEATURED PROPERTIES SECTION (DARK) */
.properties-section {
  background-color: var(--bg-secondary);
}

.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.properties-header-title {
  margin-bottom: 0;
}

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

.property-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.property-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
}

.property-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(17, 17, 19, 0.6);
  border: 1px solid rgba(255,255,255,0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.property-favorite:hover {
  background: #ffffff;
  color: #e11d48;
  border-color: #ffffff;
}

.property-content {
  padding: 20px;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.property-location i {
  color: var(--gold-primary);
}

.property-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.property-specs {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  margin-bottom: 15px;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.property-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-specs span i {
  color: var(--gold-primary);
}

.property-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-price {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.property-arrow-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.property-card:hover .property-arrow-btn {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
}

/* STATS BAR */
.stats-bar {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

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

/* SPECIAL FEATURED PROJECT: LADIES MARKET */
.featured-project-section {
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-color);
}

.project-marquee-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.project-gallery {
  position: relative;
  min-height: 450px;
}

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

.project-gallery-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
}

.project-details-pane {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: var(--font-headings);
  line-height: 1.2;
}

.project-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.project-bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.project-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.project-bullet i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.project-bullet h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.project-bullet p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.project-action-row {
  display: flex;
  gap: 15px;
}

/* ABOUT US & WHY CHOOSE US GRID SECTION */
.about-grid-section {
  background-color: var(--bg-primary);
}

.about-complex-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

/* WHY CHOOSE PANELS */
.why-choose-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 35px 25px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-card h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.why-choose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-choose-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-choose-item i {
  color: var(--gold-primary);
  margin-top: 4px;
}

.why-choose-item-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.why-choose-item-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* IMAGE COMPILATION PANELS */
.about-media-collage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.collage-main-img {
  position: relative;
  height: 320px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.collage-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 17, 19, 0.9);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-number {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.badge-label {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.collage-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.collage-thumb {
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

/* ABOUT TEXT PANELS */
.about-content-card {
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-card .section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.about-bullets-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-bullet-item i {
  color: var(--gold-primary);
}

/* CHAIRMAN MESSAGE SECTION */
.chairman-message-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}

.chairman-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.chairman-img-pane {
  flex: 0 0 350px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--card-shadow);
  height: 420px;
}

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

.chairman-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.95) 75%, rgba(10, 10, 11, 0) 100%);
  padding: 25px 20px 20px 20px;
  text-align: center;
}

.chairman-badge h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 3px;
}

.chairman-badge p {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.chairman-text-pane {
  flex: 1;
}

.chairman-text-pane .section-tag {
  margin-bottom: 5px;
}

.chairman-text-pane .title-divider {
  margin-top: 10px;
  margin-bottom: 30px;
}

.chairman-quote {
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  opacity: 0.2;
  margin-bottom: 10px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.chairman-signature {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
}

.chairman-signature h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chairman-signature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsiveness for Chairman section */
@media (max-width: 992px) {
  .chairman-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .chairman-img-pane {
    flex: 0 0 auto;
    width: 300px;
    height: 360px;
    margin: 0 auto;
  }
  .chairman-text-pane .title-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* FOOTER SECTION */
footer {
  background-color: #050506;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

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

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-headings);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-about-logo {
  height: 120px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

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

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

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

.newsletter-form {
  margin-top: 20px;
}

.newsletter-input-group {
  display: flex;
}

.newsletter-input {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-right: none;
  padding: 12px 15px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 4px 0 0 4px;
  outline: none;
  width: 100%;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
}

.newsletter-btn {
  background: var(--gold-gradient);
  border: none;
  color: #000000;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  filter: brightness(1.1);
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* PAGE HEADER HERO (For Subpages) */
.page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 11, 0.85);
}

.page-header .container {
  position: relative;
  z-index: 10;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
}

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

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

/* INNER PAGES STYLING */

/* ABOUT PAGE */
.about-history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-history-img {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

.team-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.team-img {
  height: 250px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
}

/* PROPERTIES SEARCH / FILTER PAGE */
.filter-bar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: var(--card-shadow);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 0.5fr;
  gap: 20px;
  align-items: flex-end;
}

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

.filter-group label {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.filter-control {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 12px 15px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.filter-control:focus {
  border-color: var(--gold-primary);
}

/* CONTACT PAGE */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-info-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-control {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 12px 15px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--gold-primary);
}

.form-group-full {
  grid-column: span 2;
}

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

.map-section {
  padding-bottom: 0;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 400px;
}

/* MOBILE TOGGLE & DRAWERS */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-complex-grid {
    grid-template-columns: 1fr;
  }
  .about-content-card {
    padding: 20px 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-grid .btn {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 100px 40px 40px 40px;
    align-items: flex-start;
    justify-content: flex-start;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  .nav-menu.active {
    right: 0;
  }
  .dropdown {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown .nav-link {
    flex-grow: 1;
  }
  .nav-link i {
    display: none; /* Hide default inline chevron on mobile */
  }
  .mobile-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .mobile-dropdown-toggle:hover, .mobile-dropdown-toggle.active {
    color: var(--gold-primary);
  }
  .mobile-dropdown-toggle i {
    transition: var(--transition-smooth);
  }
  .mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
    width: 100%;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .floating-side-panel {
    display: none; /* Hide floating side panel on mobile for clean UI */
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-gallery {
    min-height: 250px;
  }
  .project-details-pane {
    padding: 30px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-history-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-bottom-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .project-bullet-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--gold-primary);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.toast-message {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
}

/* --- GALLERY PAGE STYLING --- */
.gallery-section {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

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

.gallery-tab-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-tab-btn:hover, .gallery-tab-btn.active {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 11, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
}

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

.gallery-overlay-category {
  color: var(--gold-primary);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  transform: translateY(-15px);
  transition: var(--transition-smooth);
}

.gallery-overlay-title {
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-category,
.gallery-item:hover .gallery-overlay-title {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WHY CHOOSE US PAGE --- */
.why-details-section {
  padding: 80px 0;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
}

.why-features-grid.reverse {
  direction: rtl;
}

.why-features-grid.reverse > div {
  direction: ltr;
}

.why-feature-img {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 400px;
}

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

.why-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.why-feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.why-feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.why-feature-card i {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
  display: block;
}

.why-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .why-feature-img {
    height: 280px;
  }
  .why-features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- FAQS PAGE ACCORDIONS --- */
.faq-page-section {
  padding: 80px 0;
}

.faq-category-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.faq-accordion-group {
  margin-bottom: 60px;
}

.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-headings);
  margin-bottom: 0;
  padding-right: 20px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-item.active .faq-icon {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 30px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* --- LEGAL PAGES (PRIVACY & TERMS) --- */
.legal-section {
  padding: 80px 0;
}

.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .legal-section {
    padding: 40px 0;
  }
  
  .legal-card {
    padding: 20px;
  }
  
  .legal-card h2 {
    font-size: 1.3rem !important;
  }
}
