/* ==========================================================================
   UNITED CONSTRUCTION GROUP — PREMIUM STYLING SYSTEM
   Luxury Dark Theme | Architectural Style | Inspired by NU Projects
   ========================================================================== */

/* Import Google Fonts */
@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=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* CSS Custom Properties (Design Tokens) */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #121212;
  --bg-tertiary: #171717;
  --bg-card: rgba(22, 22, 22, 0.7);
  --bg-glass: rgba(10, 10, 10, 0.75);
  
  --accent-gold: #f1b96a;
  --accent-gold-rgb: 197, 168, 128;
  --accent-gold-hover: #f9c37c;
  --accent-gold-glow: rgba(197, 168, 128, 0.15);
  
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5E5;
  --text-muted: #A3A3A3;
  --text-dark: #737373;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --border-gold-thin: 1px solid rgba(197, 168, 128, 0.15);
  --border-gold-medium: 1px solid rgba(197, 168, 128, 0.3);
  --border-white-thin: 1px solid rgba(255, 255, 255, 0.08);
  
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold-hover: 0 10px 30px rgba(197, 168, 128, 0.08);
  
  --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);
  
  --container-width: 1320px;
  --header-height: 90px;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

p {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header .subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 24px auto 0 auto;
  opacity: 0.4;
}

/* Premium Buttons & Interactive Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.15);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.3);
}

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

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  background-color: rgba(197, 168, 128, 0.03);
  box-shadow: var(--shadow-gold-hover);
}

.btn-tertiary {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 4px;
}

.btn-tertiary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.btn-tertiary:hover {
  color: var(--text-primary);
}

.btn-tertiary:hover::after {
  background-color: var(--text-primary);
  transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   STICKY TRANSPARENT GLASS HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
header {
  background-color: var(--bg-glass);
  backdrop-filter: blur(15px);  
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);  
  z-index: 1000; 
  display: flex;
  align-items: center;
  transition: var(--transition-smooth); 
}

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

/* Premium Architectural SVG Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.logo-container:hover {
  transform: translateY(-1px);
}

.logo-container:hover .logo-badge {
  border-color: rgba(197, 168, 128, 0.8) !important;
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.35) !important;
  transform: scale(1.02);
}

.logo-container .logo-badge {
  transition: var(--transition-smooth);
}

.logo-divider {
  width: 1px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.1;
  background: linear-gradient(120deg, #FFFFFF 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-smooth);
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger menu for mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-primary);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Header Action (CTA) */
.header-action .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #0E0E0E;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.8);
    transition: var(--transition-smooth);
    border-left: var(--border-gold-thin);
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .header-action {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .header-action {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   SECTION 1 — HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 48px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Sunlit Radial Light Flare in the Top-Right */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* Luminous Background Cover Image with Gradient Highlight */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(to right, rgba(10, 10, 10, 0.88) 35%, rgba(10, 10, 10, 0.35) 68%, rgba(255, 255, 255, 0.03) 100%),
                    url('https://unitedconstructiongroup.co.uk/wp-content/uploads/2024/10/headerimage.jpeg');
  background-size: cover;
  background-position: center;
}

/* Inline image showcase specifically for mobile viewports, hidden on desktop */
.hero-mobile-img-box {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: premiumFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
  border-left: 2px solid var(--accent-gold);
  padding-left: 20px;
}

.hero-description {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 680px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-meta {
  border-top: var(--border-white-thin);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta div svg {
  color: var(--accent-gold);
}

.hero-meta a:hover {
  color: var(--accent-gold);
}

@keyframes premiumFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-bg {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.98) 100%);
  }
  
  .hero-mobile-img-box {
    display: block;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 8px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 168, 128, 0.25);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
  
  .hero-mobile-img-box img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .hero-mobile-img-box:hover img {
    transform: scale(1.02);
  }
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }
}

/* Premium Statistics Strip Below Hero */
.stats-strip {
  background-color: var(--bg-secondary);
  border-top: var(--border-gold-thin);
  border-bottom: var(--border-gold-thin);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

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

.stat-item {
  border-right: var(--border-white-thin);
  padding: 0 15px;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: var(--border-white-thin);
    padding-bottom: 20px;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   SECTION 2 — WHAT WE DELIVER
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  border: var(--border-white-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
}

/* Create asymmetry like NU Projects — prefixed to avoid Bootstrap .col-* collision */
.service-card.ucg-col-6 {
  grid-column: span 6;
}

.service-card.ucg-col-4 {
  grid-column: span 4;
}

.service-card.ucg-col-8 {
  grid-column: span 8;
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background-color: #1a1a1a;
}

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

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 50%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 2;
}

.service-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 3;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.6;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: var(--shadow-gold-hover);
}

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

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

@media (max-width: 992px) {
  .service-card.ucg-col-4,
  .service-card.ucg-col-6,
  .service-card.ucg-col-8 {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .service-card.ucg-col-4,
  .service-card.ucg-col-6,
  .service-card.ucg-col-8 {
    grid-column: span 12;
  }
  
  .service-img-wrapper {
    height: 240px;
  }
  
  .service-content {
    padding: 24px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 3 — WHY UNITED CONSTRUCTION GROUP
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-secondary);
  border: var(--border-white-thin);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

/* Subtle glow element inside card that follows hover/is static active */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(197, 168, 128, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.1);
  padding: 10px;
  transition: var(--transition-smooth);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

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

/* Hover effects */
.why-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-hover);
}

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

.why-card:hover .why-icon {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: rotate(5deg) scale(1.05);
}

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

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-card {
    padding: 30px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 4 — FEATURED PROJECTS (Luxury Portfolio Showcase)
   -------------------------------------------------------------------------- */
.projects-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.projects-header-wrap .section-header {
  text-align: left;
  margin-bottom: 0;
}

.projects-header-wrap .section-header::after {
  margin: 24px 0 0 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.portfolio-item.ucg-col-4 {
  grid-column: span 4;
  height: 380px;
}

.portfolio-item.ucg-col-8 {
  grid-column: span 8;
  height: 380px;
}

.portfolio-item.ucg-col-6 {
  grid-column: span 6;
  height: 480px;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  z-index: 2;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.portfolio-category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
}

.portfolio-location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.portfolio-item h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  line-height: 1.2;
}

/* Hover effects */
.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0) 100%);
}

.portfolio-cta-wrap {
  text-align: center;
}

@media (max-width: 992px) {
  .portfolio-item.ucg-col-4,
  .portfolio-item.ucg-col-6,
  .portfolio-item.ucg-col-8 {
    grid-column: span 6;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .projects-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .portfolio-item.ucg-col-4,
  .portfolio-item.ucg-col-6,
  .portfolio-item.ucg-col-8 {
    grid-column: span 12;
    height: 320px;
  }
  
  .portfolio-overlay {
    padding: 24px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 5 — OUR DELIVERY PROCESS (Vertical Premium Staggered Layout)
   -------------------------------------------------------------------------- */
.process-vertical-timeline {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0 auto;
  padding: 20px 0;
}

/* Central vertical track line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, 
    rgba(197, 168, 128, 0) 0%, 
    rgba(197, 168, 128, 0.3) 10%, 
    rgba(197, 168, 128, 0.3) 90%, 
    rgba(197, 168, 128, 0) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  width: 50%;
  position: relative;
  margin-bottom: 50px;
  z-index: 2;
}

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

.timeline-item.left {
  left: 0;
  padding-right: 50px;
}

.timeline-item.right {
  left: 50%;
  padding-left: 50px;
}

.timeline-content-wrap {
  position: relative;
}

/* Timeline dot on the central axis */
.timeline-dot {
  position: absolute;
  top: 36px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 10px var(--accent-gold);
  z-index: 3;
  transition: var(--transition-smooth);
}

.timeline-item.left .timeline-dot {
  right: -56px;
}

.timeline-item.right .timeline-dot {
  left: -56px;
}

/* The card details styling */
.timeline-card {
  background-color: var(--bg-secondary);
  border: var(--border-white-thin);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.step-num {
  position: absolute;
  top: 15px;
  right: 30px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  font-weight: 300;
  color: rgba(197, 168, 128, 0.04);
  font-style: italic;
  user-select: none;
  transition: var(--transition-smooth);
}

.timeline-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.timeline-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.timeline-card-footer {
  border-top: var(--border-white-thin);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-card-footer span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* Card Hover States */
.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: var(--shadow-gold-hover);
}

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

.timeline-card:hover .step-num {
  color: rgba(197, 168, 128, 0.09);
  transform: scale(1.08) translateY(-2px);
}

.timeline-item:hover .timeline-dot {
  background-color: #FFFFFF;
  box-shadow: 0 0 15px #FFFFFF;
  transform: scale(1.2);
}

/* Responsiveness for vertical timeline */
@media (max-width: 992px) {
  .process-vertical-timeline {
    max-width: 100%;
  }

  .timeline-line {
    left: 24px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .timeline-item.left {
    padding-right: 0;
    padding-left: 60px;
    left: 0;
  }

  .timeline-item.right {
    padding-left: 60px;
    left: 0;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 18px;
    right: auto;
  }
  
  .timeline-card {
    padding: 30px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 6 — REVIEWS & TESTIMONIALS (Cinematic Split Showcase)
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-primary);
  border-top: var(--border-white-thin);
  border-bottom: var(--border-white-thin);
  position: relative;
  overflow: hidden;
}

/* Premium split container spacing */
.testimonials-premium-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: stretch;
  min-height: 520px;
}

/* Left Column: Visual Project Canvas */
.testimonials-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: var(--border-gold-thin);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background-color: #0E0E0E;
}

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

.visual-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: stretch;
}

.visual-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.1);
}

.visual-slide.active img {
  transform: scale(1.02);
}

/* Project overlay floating badge label */
.project-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--border-gold-thin);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.architectural-border-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(197, 168, 128, 0.1);
  pointer-events: none;
  z-index: 5;
}

/* Right Column: Editorial panel */
.testimonials-editorial-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.editorial-header {
  margin-bottom: 30px;
}

.editorial-header .subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  display: block;
}

.editorial-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

/* Testimonial card slider viewport */
.testimonials-slider-viewport {
  position: relative;
  min-height: 250px;
  margin-bottom: 30px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.quote-symbol {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.12;
  margin-bottom: -20px;
  user-select: none;
}

.rating-bar {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-client-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: var(--border-white-thin);
  padding-top: 20px;
}

.signature-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-gold-thin);
  background-color: rgba(197, 168, 128, 0.04);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.signature-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.client-project {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Footer layout (Dials and Linear timer) */
.testimonials-editorial-footer {
  border-top: var(--border-white-thin);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* Outline magnetic dials controls */
.editorial-navigation {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-dial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background: transparent;
  color: var(--accent-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.nav-dial:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background-color: rgba(197, 168, 128, 0.04);
  transform: translateY(-2px);
}

.nav-dial:active {
  transform: translateY(0);
}

.dial-counter {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dial-current {
  color: var(--text-primary);
  font-weight: 600;
}

.dial-sep {
  color: rgba(255, 255, 255, 0.15);
}

/* Linear Timer filling line */
.editorial-progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  flex-grow: 1;
  max-width: 300px;
}

.editorial-progress-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  font-weight: 500;
  text-align: right;
  transition: var(--transition-fast);
}

.progress-bar-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  border-radius: 1px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--accent-gold);
  width: 0%;
}

/* --------------------------------------------------------------------------
   RESPONSIVE TESTIMONIAL OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .testimonials-premium-container {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  
  .visual-slides-wrapper {
    min-height: 340px;
  }
  
  .testimonials-visual-frame {
    height: 380px;
  }
  
  .testimonials-slider-viewport {
    min-height: auto;
  }
  
  .testimonials-editorial-footer {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .testimonials-visual-frame {
    height: 260px;
  }
  
  .visual-slides-wrapper {
    min-height: 220px;
  }
  
  .editorial-progress-container {
    min-width: 100%;
    max-width: 100%;
  }
  
  .editorial-progress-label {
    text-align: left;
  }
  
  .testimonial-quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

/* --------------------------------------------------------------------------
   SECTION 7 — ACCREDITATIONS & PREMIUM ENQUIRY BOX
   -------------------------------------------------------------------------- */
.accreditations-grid {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 1px;
}

.accreditation-item {
  flex: 1 1 0;
  min-width: 120px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(197, 168, 128, 0.08), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 1;
  filter: none;
  transition: var(--transition-smooth);
}

.accreditation-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(197, 168, 128, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.accreditation-item svg,
.accreditation-item img {
  width: 100%;
  max-width: 140px;
  object-fit: contain;
  filter: none;
}

/* Accreditations CTA Block */
.premium-cta-block {
  background-image: linear-gradient(135deg, rgba(8, 8, 8, 0.78) 0%, rgba(15, 12, 6, 0.85) 100%),
                    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&q=80&w=1400');
  background-size: cover;
  background-position: center;
  border: var(--border-gold-thin);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.premium-cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
}

.premium-cta-block h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.premium-cta-block p {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

@media (max-width: 992px) {
  .accreditations-grid {
    gap: 14px;
  }
  .accreditation-item {
    min-width: 100px;
    padding: 18px 14px;
  }
}

@media (max-width: 576px) {
  .accreditations-grid {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .accreditation-item {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0;
    max-width: calc(33.333% - 10px);
    padding: 16px 10px;
  }
  .accreditation-item img {
    max-height: 60px;
  }
  
  .premium-cta-block {
    padding: 40px 24px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 8 — PROJECT LOCATIONS (Sleek Dark Custom London Map)
   -------------------------------------------------------------------------- */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  background-color: #0c0c0c;
  border-radius: var(--radius-lg);
  border: var(--border-white-thin);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

/* Google Maps iframe background */
.google-map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  pointer-events: none; /* Let our custom pins receive events */
}

/* Dark tinted overlay — blends map into site's dark theme */
.map-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 6, 0.42);
  z-index: 2;
  pointer-events: none;
}

/* Interactive Pins */
.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold);
  border: 3px solid #000;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.map-pin::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent-gold);
  opacity: 0.5;
  animation: pulse-ring 2.5s infinite;
}

.map-pin:hover,
.map-pin.active {
  background-color: #FFFFFF;
  border-color: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 20px var(--accent-gold);
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Pin locations — re-mapped to real London postcode coordinates
   Based on Google Maps embed centred 51.5074°N 0.1278°W at zoom 11
   Coverage approx: lat 51.34–51.67, lon -0.45 to +0.25 */
.pin-1 { top: 51%; left: 37%; } /* Kensington W8     51.5017°N 0.1918°W */
.pin-2 { top: 56%; left: 40%; } /* Chelsea SW3       51.4838°N 0.1676°W */
.pin-3 { top: 35%; left: 39%; } /* Hampstead NW3     51.5560°N 0.1773°W */
.pin-4 { top: 52%; left: 45%; } /* Westminster SW1   51.4975°N 0.1357°W */
.pin-5 { top: 60%; left: 34%; } /* Fulham SW6        51.4730°N 0.2091°W */
.pin-6 { top: 41%; left: 50%; } /* Islington N1      51.5362°N 0.1031°W */
.pin-7 { top: 63%; left: 21%; } /* Richmond TW9      51.4613°N 0.3037°W */
.pin-8 { top: 30%; left: 43%; } /* Highgate N6       51.5709°N 0.1464°W */

/* Premium Pin Details Popup Floating Inside Map */
.map-popup {
  position: absolute;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border: var(--border-gold-medium);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  width: 280px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  pointer-events: none;
}

.map-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.map-popup h4 {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.popup-area {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.map-popup p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Subtle map legend/stats inside map */
.map-stats-strip {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: var(--border-white-thin);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  justify-content: space-around;
  z-index: 4;
}

.map-stat-col {
  text-align: center;
}

.map-stat-val {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.map-stat-lbl {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 480px;
  }
  
  .map-stats-strip {
    display: none;
  }
  
  .map-popup {
    width: 220px;
    padding: 16px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 9 — FAQ SECTION (Premium Accordions)
   -------------------------------------------------------------------------- */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  /* NOTE: no overflow:hidden here — it would clip the expanding .faq-content */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(197, 168, 128, 0.2);
}

.faq-item.active {
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(197, 168, 128, 0.08);
  background: rgba(197, 168, 128, 0.03);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 24px 28px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  gap: 20px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-trigger {
  color: var(--accent-gold);
}

.faq-trigger span {
  flex: 1;
  line-height: 1.4;
}

/* +/− icon circle */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.3);
  background: rgba(197, 168, 128, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: rgba(197, 168, 128, 0.12);
  border-color: rgba(197, 168, 128, 0.6);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--accent-gold);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Horizontal bar — always visible */
.faq-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

/* Vertical bar — rotates to 0deg (disappears into horizontal) when active */
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Expand / Collapse content */
.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  padding: 20px 28px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-content-inner {
  opacity: 1;
}

.faq-content p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 576px) {
  .faq-trigger {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-content p {
    padding: 16px 20px 20px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 10 — CONTACT / PROJECT ENQUIRY (Split Premium Panel)
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-secondary);
}

.contact-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Panel */
.contact-info-panel {
  padding-right: 20px;
}

.contact-info-panel h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(197, 168, 128, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
  background-color: rgba(197, 168, 128, 0.02);
}

.contact-detail-card h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-detail-card p,
.contact-detail-card a {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 400;
}

.contact-detail-card a:hover {
  color: var(--accent-gold);
}

/* Premium Form Container */
.enquiry-form-card {
  background-color: var(--bg-primary);
  border: var(--border-white-thin);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-premium);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

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

.form-field label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background-color: var(--bg-secondary);
  border: var(--border-white-thin);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: var(--transition-fast);
  width: 100%;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23C5A880' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

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

/* Focus and hover states */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.08);
  background-color: rgba(22, 22, 22, 0.6);
}

.enquiry-form-card button {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 992px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-info-panel {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .enquiry-form-card {
    padding: 30px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-field.full-width {
    grid-column: span 1;
  }
}

/* --------------------------------------------------------------------------
   FOOTER (Architectural Layout)
   -------------------------------------------------------------------------- */
footer {
  background-color: var(--bg-primary);
  border-top: var(--border-gold-thin);
  padding-top: 100px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 70px;
}

/* Premium footer logo styles */
.footer-logo-container {
  height: 56px !important;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-divider {
  width: 1px;
  height: 42px !important;
  background-color: rgba(255, 255, 255, 0.18);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo-title-large {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.1;
  background: linear-gradient(120deg, #FFFFFF 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo-text .logo-subtitle-large {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: var(--border-white-thin);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-link svg {
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.25);
}

.footer-social-link:hover svg {
  transform: scale(1.1);
}

.footer-links-col h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-links-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: var(--accent-gold);
  opacity: 0.35;
}

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

.footer-links-list a {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--text-primary);
  padding-left: 6px;
}

/* Beautiful animated contact items */
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  align-items: flex-start;
  transition: var(--transition-fast);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--text-primary);
}

.footer-contact-item:hover svg {
  transform: scale(1.18);
  color: var(--accent-gold-hover);
}

/* Centered footer bottom copyright */
.footer-bottom {
  border-top: var(--border-white-thin);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

.footer-bottom-links a:hover {
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   INTERACTIVE EXTRA UX: Premium Custom Cursor & Fade reveals
   -------------------------------------------------------------------------- */
/* Fade in reveals via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
