/* 
  WOW LUXURY TILING - Premium Design Stylesheet
  Curated Palette: Dark Charcoal Slate, Rich Metallic Gold, & Deep Burgundy Wine
*/

:root {
  /* Design Tokens - Colors */
  --bg-dark-base: #0c0c0e;
  --bg-dark-card: #141417;
  --color-gold: #dfba6b;
  --color-gold-light: #f5dc9e;
  --color-gold-dark: #b89349;
  --color-gold-glow: rgba(223, 186, 107, 0.15);
  --color-sand: #c5a059; /* premium sand/gold tone */
  
  --color-burgundy: #300812;
  --color-burgundy-hover: #450c1b;
  --color-burgundy-light: #5c1125;
  --color-burgundy-glow: rgba(74, 14, 35, 0.3);

  --text-primary: #ffffff;
  --text-muted: #b5b5be;
  --text-dark: #7a7a85;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout constraints */
  --max-width: 1400px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-base);
}
::-webkit-scrollbar-thumb {
  background: #25252b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(8, 8, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-area img {
  height: 96px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: var(--transition-smooth);
}

header.scrolled .logo-area img {
  height: 80px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Call to Action Button in Nav */
.nav-cta {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: #000;
  border: none;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(223, 186, 107, 0.25);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 186, 107, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
}

/* Hero Section */
.hero {
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(to right, rgba(12, 12, 14, 0.85) 30%, rgba(12, 12, 14, 0.45) 65%, rgba(12, 12, 14, 0.15) 100%), url('bathroom.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Left Content Column */
.hero-content {
  max-width: 650px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.subtitle-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.subtitle-badge::before, .subtitle-badge::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--color-gold-dark);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-title .light-text {
  display: block;
  color: var(--text-primary);
  font-weight: 400;
}

.hero-title .accent-text {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold-light) 10%, var(--color-gold) 60%, var(--color-gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.25rem;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  font-weight: 300;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
}

.btn-solid {
  background: var(--color-burgundy);
  color: var(--text-primary);
  border: 1px solid var(--color-burgundy-light);
  box-shadow: 0 4px 25px rgba(48, 8, 18, 0.4);
}

.btn-solid:hover {
  background: var(--color-burgundy-hover);
  border-color: var(--color-gold);
  box-shadow: 0 8px 30px rgba(48, 8, 18, 0.6), 0 0 15px var(--color-gold-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(223, 186, 107, 0.45);
}

.btn-outline:hover {
  background: rgba(223, 186, 107, 0.08);
  border-color: var(--color-gold-light);
  box-shadow: 0 0 20px var(--color-gold-glow);
  transform: translateY(-2px);
}

/* Contact Info Row */
.hero-contact {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.contact-item i, .contact-item svg {
  color: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.contact-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.contact-item:hover i, .contact-item:hover svg {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 0 8px var(--color-sand));
  color: var(--color-gold-light);
}

.contact-item:hover span {
  color: var(--color-gold-light);
}

/* Glow overlay effect */
.glow-effect {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(223, 186, 107, 0.08) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
  pointer-events: none;
}

/* Stats Section */
.stats {
  background: linear-gradient(185deg, var(--color-burgundy) 0%, #1c050b 100%);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(223, 186, 107, 0.15);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.stat-item.animate {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stat-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(223, 186, 107, 0.18);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 60%, var(--color-gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* About Section */
.about {
  padding: 8rem 2rem 4rem 2rem;
  background-color: #08080a;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-media {
  position: relative;
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about.animate .about-media {
  opacity: 1;
  transform: translateX(0);
}

.about-image-wrapper {
  position: relative;
  width: 90%;
  aspect-ratio: 1.15;
  margin-left: auto;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(223, 186, 107, 0.1);
}

.border-offset {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--color-sand);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .border-offset {
  transform: translate(5px, 5px);
  border-color: var(--color-gold-light);
}

.about-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about.animate .about-content {
  opacity: 1;
  transform: translateY(0);
}

.about-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-sand);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.about-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid rgba(223, 186, 107, 0.12);
  border-left: 1px solid rgba(223, 186, 107, 0.12);
}

.grid-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(223, 186, 107, 0.12);
  border-bottom: 1px solid rgba(223, 186, 107, 0.12);
  transition: var(--transition-smooth);
}

.grid-item:hover {
  background: rgba(223, 186, 107, 0.03);
}

.grid-item i, .grid-item svg {
  color: var(--color-sand);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.grid-item:hover i, .grid-item:hover svg {
  transform: scale(1.18) rotate(6deg);
  color: var(--color-gold-light);
  filter: drop-shadow(0 0 6px var(--color-gold-glow));
}

.grid-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Services Section */
.services {
  padding: 4rem 2rem 8rem 2rem;
  background-color: #0a0a0c;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.services-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem auto;
  text-align: center;
}

.services-subtitle {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: #121214;
  border: 1px solid rgba(223, 186, 107, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
}

.services.animate .service-card {
  opacity: 1;
  transform: translateY(0);
}

.services.animate .service-card:nth-child(1) { transition-delay: 0s; }
.services.animate .service-card:nth-child(2) { transition-delay: 0.15s; }
.services.animate .service-card:nth-child(3) { transition-delay: 0.3s; }
.services.animate .service-card:nth-child(4) { transition-delay: 0.45s; }

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(223, 186, 107, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(223, 186, 107, 0.04);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6;
  background-color: #1b1b1f;
  overflow: visible;
}

.image-zoom-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

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

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

.card-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-burgundy);
  border: 1px solid var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.card-icon-badge i, .card-icon-badge svg {
  color: var(--color-sand);
  width: 18px;
  height: 18px;
}

.card-content {
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-list li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.02em;
}

.card-list li i, .card-list li svg {
  width: 8px;
  height: 8px;
  fill: var(--color-sand);
  color: var(--color-sand);
}

/* Projects Section */
.projects {
  padding: 8rem 2rem;
  background-color: #08080a;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.projects-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.projects-subtitle {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(223, 186, 107, 0.25);
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background-color: rgba(223, 186, 107, 0.03);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(223, 186, 107, 0.25);
}

/* Gallery Grid (5 columns) */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects.animate .projects-gallery {
  opacity: 1;
  transform: translateY(0);
}

.project-card {
  position: relative;
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #121214;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, opacity 0.5s ease;
}

.project-card.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  border: none;
}

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

.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

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

/* Hover overlay details */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.2) 60%, rgba(12, 12, 14, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.project-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-title {
  transform: translateY(0);
}

.project-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sand);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.05s;
}

.project-card:hover .project-category {
  transform: translateY(0);
}

/* Process Section */
.process {
  padding: 8rem 2rem;
  background-color: #0c0c0e;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.process-header {
  max-width: var(--max-width);
  margin: 0 auto 6rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.process-header::before,
.process-header::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(197, 160, 89, 0) 0%, rgba(197, 160, 89, 0.3) 100%);
}

.process-header::after {
  background: linear-gradient(to right, rgba(197, 160, 89, 0.3) 0%, rgba(197, 160, 89, 0) 100%);
}

.process-subtitle {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-sand);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

.process-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
}

/* Timeline Line wrapper */
.process-line-wrapper {
  position: absolute;
  top: 78px; /* Perfectly aligned vertically with step badge centers */
  left: 10%;
  right: 10%;
  height: 3px;
  z-index: 1;
  pointer-events: none;
}

.process-line {
  width: 0;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-sand) 1.5px, transparent 1.5px);
  background-size: 10px 100%;
  background-repeat: repeat-x;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.1s;
}

.process.animate .process-line {
  width: 100%;
}

.process-line-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--color-sand);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 0 10px var(--color-gold);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process.animate .process-line-node {
  transform: translate(-50%, -50%) scale(1);
}

/* Nodes placed exactly in the middle of step columns */
.node-1 { left: 12.5%; }
.node-2 { left: 37.5%; }
.node-3 { left: 62.5%; }
.node-4 { left: 87.5%; }

.process.animate .node-1 { transition-delay: 0.45s; }
.process.animate .node-2 { transition-delay: 0.95s; }
.process.animate .node-3 { transition-delay: 1.45s; }
.process.animate .node-4 { transition-delay: 1.95s; }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process.animate .process-step {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered load matches the speed of the line drawing */
.process.animate .process-step:nth-child(2) { transition-delay: 0.1s; }
.process.animate .process-step:nth-child(3) { transition-delay: 0.6s; }
.process.animate .process-step:nth-child(4) { transition-delay: 1.1s; }
.process.animate .process-step:nth-child(5) { transition-delay: 1.6s; }
.process.animate .process-step:nth-child(6) { transition-delay: 2.1s; }

.step-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-sand);
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
  position: relative;
}

/* Arch decoration above the step numbers (matching user's design) */
.step-number::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 6px;
  border-top: 1.5px solid var(--color-sand);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.step-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--color-burgundy);
  border: 1px solid var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 24px rgba(48, 8, 18, 0.5), 0 0 0 4px rgba(223, 186, 107, 0.03);
  transition: var(--transition-smooth);
}

.process-step:hover .step-badge {
  transform: scale(1.1);
  border-color: var(--color-gold-light);
  box-shadow: 0 12px 30px rgba(48, 8, 18, 0.7), 0 0 15px rgba(223, 186, 107, 0.2);
}

.step-badge i, .step-badge svg {
  color: var(--color-sand);
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

.process-step:hover .step-badge i, .process-step:hover .step-badge svg {
  color: var(--color-gold-light);
  transform: rotate(10deg);
}

.step-title {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 200px;
}

/* Responsive Design */

/* Large Screens */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .stat-number {
    font-size: 3rem;
  }
}

/* Medium Screens (Tablets) */
@media (max-width: 991px) {
  header {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.open {
    right: 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  /* Hamburger transform when menu is open */
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 4rem 1.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .subtitle-badge {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-contact {
    justify-content: center;
    gap: 1.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0;
  }

  .stat-item:not(:first-child)::before {
    display: none;
  }
  
  .stat-item:nth-child(2n)::before {
    left: 0;
  }

  .about {
    padding: 5rem 1.5rem 2.5rem 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-wrapper {
    width: 85%;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    padding: 2.5rem 1.5rem 5rem 1.5rem;
  }

  .services-subtitle {
    font-size: 2.6rem;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .projects {
    padding: 5rem 1.5rem;
  }

  .projects-subtitle {
    font-size: 2.6rem;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .project-card {
    aspect-ratio: 1;
  }

  .process {
    padding: 5rem 1.5rem;
  }

  .process-subtitle {
    font-size: 2.6rem;
  }

  .process-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .process-line-wrapper {
    display: none;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }

  /* Vertical timeline line for tablet view */
  .process-step::after {
    content: '';
    position: absolute;
    top: 64px;
    left: 99px; /* center of badge: 35px number + 32px gap + 32px half-badge */
    width: 2px;
    height: calc(100% + 3.5rem - 64px);
    background-image: radial-gradient(circle, var(--color-sand) 1.5px, transparent 1.5px);
    background-size: 1px 10px;
    background-repeat: repeat-y;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
  }

  .process.animate .process-step::after {
    opacity: 1;
  }

  .process-step:last-child::after {
    display: none;
  }

  .step-number {
    font-size: 1.8rem;
    margin-bottom: 0;
    width: 35px;
  }

  .step-number::before {
    display: none; /* Hide desktop arch on mobile/tablet */
  }

  .step-badge {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
  }

  .step-desc {
    max-width: 100%;
  }
}

/* Small Screens (Phones) */
@media (max-width: 576px) {
  .hero {
    padding: 3.5rem 1rem 3rem 1rem;
  }

  .subtitle-badge {
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 2rem;
  }
  
  .hero-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.5rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-item::before {
    display: none !important;
  }
  
  .stat-item {
    border-bottom: 1px solid rgba(223, 186, 107, 0.1);
    padding-bottom: 1.5rem;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }

  .about-title {
    font-size: 2.4rem;
  }

  .about-image-wrapper {
    width: 90%;
  }

  .border-offset {
    bottom: -12px;
    left: -12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-item {
    padding: 1.5rem 1rem;
  }

  .services-subtitle {
    font-size: 2.2rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .projects-subtitle {
    font-size: 2.2rem;
  }

  .projects-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-card {
    aspect-ratio: 1.1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .filter-tabs {
    gap: 0.5rem;
  }
  
  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .process-subtitle {
    font-size: 2.2rem;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
  }

  /* Vertical timeline line for mobile view */
  .process-step::after {
    content: '';
    position: absolute;
    top: 102px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 3.5rem - 102px);
    background-image: radial-gradient(circle, var(--color-sand) 1.5px, transparent 1.5px);
    background-size: 1px 10px;
    background-repeat: repeat-y;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
  }

  .process.animate .process-step::after {
    opacity: 1;
  }

  .process-step:last-child::after {
    display: none;
  }

  .step-number {
    width: auto;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 2rem;
  background: linear-gradient(185deg, var(--color-burgundy) 0%, #1c050b 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(223, 186, 107, 0.15);
}

.testimonials-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials.animate .testimonials-header {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-sand);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.testimonials-wrapper {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

.testimonials.animate .testimonials-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex-shrink: 0;
  width: 50%;
  padding: 0 4rem;
  text-align: center;
  position: relative;
}

/* Vertical divider on desktop */
@media (min-width: 992px) {
  .testimonial-card:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: rgba(223, 186, 107, 0.25);
  }
}

.stars {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.stars i, .stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-sand);
  fill: var(--color-sand);
}

.testimonial-card .quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card .author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-sand);
  text-transform: uppercase;
}

/* Navigation Buttons */
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-dark-base);
  border: 1px solid rgba(223, 186, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.slider-btn i, .slider-btn svg {
  color: var(--text-primary);
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background-color: var(--color-burgundy-hover);
  border-color: var(--color-sand);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.slider-btn:hover i, .slider-btn:hover svg {
  color: var(--color-sand);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  background-color: var(--bg-dark-base);
  border-color: rgba(223, 186, 107, 0.1);
}

.slider-btn:disabled i, .slider-btn:disabled svg {
  color: var(--text-dark);
}

.prev-btn {
  position: absolute;
  left: 0;
  z-index: 5;
}

.next-btn {
  position: absolute;
  right: 0;
  z-index: 5;
}

/* Tablet & Mobile responsive for testimonials */
@media (max-width: 991px) {
  .testimonials {
    padding: 5rem 1.5rem;
  }
  
  .testimonials-wrapper {
    padding: 0 3.5rem;
  }
  
  .testimonial-card {
    width: 100%;
    padding: 0 1rem;
  }
  
  .testimonial-card .quote {
    font-size: 1.1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .testimonials-wrapper {
    padding: 0;
  }
  
  .testimonial-card .quote {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .prev-btn {
    position: static;
    margin-right: auto;
  }
  
  .next-btn {
    position: static;
    margin-left: auto;
  }
  
  .testimonials-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .testimonials-container {
    order: -1;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   Contact & Service Area Section
   ========================================================================== */
.contact {
  padding: 8rem 2rem;
  background-color: var(--bg-dark-base);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(223, 186, 107, 0.15);
  border-radius: 6px;
  padding: 4rem 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.contact-info-panel {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-panel {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}

.contact.animate .contact-info-panel,
.contact.animate .contact-form-panel {
  opacity: 1;
  transform: translateX(0);
}

/* Panel Header */
.panel-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.panel-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.panel-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-weight: 300;
}

/* Locations Checklist Grid */
.locations-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.checklist-item i,
.checklist-item svg {
  color: var(--color-sand);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.checklist-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
}

/* Hover & Active States */
.checklist-item:hover,
.checklist-item.highlighted {
  background-color: rgba(223, 186, 107, 0.06);
  border-color: rgba(223, 186, 107, 0.25);
  transform: translateY(-2px);
}

.checklist-item:hover i,
.checklist-item.highlighted i {
  color: var(--color-gold-light);
  transform: scale(1.15);
}

.checklist-item:hover span,
.checklist-item.highlighted span {
  color: var(--text-primary);
}

/* Interactive Sydney Map Overlay */
.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(223, 186, 107, 0.18);
  background-color: #070709;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.map-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(0.7) contrast(1.1) saturate(0.9);
  transition: var(--transition-smooth);
}

.map-wrapper:hover .map-bg-image {
  opacity: 0.65;
  transform: scale(1.02);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Map Pin Markers */
.map-pin-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.pin-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-dark-base);
  border: 1.5px solid var(--color-sand);
  color: var(--color-sand);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: var(--transition-smooth);
}

.map-pin-point i,
.map-pin-point svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.pin-marker-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background-color: rgba(20, 20, 23, 0.95);
  border: 1px solid rgba(223, 186, 107, 0.2);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  margin-top: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

/* Main Pin styling (Old Guildford) */
.map-pin-point.pin-main .pin-icon-wrap {
  width: 44px;
  height: 44px;
  border-color: var(--color-gold-light);
  background-color: var(--color-burgundy);
  color: var(--color-gold-light);
  box-shadow: 0 4px 15px rgba(48, 8, 18, 0.7);
}

.map-pin-point.pin-main i,
.map-pin-point.pin-main svg {
  width: 20px;
  height: 20px;
}

.map-pin-point.pin-main .pin-marker-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* Pulse animation background */
.pin-marker-pulse {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: pinPulse 2s infinite ease-out;
}

.map-pin-point.pin-main .pin-marker-pulse {
  top: 22px;
  width: 44px;
  height: 44px;
  animation-duration: 1.8s;
}

/* Map Pin Interactive States */
.map-pin-point:hover,
.map-pin-point.highlighted {
  z-index: 20;
}

.map-pin-point:hover .pin-icon-wrap,
.map-pin-point.highlighted .pin-icon-wrap {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(223, 186, 107, 0.35);
  background-color: var(--color-burgundy-hover);
}

.map-pin-point:hover .pin-marker-label,
.map-pin-point.highlighted .pin-marker-label {
  color: var(--text-primary);
  border-color: var(--color-gold-light);
  background-color: #1a1a1f;
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.7);
}

/* Pulsing Keyframe */
@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.9;
    box-shadow: 0 0 0 0 rgba(223, 186, 107, 0.5);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
    box-shadow: 0 0 0 16px rgba(223, 186, 107, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(223, 186, 107, 0);
  }
}

/* ==========================================================================
   Form Styling
   ========================================================================== */
.quote-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

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

.form-input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-input-wrapper.full-span {
  grid-column: span 2;
}

.quote-input {
  width: 100%;
  padding: 1.1rem 1.3rem;
  background-color: #0a0a0c;
  border: 1px solid rgba(223, 186, 107, 0.2);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  transition: var(--transition-smooth);
  outline: none;
}

.quote-input::placeholder {
  color: var(--text-dark);
  font-weight: 300;
  transition: var(--transition-fast);
}

.quote-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(223, 186, 107, 0.1);
  background-color: #101013;
}

.quote-input:focus::placeholder {
  opacity: 0.5;
  transform: translateX(4px);
}

.quote-textarea {
  resize: none;
  line-height: 1.5;
}

/* Custom Styled Select Dropdown */
.select-wrapper {
  position: relative;
}

.quote-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 3rem;
}

.dropdown-chevron-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-sand);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.quote-select:focus ~ .dropdown-chevron-icon {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-gold-light);
}

/* Validation styling */
.quote-input.invalid {
  border-color: #d13d3d;
  box-shadow: 0 0 10px rgba(209, 61, 61, 0.12);
  background-color: rgba(209, 61, 61, 0.02);
}

.error-msg {
  color: #eb5757;
  font-size: 0.78rem;
  margin-top: 0.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-5px);
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}

.quote-input.invalid ~ .error-msg {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 0.4rem;
}

/* Submit Button */
.quote-submit-btn {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: #0c0c0e;
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(223, 186, 107, 0.25);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(223, 186, 107, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

.btn-text,
.btn-icon {
  transition: var(--transition-smooth);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.quote-submit-btn:hover .btn-icon {
  transform: translateX(4px) translateY(-3px);
}

/* Button Loading State */
.quote-submit-btn.loading {
  pointer-events: none;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
}

.quote-submit-btn.loading .btn-text,
.quote-submit-btn.loading .btn-icon {
  opacity: 0;
  transform: scale(0.9);
}

.btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #0c0c0e;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quote-submit-btn.loading .btn-loader {
  opacity: 1;
  animation: spinLoader 0.75s infinite linear;
}

@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Success Modal State
   ========================================================================== */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 14, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-card-inner {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 450px;
  transform: scale(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-overlay.active .success-card-inner {
  transform: scale(1);
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(223, 186, 107, 0.08);
  border: 2.5px solid var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 30px rgba(223, 186, 107, 0.25);
  position: relative;
}

.success-tick {
  width: 38px;
  height: 38px;
  color: var(--color-gold-light);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.form-success-overlay.active .success-tick {
  stroke-dashoffset: 0;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.success-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-success-close {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid rgba(223, 186, 107, 0.35);
  padding: 0.8rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-success-close:hover {
  background-color: rgba(223, 186, 107, 0.08);
  border-color: var(--color-gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(223, 186, 107, 0.15);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1199px) {
  .contact-container {
    gap: 2rem;
  }
  
  .contact-info-panel,
  .contact-form-panel {
    padding: 3rem 2rem;
  }
  
  .panel-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .contact {
    padding: 6rem 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .contact-info-panel {
    transform: translateY(-20px);
  }
  
  .contact-form-panel {
    transform: translateY(20px);
    transition-delay: 0s;
  }
  
  .contact.animate .contact-info-panel,
  .contact.animate .contact-form-panel {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 5rem 1rem;
  }
  
  .contact-info-panel,
  .contact-form-panel {
    padding: 2.5rem 1.5rem;
  }
  
  .panel-title {
    font-size: 2rem;
  }

  .locations-checklist {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .form-input-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .form-input-wrapper.full-span {
    grid-column: span 1;
  }

  .quote-textarea {
    grid-column: span 1;
  }
  
  .map-wrapper {
    aspect-ratio: 1.2;
  }
  
  .pin-marker-label {
    display: none; /* Hide labels on very small screens to avoid clutter, just tap pins */
  }
  
  .map-pin-point:hover .pin-marker-label,
  .map-pin-point.highlighted .pin-marker-label {
    display: block;
    position: absolute;
    bottom: 40px;
    z-index: 50;
  }
}

/* ==========================================================================
   Footer Section Styling
   ========================================================================== */
.footer {
  background-color: var(--bg-dark-base);
  border-top: 1px solid rgba(223, 186, 107, 0.15);
  padding: 6rem 2rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.8fr 0.8fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer.animate .footer-col {
  opacity: 1;
  transform: translateY(0);
}

.footer.animate .footer-col:nth-child(1) { transition-delay: 0s; }
.footer.animate .footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer.animate .footer-col:nth-child(3) { transition-delay: 0.2s; }
.footer.animate .footer-col:nth-child(4) { transition-delay: 0.3s; }

/* Desktop Vertical Dividers */
@media (min-width: 992px) {
  .footer-col:not(:last-child) {
    border-right: 1px solid rgba(223, 186, 107, 0.1);
    padding-right: 3rem;
  }
}

/* Brand Column */
.footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-decoration: none;
  width: fit-content;
}

.footer-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: var(--transition-smooth);
}

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

.footer-brand-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-burgundy-light); /* burgundy wine text matching design screenshot */
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(223, 186, 107, 0.25);
  color: var(--color-sand);
  background-color: transparent;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social-links a i,
.footer-social-links a svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--color-burgundy-hover);
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(223, 186, 107, 0.25);
}

.footer-social-links a:hover i,
.footer-social-links a:hover svg {
  transform: scale(1.15);
}

/* Headings */
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Lists */
.footer-contact-list,
.footer-nav-links,
.footer-services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Link Actions */
.footer-nav-links a,
.footer-services-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: var(--transition-smooth);
  display: inline-block;
  width: fit-content;
}

.footer-nav-links a:hover,
.footer-services-list a:hover {
  color: var(--color-gold-light);
  transform: translateX(5px);
}

/* Contact Column details */
.footer-contact-list li {
  display: flex;
  align-items: center;
}

.footer-contact-list a,
.contact-time-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: var(--transition-smooth);
}

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

.footer-contact-list i,
.footer-contact-list svg,
.contact-time-info i,
.contact-time-info svg {
  color: var(--color-sand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.footer-contact-list a:hover i,
.footer-contact-list a:hover svg {
  transform: scale(1.1) rotate(5deg);
  color: var(--color-gold-light);
}

/* Copyright footer bar */
.footer-bottom {
  border-top: 1px solid rgba(223, 186, 107, 0.15);
  padding: 2.2rem 0;
  margin-top: 1.5rem;
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .footer {
    padding: 5rem 1.5rem 0 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    padding-bottom: 2rem;
  }
  
  .footer-col {
    border-bottom: 1px solid rgba(223, 186, 107, 0.1);
    padding-bottom: 2.5rem;
  }
  
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 4rem 1rem 0 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-col {
    border-bottom: 1px solid rgba(223, 186, 107, 0.1);
    padding-bottom: 2rem;
  }
  
  .footer-col:last-child {
    border-bottom: none;
  }
  
  .footer-col-title {
    margin-bottom: 1.25rem;
  }
  
  .footer-bottom {
    padding: 1.8rem 0;
  }
}


