/*
 * Dream House Interior Solutions - Redesigned Luxury Core Stylesheet
 * Inspired by the Premium Dark Luxury Visual Design Reference
 */

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

:root {
  /* Color Palette */
  --bg-deep: #0a0a0b;
  --bg-secondary: #121215;
  --bg-nav: rgba(10, 10, 11, 0.75);
  --bg-nav-scrolled: rgba(10, 10, 11, 0.95);
  
  --gold: #D4AF37; /* Premium Luxury Gold */
  --gold-hover: #E5C048; /* Warmer gold hover */
  --gold-muted: rgba(212, 175, 55, 0.2);
  --gold-glow: rgba(212, 175, 55, 0.05);
  
  --text-primary: #f5f5f7; /* Warm white */
  --text-secondary: #a1a1a6; /* Muted gray */
  --text-muted: #6e6e73;
  
  --border-light: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-serif: 'Poppins', sans-serif;
  --font-sans: 'Poppins', sans-serif;
  
  /* Transition & Blur */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --blur-nav: 25px;
  
  --shadow-main: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(197, 168, 128, 0.03);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-deep);
}

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

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

li {
  list-style: none;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

p {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

section {
  padding: 8rem 0;
  position: relative;
}

/* Eyebrows & Section Titles */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000000 ;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-desc {
  max-width: 600px;
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background-color: #000000 ;
  color: #0c0c0e;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  border-color: var(--gold) ;
  color: var(--gold) ;
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  border-color: var(--gold) ;
  background-color: var(--gold-glow);
  transform: translateY(-2px);
}

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px; /* Increased from 90px for larger logo */
  z-index: 2000;
  background: var(--bg-nav);
  backdrop-filter: blur(var(--blur-nav));
  -webkit-backdrop-filter: blur(var(--blur-nav));
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

header.site-header.scrolled {
  height: 85px; /* Increased from 80px */
  background: var(--bg-nav-scrolled);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.logo-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.25);
}

.logo-link img {
  height: 75px; /* Increased height noticeably */
  width: auto;
  transition: var(--transition-smooth);
}

header.site-header.scrolled .logo-link img {
  height: 62px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Phone and Right Section */
.nav-right-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-call-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
}

.header-call-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000000 ;
  stroke-width: 1.5;
}

.header-call-text span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.header-call-text small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Dropdown Mega Menu */
.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 600px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 2.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-main);
  z-index: 100;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

.mega-menu-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000 ;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.4rem;
}

.mega-menu-link {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  transition: var(--transition-fast);
}

.mega-menu-link:hover {
  color: #000000 ;
  transform: translateX(3px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 2002;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  left: 8px; /* Centered horizontally: (44px target - 28px span) / 2 = 8px */
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.mobile-toggle span:nth-child(1) {
  top: 15px;
}

.mobile-toggle span:nth-child(2) {
  top: 21px;
}

.mobile-toggle span:nth-child(3) {
  top: 27px;
}

/* Active transitions to form centered X icon */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 21px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
}

/* Mobile nav panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--bg-secondary);
  z-index: 1999;
  padding: 8rem 2rem 2rem;
  transition: var(--transition-smooth);
  border-left: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-panel .nav-link {
  font-size: 0.9rem;
}

.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-header svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: var(--transition-fast);
}

.mobile-dropdown-header.active svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-submenu.active {
  display: flex;
}

.mobile-submenu-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.mobile-submenu-link:hover {
  color: #000000 ;
}

/* Cinematic Hero Banner */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
  background-color: #0d0d0f;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 11, 0.9) 0%, rgba(10, 10, 11, 0.75) 25%, rgba(10, 10, 11, 0.3) 60%, rgba(10, 10, 11, 0) 100%),
              linear-gradient(to top, rgba(10, 10, 11, 0.9) 0%, rgba(10, 10, 11, 0.4) 45%, rgba(10, 10, 11, 0) 100%);
  z-index: 2;
}

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

.hero-content {
  max-width: 680px;
  text-align: left;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-left: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title span {
  color: #000000 ;
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 3.2rem;
  max-width: 540px;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Trust / Stats Strip */
.stats-strip {
  background-color: rgba(11, 11, 13, 0.85) !important;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.5rem;
}

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

.stat-icon {
  width: 28px;
  height: 28px;
  stroke: var(--gold) !important;
  fill: none;
  stroke-width: 1.5px;
  margin-bottom: 1rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary) !important;
}

/* Services section design */
.services-preview-section {
  background-color: var(--bg-deep);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.services-preview-section .section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
}

.services-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.services-preview-section .services-slider-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.services-preview-section .service-card {
  aspect-ratio: 1 / 1;
  background-color: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.2rem 1rem;
  text-decoration: none;
  transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
  position: relative;
  width: 100%;
  height: auto;
  flex: none;
}

.services-preview-section .service-card:hover {
  border-color: #000000 ;
  background-color: #111113;
  transform: translateY(-4px);
}

.services-preview-section .service-icon {
  width: 48px;
  height: 48px;
  color: #000000 ;
  stroke: #000000 ;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.services-preview-section .service-card:hover .service-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

.services-preview-section .service-card .service-card-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-align: center;
  transition: color 0.35s ease;
  margin-bottom: 0;
  text-transform: none;
}

.services-preview-section .service-card:hover .service-card-title {
  color: #ffffff;
}

@media (max-width: 992px) {
  .services-preview-section .services-slider-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
    width: 100% !important;
    overflow-x: visible !important;
    padding: 0.5rem 0 !important;
    flex-wrap: wrap !important;
  }
  
  .services-preview-section .service-card {
    flex: none !important;
    width: 100% !important;
    aspect-ratio: 1.5 / 1 !important;
    scroll-snap-align: none !important;
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 575px) {
  .services-preview-section .services-slider-track {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .services-preview-section .service-card {
    aspect-ratio: 2.2 / 1 !important;
    padding: 1.5rem 1.5rem !important;
    gap: 1rem !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  
  .services-preview-section .service-icon {
    width: 36px !important;
    height: 36px !important;
  }
  
  .services-preview-section .service-card .service-card-title {
    font-size: 0.95rem !important;
    text-align: left !important;
  }
}

/* Base service card styling fallback for subpages */
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

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

.service-card-img-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover .service-card-img-wrapper img {
  transform: scale(1.06);
}

.service-card-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

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

.service-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-card-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) ;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.service-card-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: var(--transition-fast);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Portfolio / Project Showcase Grid */
.portfolio-section {
  background-color: var(--bg-secondary);
}

.portfolio-header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.projects-filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  justify-content: center;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.filter-btn:hover, .filter-btn.active {
  color: #000000 ;
  border-bottom-color: #000000 ;
}

.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.project-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 0; /* Premium editorial architectural style is sharp */
}

.photo-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

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

.project-item:hover .photo-wrapper img {
  transform: scale(1.06);
}

/* Glassmorphic Photo badge overlays */
.photo-badge {
  display: none !important;
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.8rem;
  font-size: 0.62rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #000000 ;
  z-index: 10;
  transition: var(--transition-fast);
}

/* Hover dynamic overlays for gallery */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.3) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.2rem;
  transition: var(--transition-smooth);
  z-index: 5;
}

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

.overlay-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.overlay-content p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000000 ;
}

/* About / Introduction Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: var(--shadow-main);
}

/* Numbered Process Timeline */
.process-section {
  background-color: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.process-step {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-top-color: #000000 ;
}

.process-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.process-step:hover .process-number {
  color: #000000 ;
}

.process-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.process-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Testimonial Section */
.testimonial-section {
  background-color: var(--bg-deep);
  padding: 6rem 0;
  position: relative;
  text-align: center;
}

.testimonial-header {
  margin-bottom: 3rem;
}

.testimonial-subtitle {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #000000 ;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.gold-quote {
  color: #000000 ;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.1;
  vertical-align: sub;
}

.testimonials-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.reviews-slider-container {
  flex: 1;
  overflow: hidden;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  background-color: #121215;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  padding: 3.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px; /* Minimal rounded corners */
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.8rem;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold) ;
}

.review-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2.2rem;
}

.review-client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.review-client-text {
  text-align: left;
}

.review-client-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.review-client-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: block;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-arrow {
  background: none;
  border: 1px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  border-color: #000000 ;
  color: #000000 ;
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background-color: #000000 ;
  transform: scale(1.2);
}

/* Consultation Section styles */
.consultation-section {
  padding: 4rem 0;
  background-color: var(--bg-deep);
}

.consultation-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #121215;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  padding: 1.5rem;
  gap: 2.5rem;
}

.consultation-img {
  flex: 0 0 200px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

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

.consultation-text {
  flex: 1;
  text-align: left;
}

.consultation-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.consultation-text h3 span {
  color: #000000 ;
}

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

.consultation-action {
  flex: 0 0 auto;
}

.consultation-action .btn {
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 6px;
  background-color: var(--gold) ;
  color: #0a0a0b ;
  border: 1px solid var(--gold);
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.consultation-action .btn:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #0a0a0b ;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .projects-filter-bar {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 2rem !important;
    justify-content: center !important;
  }
  .filter-btn {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
  }
  .hero-overlay {
    background: linear-gradient(to right, 
      rgba(0, 0, 0, 0.98) 0%, 
      rgba(0, 0, 0, 0.92) 20%, 
      rgba(0, 0, 0, 0.8) 45%, 
      rgba(0, 0, 0, 0.5) 70%, 
      rgba(0, 0, 0, 0.15) 85%, 
      rgba(0, 0, 0, 0) 100%
    ) !important;
    mask-image: linear-gradient(to right, 
      rgba(0,0,0,1) 0%, 
      rgba(0,0,0,1) 60%, 
      rgba(0,0,0,0.5) 80%, 
      rgba(0,0,0,0) 100%
    ) !important;
    -webkit-mask-image: linear-gradient(to right, 
      rgba(0,0,0,1) 0%, 
      rgba(0,0,0,1) 60%, 
      rgba(0,0,0,0.5) 80%, 
      rgba(0,0,0,0) 100%
    ) !important;
  }
  .hero-content {
    background: transparent !important;
    padding: 2rem 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }
  .testimonials-wrapper .slider-arrow {
    display: none;
  }
  .consultation-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .consultation-img {
    flex: 0 0 auto;
    width: 100%;
    height: 160px;
  }
  .consultation-text {
    text-align: center;
  }
  .consultation-action {
    width: 100%;
  }
  .consultation-action .btn {
    width: 100%;
  }
}

/* Final CTA Section */
.cta-section {
  padding: 0;
}

.cta-banner-container {
  background: linear-gradient(rgba(10, 10, 11, 0.8), rgba(10, 10, 11, 0.8)), url('https://i.ibb.co/qFNkBvZW/IMG-1815-2-JPG.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Site Footer */
.site-footer {
  background-color: #08080a;
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--border-light);
}

.footer-cta-block {
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-cta-title span {
  color: #000000 ;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-info img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: #000000 ;
  color: #000000 ;
  transform: translateY(-2px);
  background: var(--gold-glow);
}

.social-icon-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-column-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000 ;
  margin-bottom: 1.8rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: #000000 ;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom-link:hover {
  color: #000000 ;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Button */
.floating-ctas {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
  color: #ffffff;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-3px);
}

.call-btn {
  background-color: #000000 ;
}

.call-btn svg {
  width: 20px;
  height: 20px;
  fill: #000000;
}

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

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
}

/* Service Inner Pages Custom Layouts */
.service-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
  background-color: #0d0d0f;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.8) 25%, rgba(10, 10, 11, 0.3) 55%, rgba(10, 10, 11, 0) 80%);
  z-index: 2;
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.service-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Service Info Grid */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.service-visual {
  position: relative;
}

.service-visual img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: var(--shadow-main);
}

/* Image Grid for new photos at bottom of service page */
.service-showcase-section {
  background-color: var(--bg-secondary);
}

.showcase-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase-featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

.showcase-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.showcase-item.portrait {
  aspect-ratio: 9/12;
}

/* Custom Lightbox Modal */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 11, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1100;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.project-modal-container {
  width: 90%;
  max-width: 850px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  position: relative;
  box-shadow: var(--shadow-main);
}

.project-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.project-modal-close:hover {
  color: #000000 ;
}

.project-modal-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

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

/* Scroll Triggered Booking Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 11, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1050;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-content {
  width: 90%;
  max-width: 580px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 3.5rem 2.8rem;
  position: relative;
  box-shadow: var(--shadow-main);
}

.booking-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.booking-modal-close:hover {
  color: #000000 ;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: #000000 ;
  background: rgba(255, 255, 255, 0.05);
}

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

.booking-modal-buttons {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 1rem;
  margin-top: 2rem;
}

/* Custom premium select styling dropdown */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select-trigger::after {
  content: '\25BE';
  font-size: 0.8rem;
  color: #000000 ;
  transition: var(--transition-fast);
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  max-height: 220px;
  overflow-y: auto;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-main);
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
}

.custom-option {
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.custom-option:hover, .custom-option.selected {
  background: var(--gold-glow);
  color: #000000 ;
}

/* Cursor Glow effect */
.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(197, 168, 128, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* Animations and reveals classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.reveal-left {
  transform: translateX(-25px);
}

.reveal-on-scroll.reveal-right {
  transform: translateX(25px);
}

.reveal-on-scroll.reveal-scale {
  transform: scale(0.97);
}

.reveal-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
  section {
    padding: 6rem 0;
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  header.site-header {
    height: 80px;
  }
  
  .nav-menu, .nav-cta, .nav-right-info .btn-call-now {
    display: none !important;
  }
  
  .nav-right-info {
    display: flex !important;
    align-items: center;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .projects-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .showcase-grid-6, .showcase-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  section {
    padding: 5rem 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .booking-modal-buttons {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 575px) {
  .projects-masonry {
    grid-template-columns: 1fr;
  }
  
  .showcase-grid-6, .showcase-grid-3, .showcase-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* Service Card Icon Header */
.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.service-icon {
  width: 20px;
  height: 20px;
  color: #000000 ;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: #ffffff;
}

/* Projects Carousel Slider Layout */
.projects-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

.projects-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.project-card-carousel-item {
  flex: 0 0 calc((100% - 3rem) / 3); /* exactly 3 items on desktop with 1.5rem gaps */
  width: calc((100% - 3rem) / 3);
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .project-card-carousel-item {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 items on tablet */
    width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 576px) {
  .project-card-carousel-item {
    flex: 0 0 100%; /* 1 item on mobile */
    width: 100%;
  }
}

.project-card-carousel-item .project-thumbnail {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.project-card-carousel-item .project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-carousel-item:hover .project-thumbnail img {
  transform: scale(1.05);
}

.project-overlay-visible {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  box-sizing: border-box;
  transition: background 0.35s ease;
}

.project-card-carousel-item:hover .project-overlay-visible {
  background: linear-gradient(to top, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.1) 100%);
}

.project-text-wrapper {
  transition: transform 0.35s ease;
  width: 100%;
  text-align: left;
}

.project-card-carousel-item:hover .project-text-wrapper {
  transform: translateY(-2px);
}

.project-title-carousel {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.project-category-carousel {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Redesigned Luxury Gold View Buttons */
.btn-gold-view {
  background-color: var(--gold) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-gold-view:hover {
  background-color: var(--gold-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Call Now Header Button */
.btn-call-now {
  background-color: var(--gold) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none !important;
}

.btn-call-now:hover {
  background-color: var(--gold-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-call-now svg {
  margin-right: 6px;
  fill: none;
  stroke: #000000 !important;
  stroke-width: 2.2px;
  width: 13px;
  height: 13px;
}

/* JS Masonry Layout Overrides */
.projects-masonry.js-masonry {
  display: block !important;
  position: relative !important;
}

.projects-masonry.js-masonry .project-item {
  position: absolute !important;
}

.projects-masonry.js-masonry .project-thumbnail,
.projects-masonry.js-masonry .photo-wrapper,
.projects-masonry.js-masonry img {
  height: auto !important;
  width: 100% !important;
  display: block;
}

/* Responsive 4:3 Grid Aspect Ratio Overrides for Showcases */
.projects-masonry:not(.js-masonry) .project-thumbnail {
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  height: auto !important;
  background-color: #0c0c0e;
  border-radius: 8px !important;
}

.projects-masonry:not(.js-masonry) .photo-wrapper {
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  height: auto !important;
}

.projects-masonry:not(.js-masonry) .photo-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Premium service page closing CTA section styling */
.premium-service-cta {
  padding: 6.5rem 0;
  background-color: #0b0b0d;
  border-top: 1px solid rgba(217, 166, 46, 0.15); /* Subtle gold accent line */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.premium-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.premium-cta-content .eyebrow {
  color: #000000 ;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}

.premium-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.premium-cta-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.8rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.premium-cta-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.btn-call-now-cta {
  background-color: transparent !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  border: 1px solid var(--border-gold) !important;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-call-now-cta:hover {
  background-color: var(--gold-glow) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .premium-service-cta {
    padding: 4.5rem 0;
  }
  .premium-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .premium-cta-actions .btn {
    width: 100%;
  }
}

/* About Page Portfolio Carousel Slider Styling */
.about-portfolio-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-portfolio-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-portfolio-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  background-color: #0c0c0e;
}

.about-portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 576px) {
  .about-portfolio-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 992px) {
  .about-portfolio-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* Navigation button hovers */
.about-slider-prev:hover, .about-slider-next:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #000000 !important;
  transform: scale(1.05);
}

/* About Us Summary Section on Homepage */
.about-summary-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.about-summary-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-summary-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: #0c0c0e;
}

.about-summary-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--transition-smooth);
}

.about-summary-visual:hover img {
  transform: scale(1.03);
}

.about-summary-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-summary-content .eyebrow {
  margin-bottom: 0.8rem;
}

.about-summary-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .about-summary-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 576px) {
  .about-summary-section {
    padding: 5rem 0;
  }
  .about-summary-desc {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* About Page Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Subpage Hero Section Mobile Adjustments */
.service-hero {
  transition: min-height 0.3s ease, padding 0.3s ease;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-hero {
    height: auto !important;
    min-height: 360px !important;
    padding: 110px 1.5rem 4rem !important; /* pushes content down below 80px fixed header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .service-hero-title {
    font-size: clamp(2rem, 6vw, 3rem) !important;
  }
  .service-hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    max-width: 540px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 320px !important;
    padding: 100px 1rem 3.5rem !important;
  }
  .about-quote {
    font-size: 1.25rem !important;
    line-height: 1.45 !important;
  }
}

/* Small Screen Layout Overflow Fixes (320px - 430px) */
@media (max-width: 575px) {
  /* Prevent custom grid items from overflowing on small screens */
  .bedroom-grid, .commercial-grid, .living-grid, .kitchen-grid, .contracting-grid, .wardrobe-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  
  /* Reduce padding on forms inside containers to maximize writing area */
  .booking-modal-content, .compact-form {
    padding: 2.5rem 1.5rem !important;
  }
  
  /* Reduce card padding on mobile */
  .review-card {
    padding: 2.5rem 1.5rem !important;
  }
  
  /* Scale down floating actions slightly to maximize screen space */
  .floating-ctas {
    bottom: 20px !important;
    right: 20px !important;
    gap: 8px !important;
  }
  .floating-btn {
    width: 46px !important;
    height: 46px !important;
  }
  
  /* Make homepage hero title fit narrow viewports */
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem) !important;
  }
  
  /* Change left-to-right fade gradient to a left-to-right overlay for full readability and clear right-side image visibility on mobile */
  .hero-overlay {
    background: linear-gradient(to right, 
      rgba(10, 10, 11, 0.95) 0%, 
      rgba(10, 10, 11, 0.75) 40%, 
      rgba(10, 10, 11, 0.2) 80%, 
      rgba(10, 10, 11, 0) 100%
    ) !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  }
}

/* Ensure relative positioning on all visual containers for badges */
.about-visual,
.about-portfolio-slide,
.about-summary-visual {
  position: relative !important;
}

/* Unified Large Hero Banners with Raw Bright Images */
.hero-section, .service-hero {
  height: 90vh !important;
  min-height: 650px !important;
  display: flex !important;
  align-items: center !important; /* Center vertically inside the clear height */
  justify-content: flex-start !important;
  padding: 130px 0 6rem 0 !important; /* Clears the header height */
}

/* Hero overlay restored to show sophisticated gradient */

/* Highly prominent typography overrides for raw background images */
.hero-title, .service-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem) !important;
  font-weight: 800 !important; /* Bold/prominent, but not oversized */
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
  color: var(--gold) !important; /* Gold title */
}

.hero-title span, .service-hero-title span {
  color: var(--gold) !important;
}

.hero-content .eyebrow, .service-hero-content .eyebrow {
  font-size: 0.95rem !important;
  letter-spacing: 0.3em !important;
  font-weight: 800 !important;
  color: var(--gold) !important; /* Gold eyebrow */
  margin-bottom: 1.5rem !important;
  display: inline-block !important;
}

.hero-desc, .service-hero-desc {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  max-width: 700px !important;
  color: #E5D3B3 !important;
}

@media (max-width: 991px) {
  .hero-section, .service-hero {
    padding: 110px 0 4rem 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-section, .service-hero {
    height: auto !important;
    min-height: 480px !important;
    padding: 110px 0 4rem 0 !important;
  }
}


/* Appended Global Customizations */

/* Bullet-proof Poppins override for the entire site */
*, *::before, *::after {
  font-family: "Poppins", sans-serif !important;
}

/* Poppins Hero headings */
.hero-title, .service-hero-title,
.hero-title span, .service-hero-title span {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  -webkit-text-stroke: none !important;
  text-shadow: 0 2px 10px rgba(10, 10, 12, 0.45), 0 1px 3px rgba(10, 10, 12, 0.3) !important;
}

/* Section Headings Hierarchy */
h1, h2, .section-title {
  font-weight: 700 !important;
}

/* Card Headings Hierarchy */
h3, h4, .card-title, .project-title, .service-card h3 {
  font-weight: 600 !important;
}

/* Navigation links Hierarchy */
header.site-header .nav-link {
  color: var(--gold) !important; /* Make all nav text gold */
  font-weight: 600 !important;
  transition: var(--transition-fast) !important;
}

header.site-header .nav-link:hover, 
header.site-header .nav-link.active {
  color: var(--gold) !important;
}

/* Mobile toggle hamburger bars to gold */
header.site-header .mobile-toggle span {
  background-color: var(--gold) !important;
  height: 3px !important;
}

/* Header background styles globally (transparent overlay) */
header.site-header {
  background: rgba(10, 10, 11, 0.7) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

header.site-header.scrolled {
  background: rgba(10, 10, 11, 0.88) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Header Phone Call Component (Right Navigation) */
.header-phone-container {
  display: flex;
  align-items: center;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #d4af37 !important; /* Premium warm golden-yellow tone */
  color: #0a0a0b !important; /* Dark text for contrast */
  padding: 0.55rem 1.25rem !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25) !important;
}

.header-phone-link:hover {
  background-color: #f3c623 !important; /* Brighter gold/yellow on hover */
  color: #0a0a0b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(243, 198, 35, 0.4) !important;
}

.phone-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

.header-phone-link:hover .phone-icon-wrapper {
  background: transparent !important;
  border: none !important;
}

.phone-icon-wrapper svg {
  width: 18px;
  height: 18px;
  fill: #0a0a0b !important; /* Dark fill for contrast */
  stroke: none;
  transition: var(--transition-fast);
}

.header-phone-link:hover .phone-icon-wrapper svg {
  fill: #0a0a0b !important;
}

.phone-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.phone-number {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #0a0a0b !important;
}

.phone-subtext {
  font-size: 0.68rem !important;
  color: rgba(10, 10, 11, 0.75) !important;
  font-weight: 600 !important;
}

/* Responsive adjustment for phone call button to fit clean on mobile */
@media (max-width: 576px) {
  .header-phone-link {
    padding: 0.4rem 0.8rem !important;
    gap: 0.4rem !important;
  }
  .phone-subtext {
    display: none !important;
  }
  .phone-number {
    font-size: 0.8rem !important;
  }
  .phone-icon-wrapper svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Projects Section Redesign - 3 Column Grid */
.portfolio-section {
  padding: 8rem 0;
  background-color: var(--bg-deep);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.project-grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.project-grid-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-main);
}

.project-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.project-grid-item:hover .project-thumbnail img {
  transform: scale(1.06);
}

.project-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 11, 0.9);
  padding: 1.2rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
  z-index: 10;
  transition: var(--transition-smooth);
}

.project-grid-item:hover .project-caption {
  background: var(--bg-secondary);
  border-top-color: var(--border-gold);
}

.project-caption-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.project-grid-item:hover .project-caption-title {
  color: var(--gold);
}

/* Testimonials Section Custom Styles */
.testimonial-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.testimonial-subtitle-wrapper .line {
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--border-gold);
}

.testimonial-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 600;
}

.review-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.review-profile-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.review-client-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.review-client-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  opacity: 0.3;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
}

/* Premium Bottom-Right Floating Contact Actions (WhatsApp & Call) */
.floating-ctas {
  position: fixed;
  right: 25px;
  bottom: 25px; /* Positioned at the bottom-right corner */
  z-index: 2200 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1 !important;
  pointer-events: all !important;
  transition: var(--transition-smooth);
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none !important;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

/* Call Button - Gold */
.call-btn {
  background-color: var(--gold) !important;
  color: #0a0a0b !important;
}

.call-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor !important;
  stroke: none !important;
}

.call-btn:hover {
  background-color: var(--gold-hover) !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* WhatsApp Button - recognizable brand green background, white logo */
.whatsapp-btn {
  background-color: #25D366 !important; /* WhatsApp Green */
  color: #ffffff !important; /* White logo */
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor !important;
}

.whatsapp-btn:hover {
  background-color: #20ba5a !important; /* Slightly darker green */
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive Styles for Redesigned Components */
@media (max-width: 991px) {
  header.site-header {
    height: 95px !important;
  }
  
  .logo-link {
    padding: 4px 10px;
  }
  
  .logo-link img {
    height: 58px !important;
  }

  .nav-right-info .header-phone-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .floating-ctas {
    right: 15px;
    bottom: 80px; /* Position neatly above mobile bottom safe area/navbar */
    gap: 10px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .call-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .whatsapp-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Stats Strip mobile overrides */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .stat-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* Hero CTA Buttons Styling */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.hero-actions .btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.2rem !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-decoration: none;
}

.hero-actions .btn-primary {
  background-color: var(--gold) !important;
  color: #0a0a0b !important;
  border: 1px solid var(--gold) !important;
}

.hero-actions .btn-primary:hover {
  background-color: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.hero-actions .btn-secondary {
  background-color: rgba(10, 10, 11, 0.4) !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}

.hero-actions .btn-secondary:hover {
  background-color: var(--gold-glow) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

/* Gold Typography and Icon Accent Overrides for Visibility on Dark Backgrounds */
.eyebrow, 
.premium-cta-content .eyebrow, 
.hero-content .eyebrow, 
.service-hero-content .eyebrow,
.mega-menu-col h4,
.mega-menu-link:hover, 
.mobile-submenu-link:hover,
.hero-title span, 
.service-hero-title span,
.stat-number,
.service-card:hover .service-card-title, 
.service-card-link,
.filter-btn:hover, 
.filter-btn.active,
.photo-badge,
.overlay-content p,
.process-step:hover .process-number,
.testimonial-subtitle, 
.gold-quote,
.consultation-text h3 span,
.footer-cta-title span,
.footer-column-title,
.footer-link:hover, 
.footer-bottom-link:hover,
.slider-arrow:hover,
.project-modal-close:hover, 
.booking-modal-close:hover,
.custom-select-trigger::after,
.custom-option:hover, 
.custom-option.selected,
.stat-label,
.section-subtitle,
.service-desc,
.process-desc,
p,
.service-card p {
  color: var(--gold) !important;
}

/* Service Card Hover Borders */
.services-preview-section .service-card:hover,
.process-step:hover,
.form-control:focus {
  border-color: var(--gold) !important;
}

/* Services section icons styling */
.service-icon, 
.services-preview-section .service-icon {
  color: var(--gold) !important;
  stroke: var(--gold) !important;
}

/* Custom Footer Logo styling */
.footer-logo-link {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.footer-logo-img {
  height: 95px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.05);
}

/* Tablet columns for services grid */
@media (min-width: 577px) and (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile View & Background Image Optimization */
@media (max-width: 768px) {
  /* Hide subtitles, descriptions, and labels inside all mobile hero sections */
  .hero-section .eyebrow,
  .hero-section .hero-desc,
  .service-hero .eyebrow,
  .service-hero .service-hero-desc {
    display: none !important;
  }

  /* Reduce Home Hero height to keep composition balanced and avoid excessive vertical crop */
  .hero-section {
    height: 60vh !important;
    min-height: 420px !important;
    padding-top: 120px !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Reduce subpage hero heights and push content below fixed header */
  .service-hero {
    height: 45vh !important;
    min-height: 340px !important;
    padding: 120px 1.5rem 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  
  /* Set target focus positions for each page banner's subject */
  .hero-background img {
    object-position: center !important;
  }
  
  .about-hero .service-hero-bg img {
    object-position: 45% center !important;
  }
  
  .services-hero .service-hero-bg img {
    object-position: center !important;
  }
  
  .projects-hero .service-hero-bg img {
    object-position: 55% center !important;
  }
  
  .contact-hero .service-hero-bg img {
    object-position: center !important;
  }

  /* Align homepage content wrapper and center the heading + buttons group */
  .hero-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 1.5rem 0 2rem !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* Adjust typography and allow wrapping */
  .hero-title {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1.5rem !important;
    max-width: 90% !important;
    text-align: left !important;
  }

  /* Compact stack of buttons on mobile */
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 !important;
  }

  .hero-actions .btn {
    padding: 0.8rem 1.2rem !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Adjust subpage content elements layout */
  .service-hero-content {
    max-width: 90% !important;
    padding: 0 1.5rem 0 2rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  
  .service-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* Enforce drawer panel width layout limit to fit 320px screens perfectly */
  .mobile-nav-panel {
    width: min(320px, 100%) !important;
  }
}

/* Prevent horizontal overflow scrolling globally on all mobile viewports */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* New Premium Portfolio Section */
.portfolio-new-section {
  padding: 0 0 6rem 0;
  background-color: var(--bg-deep);
}

.portfolio-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* Mobile responsive layout for new portfolio */
@media (max-width: 768px) {
  .portfolio-new-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .portfolio-new-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

