/* EavesDecor - Exact React Design Match */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ==================================================
   CSS VARIABLES - Exact match from React index.css
   ================================================== */
:root {
  /* Warm, sophisticated palette */
  --background: 40 33% 98%;
  --foreground: 30 10% 15%;

  --card: 40 30% 97%;
  --card-foreground: 30 10% 15%;

  --popover: 40 33% 98%;
  --popover-foreground: 30 10% 15%;

  /* Terracotta primary */
  --primary: 16 45% 55%;
  --primary-foreground: 40 33% 98%;

  /* Sage green secondary */
  --secondary: 145 20% 88%;
  --secondary-foreground: 145 30% 25%;

  /* Warm cream muted */
  --muted: 40 25% 94%;
  --muted-foreground: 30 10% 45%;

  /* Gold accent */
  --accent: 38 70% 50%;
  --accent-foreground: 40 33% 98%;

  --destructive: 0 72% 51%;
  --destructive-foreground: 40 33% 98%;

  --border: 35 20% 88%;
  --input: 35 20% 88%;
  --ring: 16 45% 55%;

  --radius: 0.75rem;

  /* Custom tokens */
  --sage: 145 25% 72%;
  --sage-light: 145 20% 92%;
  --terracotta: 16 45% 55%;
  --terracotta-light: 16 40% 75%;
  --cream: 40 33% 96%;
  --charcoal: 30 10% 20%;
  --gold: 38 70% 50%;
  --gold-light: 38 60% 75%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Font Classes */
.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-sans {
  font-family: 'Inter', system-ui, sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ==================================================
   COLOR UTILITIES
   ================================================== */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-sage { color: hsl(var(--sage)); }
.text-gold { color: hsl(var(--gold)); }
.text-terracotta { color: hsl(var(--terracotta)); }
.text-cream { color: hsl(var(--cream)); }
.text-charcoal { color: hsl(var(--charcoal)); }

.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-sage-light { background-color: hsl(var(--sage-light)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-charcoal { background-color: hsl(var(--charcoal)); }

/* ==================================================
   GRADIENTS - Exact from React
   ================================================== */
.bg-gradient-warm {
  background: linear-gradient(135deg, hsl(40 33% 96%) 0%, hsl(35 30% 92%) 100%);
}

.bg-gradient-hero {
  background: linear-gradient(180deg, hsl(40 33% 98%) 0%, hsl(35 25% 94%) 100%);
}

.bg-gradient-accent {
  background: linear-gradient(135deg, hsl(16 45% 55%) 0%, hsl(16 50% 45%) 100%);
}

.bg-gradient-sage {
  background: linear-gradient(135deg, hsl(145 25% 72%) 0%, hsl(145 30% 62%) 100%);
}

.bg-gradient-gold {
  background: linear-gradient(135deg, hsl(38 70% 50%) 0%, hsl(38 65% 40%) 100%);
}

/* ==================================================
   SHADOWS - Exact from React
   ================================================== */
.shadow-soft {
  box-shadow: 0 4px 20px -4px hsl(30 10% 15% / 0.08);
}

.shadow-medium {
  box-shadow: 0 8px 30px -6px hsl(30 10% 15% / 0.12);
}

.shadow-strong {
  box-shadow: 0 20px 50px -12px hsl(30 10% 15% / 0.2);
}

.shadow-glow {
  box-shadow: 0 0 40px -10px hsl(16 45% 55% / 0.3);
}

/* ==================================================
   MAIN APP LAYOUT - For Vue/React integration
   ================================================== */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==================================================
   BOOTSTRAP OVERRIDES
   ================================================== */
.btn-primary {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(16 50% 48%);
  border-color: hsl(16 50% 48%);
}

.btn-outline-primary {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.btn-outline-primary:hover {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Form Controls */
.form-control {
  border-color: hsl(var(--border));
  border-radius: 0.5rem;
}

.form-control:focus {
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

/* ==================================================
   PAGE HEADER STYLES (for pages without custom header)
   ================================================== */
.page-header {
  padding: 4rem 0;
  background: linear-gradient(180deg, hsl(40 33% 98%) 0%, hsl(35 25% 94%) 100%);
  text-align: center;
}

.page-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 3.5rem;
  }
}

.page-header-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease forwards;
}

/* Animation Delays */
.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-500 { animation-delay: 0.5s; }

/* ==================================================
   UTILITY CLASSES
   ================================================== */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 2rem;
  }
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ==================================================
   CARD STYLES
   ================================================== */
.card-custom {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card-custom:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 8px 30px -6px hsl(30 10% 15% / 0.12);
}

/* ==================================================
   ALERTS
   ================================================== */
.alert-success {
  background: hsl(145 60% 95%);
  border-color: hsl(145 40% 70%);
  color: hsl(145 50% 25%);
}

.alert-danger {
  background: hsl(0 60% 95%);
  border-color: hsl(0 40% 70%);
  color: hsl(0 50% 35%);
}

/* ==================================================
   AUTH PAGES STYLES
   ================================================== */
.auth-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px -4px hsl(30 10% 15% / 0.08);
}

.user-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: hsl(var(--muted));
  border: 2px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.user-type-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.user-type-card.selected {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}

/* ==================================================
   SCROLLBAR STYLES
   ================================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--muted-foreground) / 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground) / 0.5);
}

/* ==================================================
   MAIN CONTENT
   ================================================== */
main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Spacer for fixed header */
.header-spacer {
  height: 80px;
}

/* ==================================================
   HEADER STYLES - Exact React Match
   ================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--charcoal));
  color: hsl(var(--cream));
  border-bottom: 2px solid hsl(var(--gold));
  height: 80px;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px -4px hsl(30 10% 15% / 0.08);
}

.site-header .container {
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.brand-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Desktop Navigation */
.header-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
  z-index: 99;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--cream) / 0.8);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.nav-chevron {
  font-size: 0.75rem;
}

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

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  pointer-events: none;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.dropdown-menu .dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
  background: transparent;
  white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

/* Auth Buttons */
.header-auth {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-auth {
    display: flex;
  }
}

.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--cream) / 0.9);
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-nav-ghost:hover {
  background: hsl(var(--gold));
  color: hsl(var(--charcoal));
}

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-nav-primary:hover {
  background: hsl(16 45% 45%);
  color: white;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--cream) / 0.9);
  background: transparent;
  border: 1px solid hsl(var(--gold) / 0.5);
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-nav-outline:hover {
  background: hsl(var(--gold));
  color: hsl(var(--charcoal));
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: hsl(var(--cream));
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle:focus {
  box-shadow: none;
  outline: none;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
}

.mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
}

.mobile-link:hover,
.mobile-link.active {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}

.mobile-children {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-child {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
}

.mobile-child:hover {
  color: hsl(var(--foreground));
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.w-100 {
  width: 100%;
}

/* ==================================================
   HOME PAGE - HERO SECTION
   ================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    hsl(40 33% 98% / 0.95) 0%, 
    hsl(40 33% 98% / 0.7) 50%, 
    hsl(40 33% 98% / 0.3) 100%);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, hsl(var(--background)), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: hsl(var(--sage-light));
  color: hsl(var(--sage));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title span {
  display: block;
  color: hsl(var(--primary));
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px 0 hsl(16 45% 55% / 0.39);
}

.btn-hero:hover {
  background: hsl(16 50% 48%);
  transform: translateY(-1px);
  color: white;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--foreground));
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-hero-outline:hover {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.hero-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

/* ==================================================
   HOME PAGE - SERVICES SECTION
   ================================================== */
.services-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}

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

.section-badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: hsl(var(--sage-light));
  color: hsl(var(--sage));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-badge-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.section-badge-gold {
  background: hsl(var(--gold) / 0.1);
  color: hsl(var(--gold));
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: block;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 8px 30px -6px hsl(30 10% 15% / 0.12);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-icon-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.service-icon-sage {
  background: hsl(var(--sage) / 0.2);
  color: hsl(var(--sage));
}

.service-icon-gold {
  background: hsl(var(--gold) / 0.1);
  color: hsl(var(--gold));
}

.service-icon-terracotta {
  background: hsl(var(--terracotta) / 0.1);
  color: hsl(var(--terracotta));
}

.service-icon-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.service-icon-muted {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.service-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

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

.service-card-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover .service-learn-more {
  opacity: 1;
}

/* ==================================================
   HOME PAGE - PORTFOLIO SECTION
   ================================================== */
.portfolio-section {
  padding: 6rem 0;
  background: hsl(var(--muted) / 0.3);
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .portfolio-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    hsl(30 10% 20% / 0.8) 0%, 
    hsl(30 10% 20% / 0.2) 50%, 
    transparent 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 0.85;
}

.portfolio-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(40 33% 98% / 0.8);
  margin-bottom: 0.5rem;
}

.portfolio-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--cream));
}

.portfolio-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(40 33% 98% / 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-arrow {
  opacity: 1;
}

.portfolio-arrow i {
  color: hsl(var(--cream));
  font-size: 1.25rem;
}

/* ==================================================
   HOME PAGE - TESTIMONIALS SECTION
   ================================================== */
.testimonials-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: hsl(var(--primary) / 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: hsl(var(--gold));
  font-size: 1rem;
}

.testimonial-text {
  color: hsl(var(--foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ==================================================
   HOME PAGE - CTA SECTION
   ================================================== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, hsl(40 30% 92%) 0%, hsl(35 25% 88%) 50%, hsl(30 20% 85%) 100%);
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.cta-decoration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--cream));
  border-radius: 50%;
  filter: blur(64px);
  transform: translate(-50%, -50%);
}

.cta-decoration::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--gold));
  border-radius: 50%;
  filter: blur(64px);
  transform: translate(50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--charcoal));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: hsl(var(--primary));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.4);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.5);
  color: white;
  background: hsl(16 45% 45%);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: hsl(var(--charcoal));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  background: hsl(var(--background));
  color: hsl(var(--charcoal));
  border-color: hsl(var(--primary));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ==================================================
   FOOTER STYLES
   ================================================== */
.footer {
  background: hsl(var(--charcoal));
  color: hsl(var(--cream));
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsl(40 33% 98% / 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social {
  color: hsl(40 33% 98% / 0.6);
  transition: color 0.2s ease;
}

.footer-social:hover {
  color: hsl(var(--primary));
}

.footer-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: hsl(40 33% 98% / 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--primary));
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: hsl(40 33% 98% / 0.7);
  font-size: 0.875rem;
}

.footer-contact i {
  color: hsl(var(--primary));
  margin-top: 0.125rem;
}

.footer-contact a {
  color: hsl(40 33% 98% / 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(40 33% 98% / 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  color: hsl(40 33% 98% / 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: hsl(40 33% 98% / 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: hsl(40 33% 98% / 0.8);
}

/* ==================================================
   SCROLL REVEAL ANIMATIONS - Global
   ================================================== */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Fade In Up - Elements slide up while fading in */
.scroll-reveal[data-animation="fadeInUp"] {
  transform: translateY(30px);
}

/* Fade In Left - Elements slide in from left */
.scroll-reveal[data-animation="fadeInLeft"] {
  transform: translateX(-30px);
}

/* Fade In Right - Elements slide in from right */
.scroll-reveal[data-animation="fadeInRight"] {
  transform: translateX(30px);
}

/* Scale In - Elements scale up while fading in */
.scroll-reveal[data-animation="scaleIn"] {
  transform: scale(0.95);
}

/* ==================================================
   FLOATING ACTIONS - Left side buttons + Scroll to top
   ================================================== */
.floating-actions {
  position: relative;
  z-index: 500;
}

/* Left side floating buttons */
.floating-left {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: 2px solid hsl(var(--primary) / 0.4);
  box-shadow: 0 4px 14px 0 hsl(16 45% 55% / 0.39);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px hsl(16 45% 55% / 0.5);
}

.floating-btn i {
  font-size: 1rem;
}

/* Scroll to top button */
.floating-scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  box-shadow: 0 4px 14px 0 hsl(16 45% 55% / 0.39);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.floating-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-scroll-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px hsl(16 45% 55% / 0.5);
}

.floating-scroll-top i {
  font-size: 1.25rem;
}

/* Floating Bob Animation */
@keyframes floating-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.floating-btn:nth-child(1) {
  animation: floating-bob 3s ease-in-out 0s infinite;
}

.floating-btn:nth-child(2) {
  animation: floating-bob 3s ease-in-out 0.4s infinite;
}

.floating-btn:nth-child(3) {
  animation: floating-bob 3s ease-in-out 0.8s infinite;
}

/* Floating Popups */
.floating-popup {
  position: fixed;
  left: 4.5rem;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  width: 18rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px -12px hsl(30 10% 15% / 0.25);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.floating-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.floating-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
}

.floating-popup-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.floating-popup-close {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.floating-popup-close:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.floating-popup-body {
  padding: 1rem;
}

.floating-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.floating-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.floating-submit-btn {
  width: 100%;
  padding: 0.625rem 1rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.floating-submit-btn:hover {
  opacity: 0.9;
}

.floating-chat-area {
  height: 6rem;
  background: hsl(var(--muted));
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.floating-chat-area p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.floating-chat-input {
  display: flex;
  gap: 0.5rem;
}

.floating-chat-input .floating-input {
  flex: 1;
  margin-bottom: 0;
}

.floating-chat-input .floating-submit-btn {
  width: auto;
  padding: 0.625rem 1rem;
}

/* ==================================================
   COOKIE CONSENT
   ================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsl(var(--charcoal) / 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid hsl(var(--accent) / 0.2);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .cookie-consent-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cookie-consent-inner p {
  color: hsl(var(--cream) / 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.cookie-consent-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-consent-btn:hover {
  opacity: 0.9;
}

/* ==================================================
   PANORAMIC VIEW BUTTON - Fixed Right Side
   ================================================== */
.pano-fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.pano-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: hsl(var(--charcoal));
  border: 2px solid hsl(var(--gold));
  border-radius: 8px 0 0 8px;
  color: hsl(var(--gold));
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
}

.pano-link:hover {
  background: hsl(var(--charcoal));
  width: 55px;
}

.pano-link i {
  font-size: 24px;
}

.pano-link img {
  transition: transform 0.3s ease;
}

.pano-link:hover img {
  transform: scale(1.1);
}