/* 
 * Mauli Design & Constructions - Brand Design System
 */

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

:root {
  /* Brand Color Palette */
  --color-primary: #111111;
  --color-secondary: #1E1E1E;
  --color-gold: #D4AF37;
  --color-gold-accent: #C8A238;
  --color-white: #FFFFFF;
  --color-light-gray: #F7F7F7;
  --color-muted: #8A8A8F;
  --color-border: #EAEAEA;
  --color-border-dark: #2C2C2C;
  --color-success: #25D366;
  
  /* Layout Dimensions */
  --top-bar-height: 44px;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 140px;
  --section-padding-mobile: 80px;
  
  /* Radii */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  /* Shadows & Effects */
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
  --shadow-premium-dark: 0 20px 40px rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(30, 30, 30, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-backdrop: blur(16px);
  
  /* Transitions */
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.section-title-wrapper {
  margin-bottom: 80px;
  max-width: 680px;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.15;
}

.section-title span {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold);
}

/* Dark mode section wrapper classes */
.bg-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.bg-dark .section-title {
  color: var(--color-white);
}

.bg-dark-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.bg-dark-secondary .section-title {
  color: var(--color-white);
}

.bg-light {
  background-color: var(--color-light-gray);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  transform: translateY(100%);
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-primary:hover {
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.btn-primary:hover::before {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Gold Outline Buttons for luxury look */
.btn-gold-outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-gold-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-gold-outline:hover {
  color: var(--color-primary);
}

.btn-gold-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Light buttons inside dark theme background */
.bg-dark .btn-primary, .bg-dark-secondary .btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.bg-dark .btn-primary::before, .bg-dark-secondary .btn-primary::before {
  background-color: var(--color-gold);
}

.bg-dark .btn-primary:hover, .bg-dark-secondary .btn-primary:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* Premium CTA Button Animation */
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35);
}

.hero-actions .btn-primary::after,
.hero-actions .btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

.hero-actions .btn-primary:hover::after,
.hero-actions .btn-secondary:hover::after {
  animation: shine-sweep 0.75s ease-out;
}

@keyframes shine-sweep {
  0% {
    left: -50%;
  }
  100% {
    left: 125%;
  }
}

.bg-dark .btn-secondary, .bg-dark-secondary .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.bg-dark .btn-secondary:hover, .bg-dark-secondary .btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Custom Text Ripple Effect container */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Header Section --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 100;
  transition: var(--transition-medium);
  background-color: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Transparent header only on homepage when not scrolled */
.home-page .header:not(.scrolled) {
  background-color: transparent;
  border-bottom-color: transparent;
}

.header > .container {
  padding-top: 30px;
  padding-bottom: 30px;
  transition: var(--transition-medium);
}

.header.scrolled {
  padding: 0;
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header.scrolled > .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

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

@media (min-width: 992px) {
  .header > .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

/* --- Top Announcement & Contact Bar --- */
.top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  width: 100%;
  transition: var(--transition-medium);
  overflow: hidden;
  position: relative;
  z-index: 101;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
}

.top-bar-announcement {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-info-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-info-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.top-bar-phone-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.top-bar-phone-link:hover {
  color: var(--color-gold);
}

.top-bar-separator {
  color: rgba(255, 255, 255, 0.15);
  font-size: 11px;
}

.top-bar-icon {
  width: 13px;
  height: 13px;
  margin-right: 8px;
  color: var(--color-gold);
  display: inline-block;
  vertical-align: middle;
}

/* Scrolled Header state hides the Top Bar */
.header.scrolled .top-bar {
  height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

/* Responsive Breakpoints for Top Bar */
@media (max-width: 992px) {
  .top-bar-announcement {
    font-size: 11px;
  }
  .top-bar-info-group {
    font-size: 11px;
    gap: 16px;
  }
  .top-bar-right {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-container {
    justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  .top-bar-info-group {
    font-size: 10px;
    gap: 12px;
    justify-content: flex-end;
  }
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  line-height: 1.1;
  transition: var(--transition-medium);
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  margin-top: 2px;
}

/* Light Theme Header Logo (if ever applied, but website hero is dark) */
.header.scrolled .logo-title {
  color: var(--color-white);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

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

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

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

.nav-link.active {
  color: var(--color-white);
}

.nav-link.active::after {
  width: 100%;
  background-color: var(--color-gold);
}

.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
  color: var(--color-white);
}

/* --- Dropdown Navigation --- */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 340px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-premium-dark);
  z-index: 110;
}

/* Glassmorphism for Scrolled Header Dropdown */
.header.scrolled .dropdown-menu {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
}

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

.dropdown-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  transition: var(--transition-fast);
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  color: var(--color-white);
  background-color: rgba(212, 175, 55, 0.1);
  padding-left: 30px;
}

.dropdown-icon {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  display: inline-block !important;
  vertical-align: middle;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.nav-cta {
  justify-self: end;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Mobile Dropdown Styling */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-dropdown-toggle i {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  width: 100%;
  border-radius: var(--radius-sm);
}

.mobile-dropdown-menu.active {
  max-height: 500px;
  padding: 10px 0;
  margin-top: 8px;
}

.mobile-sub-link {
  font-family: var(--font-body);
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: var(--transition-fast);
  text-align: center;
  width: 100%;
  padding: 2px 0;
}

.mobile-sub-link::after {
  display: none !important;
}

.mobile-sub-link:hover, .mobile-sub-link.active {
  color: var(--color-gold) !important;
}

/* Navigation CTA */
.nav-cta .btn {
  padding: 12px 24px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-medium);
}

/* Mobile Nav Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  transition: var(--transition-slow);
  padding: 120px 24px 40px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-overlay .nav-link {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
}

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

.mobile-menu-overlay .btn {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

/* Hamburger active animation */
.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 40%, rgba(17, 17, 17, 0.6) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 40px;
  height: 100%;
  padding-top: 100px;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease forwards;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
}

.hero-title {
  font-size: 68px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fade-in-up 1s ease 0.1s forwards;
  opacity: 0;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.hero-subheading {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 540px;
  animation: fade-in-up 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
  animation: fade-in-up 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  animation: fade-in-up 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 500px;
  align-self: stretch;
  animation: fade-in-up 1.2s ease 0.2s forwards;
  opacity: 0;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-image-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}


.architectural-board {
  width: 100%;
  height: 100%;
  background-color: #111111;
  overflow: hidden;
}

.board-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Architectural Floating lines */

/* Floating Architectural Stats Tag */
.hero-floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 10;
  animation: float-slow 4s ease-in-out infinite alternate;
}

.hero-floating-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.hero-floating-info {
  display: flex;
  flex-direction: column;
}

.hero-floating-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.hero-floating-text {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-white);
  font-weight: 500;
  margin-top: 2px;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-slow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 140px 0 80px 0;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-visual {
    height: 400px;
  }
  .hero-image-frame {
    width: 100%;
    transform: none;
  }
  .hero-floating-card {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-visual {
    height: 300px;
  }
  .hero-floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
  .hero-floating-text {
    font-size: 13px;
  }
}

/* --- General Section Setup --- */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

/* --- About Section --- */
.about {
  position: relative;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.about-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 80px;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.about-badge-year {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 180px;
  box-shadow: var(--shadow-premium-dark);
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-gold);
  line-height: 1;
}

.about-badge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-top: 8px;
}

.about-content {
  display: flex;
  flex-direction: column;
  height: auto !important;
  align-self: start !important;
  justify-content: flex-start !important;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 400;
}

.about .section-title-wrapper {
  margin-bottom: 20px !important;
}

.about-text {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-desc .about-text:last-child {
  margin-bottom: 0 !important;
}

.about-actions {
  margin-top: 16px !important;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pillar-item {
  display: flex;
  gap: 16px;
}

.pillar-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.pillar-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--color-muted);
}

@media (max-width: 991px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    height: 450px;
  }
  .about-badge-year {
    right: 20px;
    bottom: 20px;
  }
  .about-bg-pattern {
    opacity: 1;
  }
}

/* --- Services Section --- */
.services.bg-white {
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 48px 40px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  width: 32px;
  height: 3px;
  background-color: var(--color-gold);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.service-card-image {
  position: relative;
  width: auto;
  aspect-ratio: 16 / 9;
  background-color: var(--color-light-gray);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  margin: -48px -40px 28px -40px;
  border-radius: calc(var(--radius-sm) - 1px) calc(var(--radius-sm) - 1px) 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-image img[src]:not([src=""]) {
  opacity: 1;
}

.service-icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--color-light-gray);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon-box svg {
  width: 16px;
  height: 16px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 600;
  text-wrap: balance;
}

.service-description {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-top: auto;
  position: relative;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.service-link svg {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.service-card:hover::before {
  width: 64px;
}

.service-card:hover .service-icon-box {
  background-color: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
}

.service-card:hover .service-link {
  color: var(--color-gold);
  border-color: rgba(212, 175, 55, 0.35);
}

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

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .service-card {
    padding: 40px 32px;
  }
  .service-card::before {
    left: 32px;
  }
  .service-card-image {
    margin: -40px -32px 24px -32px;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-card {
    padding: 32px 24px;
  }
  .service-card::before {
    left: 24px;
  }
  .service-card-image {
    margin: -32px -24px 20px -24px;
  }
}

/* --- Featured Projects Gallery --- */
.projects-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Masonry / Luxury grid for projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.project-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-secondary);
  transition: var(--transition-slow);
  cursor: pointer;
}

/* Luxury grid layout styles */
.project-item.col-6 { grid-column: span 6; height: 500px; }
.project-item.col-4 { grid-column: span 4; height: 400px; }
.project-item.col-8 { grid-column: span 8; height: 400px; }
.project-item.col-12 { grid-column: span 12; height: 600px; }

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.2) 70%, transparent 100%);
  opacity: 0;
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}

.project-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: var(--transition-medium);
}

.project-name {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-white);
  font-weight: 400;
  transform: translateY(15px);
  transition: var(--transition-medium);
  transition-delay: 0.05s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.project-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-medium);
}

.project-arrow svg {
  width: 18px;
  height: 18px;
}

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

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

.project-item:hover .project-category,
.project-item:hover .project-name {
  transform: translateY(0);
}

.project-item:hover .project-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive grid layouts */
@media (max-width: 991px) {
  .project-item.col-4, .project-item.col-8, .project-item.col-6 {
    grid-column: span 6;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .projects-grid {
    gap: 20px;
  }
  .project-item.col-4, .project-item.col-8, .project-item.col-6, .project-item.col-12 {
    grid-column: span 12;
    height: 320px;
  }
  .project-overlay {
    padding: 24px;
  }
  .project-name {
    font-size: 20px;
  }
}

/* --- Work Process Section --- */
.process-timeline-container {
  position: relative;
  margin-top: 60px;
  padding: 40px 0;
}

.process-line {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  z-index: 1;
}

.process-line-active {
  position: absolute;
  top: 130px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  z-index: 2;
  transition: var(--transition-slow);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  cursor: pointer;
}

.process-num-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 40px;
  position: relative;
  transition: var(--transition-medium);
}

.process-num-node::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: var(--transition-medium);
}

.process-step:hover .process-num-node, 
.process-step.active .process-num-node {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.process-step:hover .process-num-node::after, 
.process-step.active .process-num-node::after {
  border-color: var(--color-gold);
}

.process-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.process-desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 220px;
}

@media (max-width: 991px) {
  .process-timeline-container {
    padding: 0;
  }
  .process-line {
    display: none;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    padding: 0;
    align-items: flex-start;
    gap: 24px;
  }
  .process-num-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .process-desc {
    max-width: 100%;
  }
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 48px;
  transition: var(--transition-medium);
}

.why-icon {
  color: var(--color-gold);
  margin-bottom: 24px;
  display: inline-block;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 500;
}

.why-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  background-color: var(--color-primary);
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-card {
    padding: 32px;
  }
}



/* --- Testimonials Section (Google Reviews Style) --- */
.google-summary-panel {
  display: flex;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-premium);
  gap: 40px;
  align-items: center;
}

.google-summary-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--color-border);
  padding-right: 40px;
}

.google-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.google-brand-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: -0.01em;
}

.google-rating-score {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.google-rating-stars {
  font-size: 24px;
  color: #F4B400;
  margin-bottom: 6px;
  display: flex;
  gap: 2px;
  line-height: 1;
}

.google-reviews-count {
  font-size: 13px;
  color: var(--color-muted);
}

.google-summary-middle {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--color-muted);
}

.bar-star-num {
  width: 45px;
  text-align: right;
  font-weight: 500;
}

.rating-bar-bg {
  flex: 1;
  height: 8px;
  background-color: var(--color-light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background-color: #F4B400;
  border-radius: 4px;
  transition: width 1s ease-out;
}

.bar-percent-val {
  width: 35px;
  text-align: left;
  font-weight: 500;
}

.google-summary-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--color-border);
  padding-left: 40px;
  align-self: stretch;
  justify-content: center;
}

.btn-google-write {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-google-write:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.btn-google-write svg {
  width: 16px;
  height: 16px;
}

.btn-google-maps {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-google-maps:hover {
  background-color: var(--color-light-gray);
  border-color: var(--color-primary);
}

/* Review Grid & Cards */
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.google-review-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-medium);
}

.google-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold);
}

.google-review-card.hidden {
  display: none;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}

.avatar-bg-green { background-color: #0F9D58; }
.avatar-bg-blue { background-color: #4285F4; }
.avatar-bg-orange { background-color: #FF6D00; }
.avatar-bg-purple { background-color: #AB47BC; }
.avatar-bg-teal { background-color: #0097A7; }
.avatar-bg-red { background-color: #EA4335; }

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.review-author-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

.author-guide {
  color: #FF6D00;
  font-weight: 500;
}

.author-meta-dot {
  font-size: 8px;
}

.google-watermark {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.25;
  transition: var(--transition-fast);
}

.google-review-card:hover .google-watermark {
  opacity: 0.7;
}

.review-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars-list {
  color: #F4B400;
  font-size: 18px;
  display: flex;
  gap: 2px;
  line-height: 1;
}

.review-star-item {
  line-height: 1;
}

.review-verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold-accent);
  background-color: rgba(212, 175, 55, 0.06);
  padding: 4px 10px;
  border-radius: 12px;
}

.review-verified-badge svg {
  width: 12px;
  height: 12px;
}

.review-text-content {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-secondary);
  flex-grow: 1;
}

@media (max-width: 991px) {
  .google-summary-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
    gap: 30px;
  }
  
  .google-summary-left {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 30px;
  }
  
  .google-summary-right {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-left: 0;
    padding-top: 30px;
  }
  
  .google-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .google-summary-panel {
    padding: 24px;
    gap: 24px;
  }
}

/* --- FAQ Section --- */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition-medium);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  padding-top: 16px;
  padding-right: 40px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

/* --- Contact Section --- */
.contact .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.contact-form-wrapper {
  background-color: var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-premium);
}

/* Dark Mode Form Card Overrides */
.bg-dark-secondary .contact-form-wrapper {
  background-color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bg-dark-secondary .contact-form-wrapper .form-input,
.bg-dark-secondary .contact-form-wrapper .form-select {
  color: var(--color-white);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.bg-dark-secondary .contact-form-wrapper .form-input:focus,
.bg-dark-secondary .contact-form-wrapper .form-select:focus {
  border-bottom-color: var(--color-gold);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--color-primary);
  font-size: 15px;
  transition: var(--transition-medium);
}

.form-label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--color-muted);
  font-size: 15px;
  pointer-events: none;
  transition: var(--transition-medium);
}

/* Focus and values logic for labels */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 500;
}

.form-input:focus {
  border-bottom-color: var(--color-gold);
}

.form-select {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--color-primary);
  font-size: 15px;
  cursor: pointer;
}

.form-select option {
  background-color: var(--color-white);
  color: var(--color-primary);
}

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

/* Contact Info Side */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-premium);
}

.bg-dark-secondary .contact-info-wrapper {
  background-color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-details {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  display: block;
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--color-gold);
}

/* Contact CTA Quick Actions */
.contact-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background-color: var(--color-success);
  color: var(--color-white);
  border: 1px solid var(--color-success);
}
.btn-whatsapp:hover {
  background-color: transparent;
  color: var(--color-success);
}

/* Google Maps frame */
.contact-map-frame {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .contact .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-form-wrapper, .contact-info-wrapper {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper, .contact-info-wrapper {
    padding: 30px 20px;
  }
}

/* Contact Page Map Section (Premium Architectural Experience) */
.contact-map-experience {
  position: relative;
  background-color: var(--color-light-gray);
  padding: 100px 0;
  overflow: hidden;
}

.map-experience-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: stretch;
}

/* Left Panel Style */
.map-info-panel {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 60px 45px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.map-panel-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.map-panel-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.map-panel-title {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.map-panel-title span {
  color: var(--color-gold);
}

.map-panel-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.map-address-block {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.map-address-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-address-icon svg {
  width: 18px;
  height: 18px;
}

.map-address-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}

.map-action-block .btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Right Panel Style with architectural draft layout */
.map-frame-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 24px;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blueprint architectural details */
.architectural-grid-line {
  position: absolute;
  background-color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
  z-index: 2;
}

.architectural-grid-line.horiz {
  left: 0;
  width: 100%;
  height: 1px;
  top: 50%;
}

.architectural-grid-line.vert {
  top: 0;
  height: 100%;
  width: 1px;
  left: 50%;
}

.architectural-corner-mark {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  pointer-events: none;
  z-index: 2;
}

.architectural-corner-mark.top-left {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.architectural-corner-mark.top-right {
  top: 12px;
  right: 12px;
  border-left: none;
  border-bottom: none;
}

.architectural-corner-mark.bottom-left {
  bottom: 12px;
  left: 12px;
  border-right: none;
  border-top: none;
}

.architectural-corner-mark.bottom-right {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.map-frame-canvas {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  z-index: 1;
}

.map-frame-canvas iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .map-experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-info-panel {
    padding: 40px 30px;
  }
  
  .map-frame-canvas {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-map-experience {
    padding: 60px 0;
  }
  
  .map-panel-title {
    font-size: 28px;
  }
  
  .map-frame-canvas {
    height: 350px;
  }
  
  .map-frame-panel {
    padding: 12px;
  }
}

/* --- Footer Section --- */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--color-border-dark);
}

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

.footer-brand {
  max-width: 320px;
}

.footer-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 24px;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 24px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--color-muted);
  transition: var(--transition-fast);
}

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

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

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: var(--transition-medium);
}

.social-icon-btn:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-muted);
}

.footer-demo-notice {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

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

/* --- Premium Custom Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.98);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-dark);
}

.lightbox-details {
  margin-top: 24px;
  text-align: center;
  color: var(--color-white);
}

.lightbox-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
}

/* Controls */
.lightbox-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--color-white);
  cursor: pointer;
  font-size: 24px;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 36px;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 20px;
  user-select: none;
}

.lightbox-arrow:hover {
  color: var(--color-gold);
}

.lightbox-arrow.left {
  left: 40px;
}

.lightbox-arrow.right {
  right: 40px;
}

@media (max-width: 768px) {
  .lightbox-content-wrapper {
    max-width: 95%;
  }
  .lightbox-arrow {
    padding: 10px;
  }
  .lightbox-arrow.left { left: 10px; }
  .lightbox-arrow.right { right: 10px; }
  .lightbox-close-btn {
    top: 20px;
    right: 20px;
  }
}

/* --- Scroll Reveal Animations System --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Custom success modal popup */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
}

.success-modal.active {
  display: flex;
}

.success-modal-content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-medium);
}

.success-modal.active .success-modal-content {
  transform: scale(1);
}

.success-modal-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.success-modal-icon svg {
  width: 32px;
  height: 32px;
}

.success-modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.success-modal-text {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* --- Trust / Value Proposition Strip --- */
.trust-strip {
  background-color: var(--color-primary); /* Match hero background color exactly */
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle clean transition line */
  position: relative;
  z-index: 4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* Remove gap so dividers align perfectly */
}

.trust-card {
  padding: 0 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.15s ease-out; /* Smooth follow-scroll transition */
  transform: translateY(var(--scroll-translate-y, 0px));
}

/* Vertical dividers on desktop */
.trust-card:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-card:first-child {
  padding-left: 0;
}

.trust-card:last-child {
  padding-right: 0;
}

.trust-card:hover {
  transform: translateY(calc(var(--scroll-translate-y, 0px) - 8px)) scale(1.02);
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background-color: rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trust-card:nth-child(1) .trust-card-icon { animation: icon-breathing 3s infinite 0s; }
.trust-card:nth-child(2) .trust-card-icon { animation: icon-breathing 3s infinite 0.5s; }
.trust-card:nth-child(3) .trust-card-icon { animation: icon-breathing 3s infinite 1s; }
.trust-card:nth-child(4) .trust-card-icon { animation: icon-breathing 3s infinite 1.5s; }

@keyframes icon-breathing {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    border-color: rgba(212, 175, 55, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    border-color: rgba(212, 175, 55, 0.25);
  }
}

.trust-card:hover .trust-card-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--color-primary);
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.trust-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.trust-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.trust-card-title::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  margin-top: 6px;
  transition: width 0.3s ease;
}

.trust-card:hover .trust-card-title::after {
  width: 45px;
}

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

.trust-card-desc {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .trust-strip {
    padding: 60px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .trust-card {
    padding: 0 30px;
  }
  .trust-card:not(:first-child) {
    border-left: none;
  }
  /* 2x2 grid vertical dividers for tablet */
  .trust-grid .trust-card:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
  }
  .trust-grid .trust-card:nth-child(2n+1) {
    padding-left: 0;
  }
  .trust-grid .trust-card:nth-child(2n) {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .trust-strip {
    padding: 50px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 36px 0;
  }
  .trust-card {
    padding: 0;
  }
  .trust-grid .trust-card:nth-child(even) {
    border-left: none;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 11.5px;
    letter-spacing: 0.05em;
  }
  .nav-cta .btn {
    padding: 8px 16px;
    font-size: 11.5px;
  }
  .logo-title {
    font-size: 18px;
  }
  .logo-subtitle {
    font-size: 7.5px;
    letter-spacing: 0.3em;
  }
}

/* --- Responsive Utility Grid System & Additions --- */
body.no-scroll {
  overflow: hidden;
}

.trust-strip {
  overflow: hidden;
}

/* Fluid Typography overrides for narrow viewports */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }
  .hero-title {
    font-size: 32px !important;
  }
  .hero-subheading {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .top-bar-separator {
    display: none !important;
  }
  .top-bar-container {
    justify-content: center;
  }
  .top-bar-info-group {
    font-size: 10px;
    gap: 16px;
    justify-content: center;
    width: 100%;
  }
}

/* Responsive grid utility definitions */
.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* --- About Page Services Layout & Cards --- */
.about-services-section {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-service-card {
  background: var(--color-light-gray);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md); /* Premium rounded corners matching variables */
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.about-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-gold);
}

.about-service-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-service-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.about-service-card a {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  margin-top: auto; /* Push link to the bottom */
}

.about-service-card a:hover {
  color: var(--color-primary);
}

.about-service-card a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.about-service-card a:hover svg {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .about-services-section {
    padding: 80px 0;
  }
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .about-services-section {
    padding: 60px 0;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-service-card {
    padding: 30px 24px;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
}

/* --- About Page Founder Section & Presence (Vertical Layout) --- */
.about-founder-intro {
  padding: 100px 0;
  background-color: var(--color-primary);
  background-image: 
    radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, rgba(17, 17, 17, 0) 85%),
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  background-position: center, center, center;
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  position: relative;
  overflow: hidden;
}

.founder-intro-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-image-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px auto;
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-premium);
  flex-shrink: 0;
  transition: var(--transition-medium);
}

.founder-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-intro-block .section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 8px;
  text-align: center;
  font-weight: 400;
}

.founder-intro-block .founder-role {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-align: center;
}

.founder-intro-block .founder-statement {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto 30px auto;
  max-width: 540px;
  font-style: italic;
  font-family: var(--font-body);
}

.founder-section-divider {
  width: 80px;
  height: 1px;
  background-color: var(--color-border);
  margin: 0 auto;
}

.about-presence {
  padding: 100px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.founder-presence-block {
  max-width: 720px; /* Editorial width */
  margin: 0 auto;
}

.founder-presence-block .section-title-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.founder-presence-block .section-title-wrapper .section-title {
  font-size: 2.4rem;
  text-align: center;
}

.founder-presence-block .presence-content {
  margin-bottom: 45px;
}

.founder-text {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 24px 0;
  text-align: left;
}

.founder-text:last-of-type {
  margin-bottom: 0;
}

.founder-cta-wrap {
  margin-bottom: 0;
}

.founder-cta-wrap .btn {
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-philosophy-quote {
  border-left: 3px solid var(--color-gold);
  padding: 6px 0 6px 24px;
  margin: 45px 0 0 0;
}

.founder-philosophy-quote p {
  color: var(--color-secondary);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  font-family: var(--font-body);
  margin: 0;
}

@media (max-width: 991px) {
  .about-founder-intro {
    padding: 80px 0;
  }
  .founder-intro-block .section-title {
    font-size: 2rem;
  }
  .founder-intro-block .founder-statement {
    font-size: 1.08rem;
    padding: 0 15px;
  }
  
  .about-presence {
    padding: 80px 0;
  }
  .founder-presence-block .section-title-wrapper .section-title {
    font-size: 2rem;
  }
  .founder-presence-block .presence-content .founder-text {
    padding: 0 15px;
    font-size: 1rem;
  }
  .founder-philosophy-quote {
    margin: 40px 15px 0 15px;
    padding-left: 18px;
  }
}

@media (max-width: 600px) {
  .about-founder-intro {
    padding: 60px 0;
  }
  .founder-image-container {
    width: 140px;
    height: 140px;
    margin-bottom: 18px;
  }
  .founder-intro-block .section-title {
    font-size: 1.8rem;
  }
  .founder-intro-block .founder-role {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  .founder-intro-block .founder-statement {
    font-size: 1rem;
  }
  
  .about-presence {
    padding: 60px 0;
  }
  .founder-presence-block .presence-content .founder-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .founder-philosophy-quote p {
    font-size: 0.98rem;
  }
}


.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

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

/* Hero Stats and Action wraps for small devices */
@media (max-width: 576px) {
  .hero-stats {
    display: none !important;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    margin: 0;
  }
}

/* Contact Info Item overrides for dark backgrounds (Careers / CTAs) */
.bg-dark .contact-info-value,
.bg-dark-secondary .contact-info-value,
.bg-dark .contact-info-value a,
.bg-dark-secondary .contact-info-value a {
  color: var(--color-white) !important;
}

.bg-dark .contact-info-value a:hover,
.bg-dark-secondary .contact-info-value a:hover {
  color: var(--color-gold) !important;
}

.bg-dark .contact-info-label,
.bg-dark-secondary .contact-info-label {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bg-dark .contact-info-icon,
.bg-dark-secondary .contact-info-icon {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-border-dark) !important;
}

/* Global Button Group and Contact Action wrappers for mobile breathing space */
.btn-group, .contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 576px) {
  .btn-group, .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .btn-group .btn, .contact-actions .btn {
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
    display: block !important;
  }
}

/* --- Google Reviews Carousel Layout --- */
.google-reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.google-reviews-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;  /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.google-reviews-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.google-reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 15px 0; /* allows card shadow padding */
}

.google-reviews-track .google-review-card {
  width: 406px; /* Desktop: 3 cards visible */
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.google-reviews-track .google-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.carousel-nav-btn.prev {
  left: -22px;
}

.carousel-nav-btn.next {
  right: -22px;
}

@media (max-width: 1200px) {
  .google-reviews-track {
    gap: 28px;
  }
  .google-reviews-track .google-review-card {
    width: calc((100vw - 80px - 28px) / 2); /* Tablet: 2 cards visible */
  }
  .carousel-nav-btn.prev {
    left: -15px;
  }
  .carousel-nav-btn.next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .google-reviews-track {
    gap: 20px;
  }
  .google-reviews-track .google-review-card {
    width: calc(100vw - 48px); /* Mobile: 1 card visible */
  }
  .carousel-nav-btn {
    display: none; /* Hide arrows on mobile for natural swipe */
  }
}

/* About Page Profile Overview custom alignments */
.about-profile-grid {
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 60px !important;
}

.about-profile-visual {
  height: 380px !important;
}

@media (max-width: 991px) {
  .about-profile-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .about-profile-visual {
    height: 320px !important;
  }
}

@media (max-width: 576px) {
  .about-profile-visual {
    height: 240px !important;
  }
}

/* --- Process Page Expanded Components --- */

.process-hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .process-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .process-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Section 3: Detailed Stages */
.journey-stage-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
  padding: 45px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.journey-stage-block:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-premium);
}

.journey-stage-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 25px;
}

.journey-stage-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-gold);
  line-height: 1;
}

.journey-stage-title-wrapper {
  display: flex;
  flex-direction: column;
}

.journey-stage-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.journey-stage-content p {
  color: var(--color-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.journey-stage-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  list-style: none;
  padding-left: 0;
}

.journey-stage-bullets li {
  color: var(--color-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.journey-stage-bullets li i {
  color: var(--color-gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .journey-stage-block {
    padding: 30px;
  }
  .journey-stage-bullets {
    grid-template-columns: 1fr;
  }
}

/* Section 4: 6-Phase Editorial Sequence */
.timeline-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.phase-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px 30px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-medium);
}

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

.phase-card-number {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.phase-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 400;
}

.phase-card-desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

@media (max-width: 576px) {
  .timeline-phases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Section 5: Pre-construction educational block */
.pre-construction-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 50px;
  align-items: flex-start;
}

.pre-construction-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pre-construction-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pre-construction-icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background-color: var(--color-white);
  flex-shrink: 0;
}

.pre-construction-icon-box i {
  width: 20px;
  height: 20px;
}

.pre-construction-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 400;
}

.pre-construction-text p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pre-construction-outcomes-box {
  background-color: var(--color-light-gray);
  border: 1px dashed var(--color-border);
  padding: 45px 40px;
  border-radius: var(--radius-md);
  height: max-content;
  position: sticky;
  top: 120px;
}

.pre-construction-outcomes-box h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 400;
}

.pre-construction-outcomes-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pre-construction-outcomes-list li {
  font-size: 0.95rem;
  color: var(--color-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.pre-construction-outcomes-list li i {
  color: var(--color-gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .pre-construction-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pre-construction-outcomes-box {
    position: static;
    padding: 35px 30px;
  }
}

/* Section 6: Coordinated Process Benefits */
.coordinated-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.coordinated-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-medium);
  height: 100%;
}

.coordinated-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-premium);
}

.coordinated-icon-wrapper {
  color: var(--color-gold);
  margin-bottom: 24px;
}

.coordinated-icon-wrapper i {
  width: 32px;
  height: 32px;
}

.coordinated-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 400;
}

.coordinated-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

@media (max-width: 576px) {
  .coordinated-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Section 7: Services Grid */
.process-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-medium);
}

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

.process-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 400;
}

.process-service-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.process-service-link {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  margin-top: auto;
}

.process-service-link:hover {
  color: var(--color-primary);
  gap: 12px;
}

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

@media (max-width: 576px) {
  .process-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Section 3 journey background design */
.journey {
  position: relative;
  overflow: hidden;
  background-color: var(--color-light-gray);
  background-image: 
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 80%),
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 35%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 35%),
    linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: center, center, center, center, center;
}
