/* ==========================================================================
   UMA CREATIVE INTERIORS - PREMIUM STYLE SHEET
   ========================================================================== */

/* --- CSS VARIABLES & THEMING --- */
:root {
  --color-black: #111111;
  --color-black-light: #1A1A1A;
  --color-gold: #D4AF37;
  --color-gold-hover: #F3C64F;
  --color-gold-glow: rgba(212, 175, 55, 0.4);
  --color-white: #F8F5EF;
  --color-white-pure: #FFFFFF;
  --color-brown: #9A6A3A;
  --color-grey: #EAEAEA;
  --color-grey-dark: #777777;
  --color-blue: #1F4E79;
  
  --font-primary: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.25s ease-in-out;
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-gold: 1px solid rgba(212, 175, 55, 0.3);
}

/* --- RESET & GENERAL SYSTEM --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* --- SECTION STRUCTURES --- */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- AMBIENT GLOW BACKDROPS --- */
.ambient-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
.glow-1 {
  background-color: var(--color-gold);
  top: 15%;
  left: -10%;
}
.glow-2 {
  background-color: var(--color-blue);
  bottom: 20%;
  right: -10%;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-brown);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 16px;
}

.section-title.text-white {
  color: var(--color-white-pure);
}

.section-title.text-left {
  text-align: left;
}

.title-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 0 auto 20px auto;
}

.title-divider.divider-gold {
  background-color: var(--color-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-grey-dark);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle.text-light {
  color: #CCCCCC;
}

/* --- BUTTON & ACTION SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-icon {
  margin-right: 10px;
  transition: var(--transition-fast);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
}
.btn-gold:hover {
  background-color: var(--color-black);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white-pure);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background-color: var(--color-white-pure);
  color: var(--color-black);
  border-color: var(--color-white-pure);
}

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

/* --- HEADER / NAVBAR --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 15px 0;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design */
.logo {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-white-pure);
  line-height: 1;
}
.logo-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 2px;
}
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #AAAAAA;
  font-weight: 500;
}

/* Desktop Nav Menu */
.nav-list {
  display: flex;
  gap: 30px;
}
.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}
.hamburger .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--color-white-pure);
  transition: var(--transition-smooth);
}

/* Mobile responsive header overrides */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-black);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 40px 40px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    z-index: 1050;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 25px;
  }
  .nav-link {
    font-size: 1.1rem;
    color: var(--color-white-pure);
  }
  .hamburger.active .bar-1 {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar-2 {
    opacity: 0;
  }
  .hamburger.active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
  }
  .btn-navbar {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: var(--color-white-pure);
  padding: 0;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 20%, rgba(17, 17, 17, 0.7) 60%, rgba(17, 17, 17, 0.4) 100%);
}

.hero-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-content {
  padding-top: 80px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.badge {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white-pure);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-rating {
  border-color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.15);
}

.stars {
  color: var(--color-gold);
  font-weight: 700;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-title .line-large {
  display: block;
  font-family: var(--font-primary);
  font-weight: 800;
}

.hero-title .line-accent {
  display: block;
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 2px;
  margin-top: 5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* --- ANTI-GRAVITY CANVAS --- */
.hero-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;
}

/* Floating Elements Basic Styling */
.floating-item {
  position: absolute;
  cursor: pointer;
  user-select: none;
  z-index: 5;
  transform-style: preserve-3d;
}

.floating-item .inner-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-glass);
  color: var(--color-white-pure);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.floating-item .inner-block span {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #AAAAAA;
  margin-top: 8px;
  font-weight: 600;
}

.floating-item:hover .inner-block {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold), 0 12px 36px rgba(212, 175, 55, 0.1);
}

.floating-item:hover .inner-block span {
  color: var(--color-gold);
}

/* Element Placements, Sizes, Keyframes */

/* 1. False Ceiling Panel */
.fc-panel {
  width: 160px;
  top: 10%;
  left: 20%;
  animation: float-1 8s ease-in-out infinite alternate;
}
.fc-panel .inner-block {
  height: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}
.led-light {
  width: 90%;
  height: 4px;
  background: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold);
  border-radius: 20px;
  margin-bottom: 12px;
}

/* 2. Kitchen Cabinet */
.kitchen-cabinet {
  width: 150px;
  bottom: 15%;
  left: 5%;
  animation: float-2 10s ease-in-out infinite alternate;
}
.kitchen-cabinet .inner-block {
  height: 140px;
  border-right: 3px solid rgba(212, 175, 55, 0.3);
}
.glass-door {
  width: 80%;
  height: 70px;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.handle {
  width: 4px;
  height: 25px;
  background: var(--color-gold);
  align-self: flex-start;
  margin-left: 10%;
  margin-top: -45px;
  margin-bottom: 20px;
}

/* 3. Wardrobe Panel */
.wardrobe-panel {
  width: 130px;
  top: 15%;
  right: 5%;
  animation: float-3 12s ease-in-out infinite alternate;
}
.wardrobe-panel .inner-block {
  height: 200px;
  background: rgba(255,255,255,0.02);
}
.gold-strip {
  width: 2px;
  height: 140px;
  background: var(--color-gold);
  position: absolute;
  left: 30%;
  top: 15px;
}
.marble-grain {
  width: 80%;
  height: 120px;
  background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.05) 50%, transparent 55%);
  background-size: 20px 20px;
  border-radius: 4px;
}

/* 4. Sofa Silhouette */
.sofa-silhouette {
  width: 140px;
  bottom: 25%;
  right: 15%;
  animation: float-4 7s ease-in-out infinite alternate;
}
.sofa-silhouette .inner-block {
  height: 90px;
}
.sofa-svg {
  margin-bottom: 5px;
}

/* 5. Chandelier */
.chandelier {
  width: 120px;
  top: -5%;
  right: 35%;
  animation: float-5 9s ease-in-out infinite alternate;
}
.ring {
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  position: absolute;
}
.pendant-rings {
  width: 60px;
  height: 50px;
  position: relative;
  margin-bottom: 10px;
}
.r-1 {
  width: 50px;
  height: 15px;
  top: 10px;
  left: 5px;
  transform: rotateX(70deg);
  box-shadow: 0 0 10px var(--color-gold-glow);
}
.r-2 {
  width: 35px;
  height: 10px;
  top: 25px;
  left: 12px;
  transform: rotateX(70deg) rotateY(10deg);
  box-shadow: 0 0 8px var(--color-gold-glow);
}

/* 6. Wood Board Sample */
.wood-texture {
  width: 100px;
  top: 45%;
  left: 10%;
  animation: float-6 11s ease-in-out infinite alternate;
}
.wood-grain {
  height: 120px;
  background: linear-gradient(to bottom, #4a2c11 0%, #301b0a 100%) !important;
  border: 2px solid #5a3818 !important;
}
.wood-label {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--color-gold);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 15px;
}

/* 7. Wall Panel Fluted */
.wall-panel {
  width: 110px;
  bottom: 5%;
  right: 45%;
  animation: float-1 9.5s ease-in-out infinite alternate;
}
.fluted {
  height: 140px;
  display: flex;
  flex-direction: row !important;
  gap: 6px;
  padding: 10px !important;
}
.flute {
  width: 12px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* 8. Blueprint Card */
.blueprint-card {
  width: 130px;
  top: 40%;
  right: 5%;
  animation: float-2 8.5s ease-in-out infinite alternate;
}
.blueprint {
  height: 100px;
  background: var(--color-blue) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.blueprint-svg {
  width: 80%;
  height: 50px;
  margin-bottom: 5px;
}

/* 9. Measurement Scale */
.measurement-scale {
  width: 150px;
  top: 38%;
  left: 45%;
  animation: float-3 7.5s ease-in-out infinite alternate;
}
.scale {
  height: 70px;
  background: #333333 !important;
}
.ticks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  margin-bottom: 8px;
}
.ticks span {
  display: block;
  width: 1px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  margin: 0 !important;
}
.ticks span:nth-child(5n) {
  height: 14px;
  background: var(--color-gold);
}

/* 10. 3D Room layout Block */
.room-block-3d {
  width: 110px;
  top: 15%;
  left: 55%;
  transform-style: preserve-3d;
  animation: float-4 13s ease-in-out infinite alternate;
}
.room-block-3d .inner-block {
  height: 110px;
}
.cube {
  position: relative;
  width: 50px;
  height: 50px;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(45deg);
  margin-bottom: 12px;
}
.face {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-gold);
}
.front { transform: translateZ(20px); }
.back  { transform: rotateY(180deg) translateZ(20px); }
.top   { transform: rotateX(90deg) translateZ(20px); background: rgba(255,255,255,0.1); }
.left  { transform: rotateY(-90deg) translateZ(20px); }
.right { transform: rotateY(90deg) translateZ(20px); }

/* 11. Golden particles */
.golden-particles {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 15%;
  pointer-events: none;
  animation: float-5 14s ease-in-out infinite alternate;
}
.dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}
.dot-1 { top: 30px; left: 20px; }
.dot-2 { top: 80px; left: 100px; }
.dot-3 { top: 40px; left: 180px; }
.constellation-svg {
  position: absolute;
  top: 0;
  left: 0;
}

/* Float Animations Keyframes */
@keyframes float-1 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(0, -20px, 0) rotate(2deg); }
}
@keyframes float-2 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(-10px, -25px, 0) rotate(-3deg); }
}
@keyframes float-3 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(15px, -18px, 0) rotate(1.5deg); }
}
@keyframes float-4 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(-8px, -15px, 0) rotate(-1deg); }
}
@keyframes float-5 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(12px, -30px, 0) rotate(3deg); }
}
@keyframes float-6 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(-15px, -10px, 0) rotate(-2deg); }
}

/* Hide canvas on tablet & mobile */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-canvas {
    display: none;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .btn-large {
    width: 100%;
  }
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  padding-right: 20px;
}

.about-description {
  font-size: 1.1rem;
  color: var(--color-grey-dark);
  margin-bottom: 20px;
}

.about-features-list {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-icon {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item-content {
  font-size: 0.98rem;
  color: var(--color-black);
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  border-top: 1px solid var(--color-grey);
  padding-top: 30px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-grey-dark);
  font-weight: 600;
}

/* About visual card details */
.about-visuals {
  position: relative;
}

.luxury-image-card {
  position: relative;
  border-radius: 8px;
  padding: 15px;
  box-shadow: var(--shadow-premium);
  background-color: var(--color-white-pure);
}

.gold-border-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gold);
  transform: translate(12px, 12px);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

.about-main-img {
  width: 100%;
  border-radius: 6px;
  z-index: 2;
  position: relative;
  transition: transform 0.6s ease;
}

.luxury-image-card:hover .about-main-img {
  transform: scale(1.03);
}

.img-floating-tag {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--color-black);
  border: 1px solid var(--color-gold);
  padding: 15px 25px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  box-shadow: var(--shadow-premium);
}

.tag-gold {
  color: var(--color-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 2px;
}

.tag-text {
  color: var(--color-white-pure);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-text-content {
    padding-right: 0;
  }
  .about-visuals {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

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

.service-card {
  background-color: var(--color-white-pure);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: var(--transition-fast);
}

.service-icon-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  color: var(--color-brown);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 25px;
  transition: var(--transition-fast);
}

.service-icon {
  width: 30px;
  height: 30px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-black);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-grey-dark);
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-service-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.btn-service-enquire svg {
  transition: transform 0.3s ease;
}

.btn-service-enquire:hover svg {
  transform: translateX(5px);
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.service-card:hover::after {
  background-color: var(--color-gold);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* --- ANTI-GRAVITY EXPERIENTIAL SECTION --- */
.experience-section {
  background-color: var(--color-black);
  padding: 120px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
  perspective: 1000px;
}

.exp-card {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-glass);
  border-radius: 8px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.1s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  height: 220px;
  display: flex;
  flex-direction: column;
}

.exp-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 100px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(212, 175, 55, 0.15), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.exp-card:hover .exp-card-glow {
  opacity: 1;
}

.exp-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.exp-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.exp-num {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -10px;
  right: 0;
  transition: var(--transition-smooth);
}

.exp-card:hover .exp-num {
  color: rgba(212, 175, 55, 0.15);
  transform: scale(1.1);
}

.exp-title {
  color: var(--color-white-pure);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}

.exp-desc {
  color: #AAAAAA;
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .exp-card {
    height: auto;
    min-height: 180px;
  }
}

/* --- GALLERY SECTION --- */
.gallery-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--color-grey);
  color: var(--color-black);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.gallery-img-wrapper {
  position: relative;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17,17,17,0.95) 10%, rgba(17,17,17,0.6) 50%, rgba(17,17,17,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.gallery-project-title {
  color: var(--color-white-pure);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-project-type {
  color: var(--color-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.05s;
}

.btn-gallery-enquire {
  align-self: flex-start;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 4px;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, background-color 0.25s ease;
}

.btn-gallery-enquire:hover {
  background-color: var(--color-white-pure);
}

/* Hover States */
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

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

.gallery-item:hover .gallery-project-title,
.gallery-item:hover .gallery-project-type,
.gallery-item:hover .btn-gallery-enquire {
  transform: translateY(0);
}

/* JS Filtering classes */
.gallery-item.hidden {
  display: none;
}

/* --- WHY CHOOSE US --- */
.why-choose-us-section {
  background-color: var(--color-white-pure);
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feat-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 30px 25px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}

.feat-icon-num {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  margin-bottom: 15px;
  transition: var(--transition-fast);
}

.feat-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-black);
}

.feat-desc {
  font-size: 0.88rem;
  color: var(--color-grey-dark);
  line-height: 1.5;
}

.feat-card:hover {
  transform: translateY(-5px);
  background-color: var(--color-black);
  border-color: var(--color-gold);
}

.feat-card:hover .feat-title {
  color: var(--color-white-pure);
}

.feat-card:hover .feat-icon-num {
  color: var(--color-gold);
  transform: scale(1.05);
}

.feat-card:hover .feat-desc {
  color: #CCCCCC;
}

/* --- PROCESS SECTION --- */
.timeline-container {
  max-width: 800px;
  margin: 50px auto 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 30px;
  width: 2px;
  height: 100%;
  background-color: var(--color-grey);
  z-index: 1;
}

.timeline-step {
  display: flex;
  position: relative;
  margin-bottom: 45px;
  z-index: 2;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-node {
  width: 62px;
  height: 62px;
  background-color: var(--color-white-pure);
  border: 2px solid var(--color-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-black);
  flex-shrink: 0;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.timeline-content {
  margin-left: 30px;
  background-color: var(--color-white-pure);
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0,0,0,0.02);
  flex-grow: 1;
  transition: var(--transition-smooth);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.95rem;
  color: var(--color-grey-dark);
}

/* Timeline Interactive Reveal States */
.timeline-step.revealed .timeline-node {
  background-color: var(--color-black);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.timeline-step.revealed .timeline-content {
  border-color: var(--color-gold-glow);
  transform: translateX(10px);
}

.timeline-step.revealed .step-title {
  color: var(--color-gold);
}

@media (max-width: 576px) {
  .timeline-line {
    left: 20px;
  }
  .timeline-node {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .timeline-content {
    margin-left: 15px;
    padding: 15px 20px;
  }
}

/* --- REVIEWS SECTION --- */
.reviews-section {
  background-color: var(--color-white-pure);
}

.reviews-aggregator {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.aggregator-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
}

.stars-gold {
  color: var(--color-gold);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 5px 0;
}

.aggregator-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-grey-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 15px;
}

.reviewer-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-black);
}

.reviewer-location {
  font-size: 0.75rem;
  color: var(--color-grey-dark);
  display: block;
}

.review-stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  position: absolute;
  top: 0;
  right: 0;
}

.review-text {
  font-size: 0.92rem;
  font-style: italic;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.review-date {
  font-size: 0.75rem;
  color: #999999;
}

/* --- CONTACT SECTION --- */
.contact-card {
  background-color: var(--color-black);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-details-panel {
  padding: 60px;
}

.contact-intro {
  color: #CCCCCC;
  font-size: 1rem;
  margin-bottom: 40px;
}

.business-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  color: var(--color-white-pure);
}

.info-text strong {
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 2px;
}

.info-text span {
  font-size: 0.9rem;
  color: #BBBBBB;
  line-height: 1.5;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-map-panel {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #222222;
}

@media (max-width: 991px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-details-panel {
    padding: 40px 30px;
  }
  .contact-map-panel {
    min-height: 350px;
  }
}

/* --- FOOTER --- */
.main-footer {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
  color: var(--color-white-pure);
}

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

.footer-brand-col .logo {
  margin-bottom: 20px;
}

.footer-desc {
  color: #999999;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-rating-box {
  display: inline-flex;
  flex-direction: column;
}

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

.rating-text {
  font-size: 0.75rem;
  color: #CCCCCC;
  font-weight: 500;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white-pure);
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  color: #999999;
  font-size: 0.9rem;
}

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

.footer-contact-info {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-phone {
  font-size: 0.9rem;
  color: #999999;
}

.footer-contact-phone a {
  color: var(--color-white-pure);
}

.footer-contact-phone a:hover {
  color: var(--color-gold);
}

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

.copy-text {
  color: #777777;
  font-size: 0.85rem;
}

.design-credit {
  color: #777777;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- INTERACTIVE UTILS (SCROLL REVEAL / FIXED TRIGGERS) --- */

/* Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Fixed WhatsApp button bottom right */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 30px;
  background-color: var(--color-black);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* --- ACCESSIBILITY / ACCESSIBLE STYLING --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .floating-item {
    animation: none !important;
  }
  .exp-card {
    transform: none !important;
  }
}
