/* ========================================
   DREAMSYNC REALTY - PREMIUM DESIGN SYSTEM
   Dark Luxury with Gold & Cyan Accents
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============ CSS VARIABLES ============ */
:root {
  /* Primary Colors */
  --bg-dark: #0a0e27;
  --bg-darker: #050810;
  --bg-card: #141b2f;
  --bg-card-light: #1a2340;
  
  /* Accent Colors */
  --accent-gold: #d4af37;
  --accent-gold-light: #e8c547;
  --accent-rose: #f26b8a;
  --accent-cyan: #00d9ff;
  --accent-purple: #a855f7;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-tertiary: #7a8a9e;
  
  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.2);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ============ HEADER & NAVIGATION ============ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-md);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInDown 0.8s ease-out;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.section-switcher {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.section-btn {
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.section-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s ease;
}

.section-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.section-btn:hover::before {
  left: 100%;
}

.section-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 217, 255, 0.1));
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.contact-btn {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--bg-dark);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ============ HERO SECTION ============ */
.interior-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.interior-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.interior-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

.interior-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2) saturate(1.1);
  will-change: transform;
  transition: transform 0.05s ease-out;
}

.interior-hero-content {
  text-align: center;
  color: var(--text-primary);
  z-index: 3;
  position: relative;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-rose) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.5s both;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
  animation: fadeInUp 1s ease-out 0.7s both;
  text-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.9s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.interior-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.6) 50%, rgba(10, 14, 39, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--bg-dark);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary-large {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  box-shadow: none;
}

.btn-secondary-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ============ FEATURED PROJECTS ============ */
.interior-featured {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.interior-grid-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.interior-project-card {
  background: var(--bg-card-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  position: relative;
}

.interior-project-card:nth-child(1) {
  animation-delay: 0.1s;
}

.interior-project-card:nth-child(2) {
  animation-delay: 0.2s;
}

.interior-project-card:nth-child(3) {
  animation-delay: 0.3s;
}

.interior-project-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.project-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-card);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.8) contrast(1.1);
}

.interior-project-card:hover .project-image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.interior-project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-content {
  text-align: center;
  color: var(--text-primary);
  z-index: 2;
}

.project-overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.project-overlay-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.project-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 3;
  text-transform: capitalize;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.project-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============ GALLERY ============ */
.interior-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  animation: fadeInUp 1s ease-out;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.3);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: var(--text-primary);
  z-index: 2;
  width: 100%;
}

.gallery-overlay-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.gallery-overlay-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.gallery-category-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-rating {
  color: var(--accent-gold);
  font-size: 1rem;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--accent-gold);
}

.testimonial-author-title {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* ============ PORTFOLIO FILTERS ============ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 217, 255, 0.1));
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

/* ============ MODALS ============ */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.3s ease-out;
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  animation: scaleIn 0.3s ease-out;
  position: relative;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.close:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.2);
  transform: rotate(90deg);
}

.project-modal {
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0 !important;
}

.project-detail-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: 20px 20px 0 0;
}

.project-detail-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.project-detail-body {
  padding: 2.5rem;
}

.project-detail-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.project-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.meta-label {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.meta-value {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.project-gallery-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.project-gallery-detail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.8) contrast(1.1);
  transition: var(--transition);
  cursor: pointer;
}

.project-gallery-detail img:hover {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.project-section h4 {
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.project-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.project-tag:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

/* ============ CTA SECTION ============ */
.interior-cta {
  background: linear-gradient(135deg, var(--bg-card-light) 0%, rgba(0, 217, 255, 0.05) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.interior-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.interior-cta p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-option {
  text-align: center;
}

.contact-label {
  display: block;
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-option a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.contact-option a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.contact-option a:hover {
  color: var(--accent-gold);
}

.contact-option a:hover::after {
  width: 100%;
}

.business-addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.address-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 217, 255, 0.05));
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.address-box:hover {
  transform: translateY(-5px);
  border-left-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.address-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.address-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ SERVICES SECTION ============ */
.interior-services {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, var(--bg-card-light) 0%, rgba(0, 217, 255, 0.03) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  box-shadow: var(--shadow-md);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 217, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
  pointer-events: none;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.service-card:hover::before {
  opacity: 1;
  right: 0;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.service-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  color: var(--text-tertiary);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.service-list li:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

/* ============ PROCESS SECTION ============ */
.interior-process {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 50%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .process-timeline::before {
    display: block;
  }
}

.process-step {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 217, 255, 0.08) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  text-align: center;
  position: relative;
  transition: var(--transition-slow);
  animation: scaleIn 0.6s ease-out;
  animation-fill-mode: both;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.process-step:nth-child(3) {
  animation-delay: 0.3s;
}

.process-step:nth-child(4) {
  animation-delay: 0.4s;
}

.process-step:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border: 2px solid var(--bg-card);
  z-index: 3;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.process-step h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .step-icon {
    font-size: 2.5rem;
  }

  .process-step h3 {
    font-size: 1.2rem;
  }
}

/* ============ REAL ESTATE SECTION STYLES ============ */
#realestateSection {
  width: 100%;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-darker) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.3s both;
  z-index: 2;
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.5s both;
  z-index: 2;
  position: relative;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.7s both;
  z-index: 2;
  position: relative;
}

/* Properties Section */
.properties-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease-out;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.property-card {
  background: var(--bg-card-light);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  position: relative;
}

.property-card:nth-child(1) {
  animation-delay: 0.1s;
}

.property-card:nth-child(2) {
  animation-delay: 0.2s;
}

.property-card:nth-child(3) {
  animation-delay: 0.3s;
}

.property-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-gold);
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

.property-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--bg-card);
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.8) contrast(1.1);
}

.property-card:hover .property-image img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.property-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-card:hover .property-image-overlay {
  opacity: 1;
}

.property-image-text {
  text-align: center;
  color: var(--text-primary);
  z-index: 2;
}

.property-image-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.property-image-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.property-details {
  padding: 2rem;
}

.property-details h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.property-location {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-rose);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.spec-item {
  text-align: center;
}

.spec-label {
  display: block;
  color: var(--text-tertiary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.spec-value {
  display: block;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.property-card .btn {
  width: 100%;
  text-align: center;
}

/* ============ PROPERTY DETAIL PAGE STYLES ============ */
.property-detail-hero {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.main-image {
  width: 100%;
  max-height: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
}

.main-image:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  transform: scale(1.02);
}

.gallery-image {
  width: 100%;
  max-height: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-image:hover {
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.property-details {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-md);
}

.detail-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.detail-location {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-price {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-rose) 0%, #ff8fa3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.detail-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-box {
  background: rgba(212, 175, 55, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  transition: var(--transition);
}

.spec-box:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.spec-box-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.spec-box-label {
  display: block;
  color: var(--text-tertiary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amenities {
  background: rgba(0, 217, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  margin-bottom: 2rem;
}

.amenities h3 {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.amenity-item {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-cyan);
}

.amenity-item::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 1.2rem;
}

.interest-section {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  margin-top: 2rem;
}

.interest-section h3 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.interest-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .property-detail-hero {
    padding: 1.5rem 1rem;
  }

  .main-image {
    max-height: 300px;
    height: 300px;
  }

  .gallery-image {
    max-height: 80px;
    height: 80px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .detail-title {
    font-size: 1.6rem;
  }

  .detail-price {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 80vh;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .property-image {
    height: 250px;
  }

  .property-details {
    padding: 1.5rem;
  }

  .property-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
}

/* ============ STATS SECTION ============ */
.interior-stats {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.interior-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 217, 255, 0.08) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out;
  animation-fill-mode: both;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 217, 255, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan), var(--accent-rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-number {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-rose) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.6;
  transition: var(--transition);
}

.stat-card:hover .stat-label {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .interior-stats {
    padding: 4rem 2rem;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 3rem 2rem 1rem;
  color: var(--text-secondary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .interior-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .gallery-item {
    height: 200px;
  }

  .project-modal {
    max-width: 100%;
    margin: 0 !important;
    border-radius: 0;
  }

  .project-detail-header {
    height: 250px;
    border-radius: 0;
  }

  .project-detail-body {
    padding: 1.5rem;
  }

  .project-detail-title {
    font-size: 1.5rem;
  }

  .project-detail-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .contact-options {
    flex-direction: column;
    gap: 1rem;
  }

  .business-addresses {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* ============ SCROLL-TO-TOP UTILITY ============ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.scroll-to-top.show {
  display: flex;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ============ UTILITY CLASSES ============ */
.fade-in-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.scale-in-on-scroll {
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-on-scroll {
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

