/* ===== ROOT VARIABLES ===== */
:root {
  /* Colors - Luxury Editorial Palette */
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #242424;
  --text-primary: #f5f5f5;
  --text-secondary: #b8b8b8;
  --text-muted: #7a7a7a;
  --accent-primary: #c3c93b;
  --accent-secondary: #9ca330;
  --accent-bright: #d4db4f;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* Shadows - Gradual progression for smooth animation */
  --shadow-none: 0 0 0 rgba(0, 0, 0, 0);
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.3);
  --shadow-2xl: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-3xl: 0 28px 70px rgba(0, 0, 0, 0.4);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

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

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

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

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section {
  padding: clamp(4rem, 10vh, 8rem) 0;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-transition.active {
  opacity: 1;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo a {
  display: flex;
  align-items: center;
  transition: var(--transition-base);
}

.logo a:hover {
  opacity: 0.7;
}

.logo img {
  height: 24px;
  width: auto;
  transition: var(--transition-base);
}

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

.nav-links a {
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  cursor: pointer;
}

/* Add a pseudo-element to bridge the gap */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
}

.dropdown-content a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  transition: var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

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

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-primary);
  padding-left: 2rem;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) var(--spacing-md);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% -20%,
    rgba(195, 201, 59, 0.12),
    transparent 60%
  ),
  radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(156, 163, 48, 0.06),
    transparent 50%
  );
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeIn 1s ease 0.2s backwards;
}

.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease 0.4s backwards;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease 0.6s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

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

.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--text-primary);
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  opacity: 0.7;
  transition: var(--transition-base);
}

.scroll-down:hover {
  opacity: 1;
  border-color: var(--accent-primary);
}

.scroll-down span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: scrollBounce 1.6s infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(12px);
  }
}

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-label.light {
  color: var(--accent-bright);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(195, 201, 59, 0.03),
    transparent 70%
  );
  pointer-events: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.split-content {
  padding-right: 2rem;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.split-content .btn {
  margin-top: 1rem;
}

.split-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--accent-primary);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.3;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.service-card:hover {
  z-index: 10;
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent-primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-icon {
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--accent-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
}

.service-link:hover {
  color: var(--accent-bright);
  gap: 1rem;
}

/* ===== GALLERY PREVIEW SECTION ===== */
.gallery-preview-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.gallery-hero {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-link {
  display: block;
  position: relative;
  cursor: pointer;
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-image-wrapper img {
  width: 100%;
  height: clamp(400px, 60vh, 700px);
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7);
}

.gallery-link:hover img {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  transition: var(--transition-slow);
}

.gallery-link:hover .gallery-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.gallery-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-link:hover .gallery-content {
  transform: translateY(-10px);
}

.gallery-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gallery-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(26, 26, 26, 0.8);
}

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

.form-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ff6b6b;
}

.form-group.error .form-error {
  display: block;
}

.contact-form button {
  margin-top: 1rem;
  position: relative;
}

.btn-loading {
  display: none;
}

.contact-form button.loading .btn-text {
  display: none;
}

.contact-form button.loading .btn-loading {
  display: inline;
}

.contact-form button.loading {
  pointer-events: none;
  opacity: 0.6;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 2px;
  color: #10b981;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.footer-logo img {
  height: 24px;
  opacity: 0.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--accent-primary);
  padding-left: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

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

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--accent-bright);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--bg-primary);
  stroke-width: 2.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .split-content {
    padding-right: 0;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  .dropdown-content {
    position: static;
    transform: none;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .hamburger {
    display: block;
  }
  
  /* Sections */
  section {
    padding: clamp(3rem, 8vh, 5rem) 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .scroll-down {
    bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .hamburger,
  .back-to-top,
  .scroll-down,
  .page-transition {
    display: none !important;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
.page-hero {
  padding: clamp(8rem, 15vh, 12rem) 0 clamp(4rem, 10vh, 8rem);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(195, 201, 59, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text .lead {
  margin-bottom: 0;
}

/* Mission Section */
.mission-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-label.center {
  text-align: center;
}

.mission-content h2 {
  margin-bottom: 2.5rem;
}

.mission-text {
  display: grid;
  gap: 1.5rem;
}

.mission-text p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Team Section */
.team-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.team-member {
  background: var(--bg-primary);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.1);
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member.featured {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: var(--bg-primary);
  transform: scale(1.02);
  border-color: transparent;
}

.team-member.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 32px 64px rgba(0, 0, 0, 0.25);
}

.team-member.featured::before {
  display: none;
}

.member-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
}

.member-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.member-role {
  color: var(--accent-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.team-member.featured .member-role {
  color: var(--bg-primary);
  opacity: 0.8;
}

.member-bio {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.team-member.featured .member-bio {
  color: var(--bg-primary);
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.value-card {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(5deg);
  background: rgba(195, 201, 59, 0.2);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(195, 201, 59, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: clamp(6rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .team-member.featured {
    transform: scale(1);
  }
  
  .team-member.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card,
  .team-member {
    padding: 2rem 1.5rem;
  }
}

/* ===== SERVICE PAGES STYLES ===== */

/* Service Hero */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  padding: clamp(10rem, 20vh, 15rem) 0 clamp(6rem, 12vh, 10rem);
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(195, 201, 59, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.residential-hero::before {
  background: radial-gradient(ellipse 70% 50% at 30% 0%, rgba(195, 201, 59, 0.08), transparent 70%);
}

.commercial-hero::before {
  background: radial-gradient(ellipse 70% 50% at 70% 0%, rgba(195, 201, 59, 0.08), transparent 70%);
}

.concept-hero::before {
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(195, 201, 59, 0.12), transparent 70%);
}

.service-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-hero-content h1 {
  margin-bottom: 1.5rem;
}

.service-hero-content .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Introduction */
.service-intro {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Service Offerings */
.service-offerings {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.offering-card {
  background: var(--bg-primary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.offering-card:hover {
  z-index: 10;
  transform: translateY(-10px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.1);
}


.offering-card:hover::before {
  transform: scaleX(1);
}

.offering-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover .offering-icon {
  transform: scale(1.1);
  background: rgba(195, 201, 59, 0.2);
}

.offering-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.offering-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.offering-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Process Timeline */
.service-process {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.process-timeline {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-primary);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  background: rgba(195, 201, 59, 0.1);
  box-shadow: 0 0 20px rgba(195, 201, 59, 0.3);
}

.step-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Featured Projects */
.featured-projects {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.projects-showcase {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-primary);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.project-feature:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.project-feature::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.1);
}

.project-feature:hover::before {
  transform: scaleX(1);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-feature:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 2.5rem;
}

.project-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.project-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(195, 201, 59, 0.1);
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
}

.cta-link {
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--bg-secondary);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.benefit-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2xl);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-primary);
  opacity: 0.15;
  line-height: 1;
}

.benefit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-right: 3rem;
}

.benefit-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--bg-primary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.quote-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.15);
  background: rgba(195, 201, 59, 0.2);
}

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

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-weight: 500;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Journey Timeline (Concept Page) */
.journey-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.journey-timeline {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.journey-phase {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  z-index: 1;
}

.journey-phase:hover {
  border-color: rgba(195, 201, 59, 0.3);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateX(8px);
  z-index: 10;
}

.journey-phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-phase:hover {
  border-color: rgba(195, 201, 59, 0.3);
  box-shadow: var(--shadow-2xl);
  transform: translateX(5px);
}

.journey-phase:hover::before {
  transform: scaleY(1);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.phase-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-phase:hover .phase-icon {
  transform: scale(1.1);
  background: rgba(195, 201, 59, 0.2);
}

.phase-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.phase-header h3 {
  font-size: 1.5rem;
  flex: 1;
}

.phase-duration {
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phase-details {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding-left: calc(56px + 1.5rem);
}

.phase-details li {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.phase-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

/* Deliverables Grid */
.deliverables-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.deliverable-card {
  background: var(--bg-secondary);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
}

.deliverable-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  background: rgba(195, 201, 59, 0.05);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.deliverable-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  background: rgba(195, 201, 59, 0.05);
  box-shadow: var(--shadow-xl);
}

.deliverable-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
  margin: 0 auto 1rem;
  stroke-width: 1.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deliverable-card:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(195, 201, 59, 0.5));
}

.deliverable-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Service Pages Responsive */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .project-feature {
    grid-template-columns: 1fr;
  }
  
  .project-image {
    min-height: 300px;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(4rem, 10vh, 6rem);
  }
  
  .offerings-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .phase-details {
    padding-left: 0;
  }
  
  .phase-header {
    flex-wrap: wrap;
  }
  
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .offering-card,
  .benefit-item,
  .testimonial-card,
  .journey-phase {
    padding: 2rem 1.5rem;
  }
  
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .project-info {
    padding: 2rem 1.5rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  padding: clamp(10rem, 20vh, 15rem) 0 clamp(6rem, 12vh, 10rem);
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(195, 201, 59, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.contact-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-content h1 {
  margin-bottom: 1.5rem;
}

.contact-hero-content .lead {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.method-card {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover .method-icon {
  transform: scale(1.1);
  background: rgba(195, 201, 59, 0.2);
}

.method-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.method-card p {
  margin-bottom: 0.5rem;
}

.method-card p a {
  color: var(--text-primary);
  font-size: 1.0625rem;
  transition: var(--transition-base);
}

.method-card p a:hover {
  color: var(--accent-primary);
}

.method-note {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.contact-form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.contact-form select {
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c3c93b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  cursor: pointer;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--accent-primary);
  background-color: rgba(26, 26, 26, 0.8);
}

.contact-form select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Social Section */
.social-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-primary);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.social-card {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: block;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.social-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(195, 201, 59, 0.2);
}

.social-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.social-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.social-card p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.social-arrow {
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  display: inline-block;
}

.social-card:hover .social-arrow {
  transform: translateX(5px);
}

/* Hours Section */
.hours-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-secondary);
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}

.hours-info,
.location-info {
  background: var(--bg-primary);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-info h2,
.location-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day {
  color: var(--text-primary);
  font-weight: 500;
}

.time {
  color: var(--accent-primary);
  font-weight: 500;
}

.hours-note,
.location-note {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.address svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .hours-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(4rem, 10vh, 6rem);
  }
  
  .methods-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .hour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .method-card,
  .social-card,
  .hours-info,
  .location-info {
    padding: 2rem 1.5rem;
  }
}



/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
  padding: clamp(8rem, 15vh, 12rem) 0 clamp(4rem, 8vh, 6rem);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(195, 201, 59, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content .lead {
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-hero .hero-image {
  position: relative;
}

.about-hero .image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-hero .image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-hero .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(195, 201, 59, 0.1),
    transparent 50%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* About Mission */
.about-mission {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-mission::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  margin-bottom: 2rem;
}

.mission-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

/* About Story */
.about-story {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg-primary);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 2px solid var(--accent-primary);
  transition: var(--transition-base);
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.highlight i {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.highlight svg {
  width: 24px;
  height: 24px;
}

.highlight span {
  font-size: 1rem;
  font-weight: 500;
}

/* About Team */
.about-team {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member.featured {
  background: linear-gradient(
    135deg,
    rgba(195, 201, 59, 0.1),
    rgba(195, 201, 59, 0.05)
  );
  border-color: rgba(195, 201, 59, 0.2);
}

.featured-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.member-role {
  font-size: 0.9375rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.member-bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* About Values */
.about-values {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--accent-primary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 201, 59, 0.1);
  border-radius: 50%;
  color: var(--accent-primary);
  transition: var(--transition-base);
}

.value-card:hover .value-icon {
  background: rgba(195, 201, 59, 0.15);
  transform: scale(1.1);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* About CTA */
.about-cta {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: linear-gradient(
    135deg,
    rgba(195, 201, 59, 0.05),
    rgba(195, 201, 59, 0.02)
  );
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(195, 201, 59, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* Responsive About Page */
@media (max-width: 1024px) {
  .hero-layout,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 8rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .stat {
    text-align: center;
  }
  
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .story-highlights {
    gap: 0.75rem;
  }
}

