/* ==========================================================================
   MAHUBE TUMELO PROJECTS - LUXURY GOLD, OBSIDIAN & ROYAL PURPLE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #070709;
  --bg-surface: #0f0f15;
  --bg-card: #14141c;
  --bg-glass: rgba(20, 20, 28, 0.75);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA771C;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);

  --purple-royal: #3C1053;
  --purple-accent: #6B21A8;
  --purple-light: #A855F7;
  --purple-dark: #1E0533;
  --purple-glow: rgba(107, 33, 168, 0.35);

  --text-bright: #FFFFFF;
  --text-main: #E5E7EB;
  --text-muted: #9CA3AF;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-purple: rgba(107, 33, 168, 0.3);
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--purple-glow);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, var(--purple-dark) 0%, var(--bg-dark) 70%);
  min-height: 100vh;
}

/* Background Gold Dust Canvas */
#gold-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Typography Utility */
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

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

.purple-text {
  color: var(--purple-light);
  text-shadow: 0 0 12px var(--purple-glow);
}

.serif-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

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

/* Layout Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

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

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 15px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--gold-primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Page Inner Banners */
.page-banner {
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at center, rgba(60, 16, 83, 0.5) 0%, var(--bg-dark) 80%);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
}

.page-banner h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

/* Glassmorphic Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #070709;
  border: none;
  box-shadow: 0 4px 15px var(--gold-glow);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #070709;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-accent) 0%, var(--purple-royal) 100%);
  color: #FFFFFF;
  border: 1px solid var(--purple-light);
  box-shadow: 0 4px 15px var(--purple-glow);
}

.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
}

/* Header & Navigation */
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(12px);
}

header.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 9, 0.95);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

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

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.brand-symbol {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070709;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--gold-primary);
}

.brand-text h1 {
  font-size: 1.3rem;
  color: var(--text-bright);
  font-weight: 700;
}

.brand-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.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, .nav-link.active {
  color: var(--gold-light);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(60, 16, 83, 0.45) 0%, rgba(7, 7, 9, 0.88) 85%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(107, 33, 168, 0.25);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-main);
  max-width: 720px;
  margin: 0 auto 40px auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 25px;
  background: rgba(15, 15, 21, 0.65);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0;
}

/* Services Grid Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--purple-glow);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(107, 33, 168, 0.2);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--text-bright);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 25px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.service-list li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.service-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
}

.service-btn-link i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-btn-link i {
  transform: translateX(5px);
}

/* Service Detail Page Layout */
.service-detail-hero {
  padding: 160px 0 60px 0;
  background: linear-gradient(135deg, rgba(60, 16, 83, 0.6), rgba(7, 7, 9, 0.9));
  border-bottom: 1px solid var(--border-gold);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.service-detail-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-check-list {
  list-style: none;
  margin: 30px 0;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-main);
}

.feature-check-list li i {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.video-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.about-badge-floating {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--bg-surface);
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 20px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
}

.about-badge-floating h4 {
  font-size: 2rem;
  color: var(--gold-primary);
}

.about-badge-floating p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
}

.feature-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 20, 28, 0.6);
  border: 1px solid var(--border-glass);
  padding: 12px 18px;
  border-radius: 12px;
}

.feature-pill i {
  color: var(--purple-light);
  font-size: 1.1rem;
}

.feature-pill span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-bright);
}

/* Interactive Quote & Event Estimator */
.estimator-panel {
  padding: 50px;
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.9), rgba(15, 15, 21, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 30px var(--purple-glow);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-select, .form-input, .form-range {
  width: 100%;
  padding: 14px 18px;
  background: rgba(7, 7, 9, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-select:focus, .form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(7, 7, 9, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.checkbox-card input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
}

.checkbox-card:hover, .checkbox-card.selected {
  border-color: var(--gold-primary);
  background: rgba(107, 33, 168, 0.2);
}

.estimator-summary {
  background: rgba(7, 7, 9, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gold-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-bright);
}

.summary-total .total-price {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gold-primary);
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(20, 20, 28, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: #070709;
  border-color: transparent;
  box-shadow: 0 0 15px var(--gold-glow);
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 280px;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 7, 9, 0.95) 0%, rgba(60, 16, 83, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-overlay h4 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.modal-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 50px var(--purple-glow);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--gold-primary);
  cursor: pointer;
  z-index: 10;
}

.modal-img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 35px;
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--purple-accent);
  opacity: 0.3;
  line-height: 1;
}

.star-rating {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-bottom: 15px;
}

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

.client-author h5 {
  font-size: 1rem;
  color: var(--gold-light);
}

.client-author p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact & Location Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(107, 33, 168, 0.2);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.info-content p, .info-content a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Floating Actions */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer.site-footer {
  background: #040406;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 2;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 15px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .about-wrapper, .estimator-grid, .contact-wrapper, .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .about-badge-floating {
    bottom: 10px;
    right: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
  }

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

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 15px; }
  .estimator-panel { padding: 25px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
