/* Ling's Home Cleaning - Modern CSS with Performance Optimization */

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

:root {
  /* Premium Cleaning Business Color Palette */
  --primary-color: #0f172a; /* Sophisticated dark navy */
  --secondary-color: #10b981; /* Softer emerald */
  --secondary-dark: #047857; /* Darker emerald for accents */
  --accent-color: #dc2626; /* Reserved for main CTAs only */
  --accent-soft: #1e40af; /* Softer blue for secondary elements */
  --luxury-gold: #f59e0b; /* Premium gold accents */
  --text-primary: #0f172a; /* Sharp black for readability */
  --text-secondary: #475569; /* Professional grey */
  --background-light: #f8fafc; /* Pristine light background */
  --background-white: #ffffff;
  --background-cream: #fefbf6; /* Warm premium feel */
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.08);
  --shadow-md: 0 8px 16px -4px rgb(0 0 0 / 0.12);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.15);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Layout */
  
  /* Mobile Animations */
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Layout */
  --max-width: 1200px;
  --border-radius: 0.5rem;
  --transition: all 0.2s ease-in-out;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--secondary-color);
}

/* Layout Components */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
  background: var(--background-white);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Header & Navigation */
.header {
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-cream) 100%);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--luxury-gold);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 350px;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-menu a:hover {
  background-color: var(--background-light);
  color: var(--primary-color);
}

.phone-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, #b91c1c 100%);
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
}

.phone-cta:hover {
  background: linear-gradient(135deg, #b91c1c 0%, var(--accent-color) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 50%, var(--secondary-color) 100%);
  color: white;
  padding: 2rem 0 2rem 0;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="3"/></g></g></svg>');
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  color: white;
  margin-bottom: var(--spacing-lg);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl) auto;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

/* Hero trust stats (single row) */
.hero-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}
.hero-trust .stat-item {
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}
.hero-trust .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--luxury-gold);
  line-height: 1;
}
.hero-trust .stat-label {
  font-size: 0.9rem !important;
  opacity: 0.9;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .hero-trust { gap: 0.5rem; }
  .hero-trust .stat-value { font-size: 1.6rem !important; }
  .hero-trust .stat-label { font-size: 0.8rem !important; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: var(--font-size-base);
}

/* Phone CTA Default (Desktop) */
.phone-mobile {
  display: none;
}

.phone-desktop {
  display: inline;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #b91c1c 100%);
  color: white;
  border: 2px solid var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, var(--accent-color) 100%);
  border-color: #b91c1c;
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #1d4ed8 100%);
  color: white;
  border: 2px solid var(--accent-soft);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, var(--accent-soft) 100%);
  border-color: #1d4ed8;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn-soft {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: white;
  border: 2px solid var(--secondary-color);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-soft:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
  border-color: var(--secondary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: linear-gradient(145deg, var(--background-white) 0%, var(--background-cream) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: left;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--luxury-gold), var(--secondary-color));
  transition: width 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--luxury-gold);
}

.service-icon {
  font-size: var(--font-size-4xl);
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

/* Align buttons at bottom of service cards */
.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Quick Quote Section */
.quick-quote-section {
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--spacing-3xl);
  align-items: start;
}

/* Ensure grid children can shrink and respect the fr ratio */
.quote-benefits,
.quote-form-container {
  min-width: 0;
}

.quote-benefits {
  padding-right: var(--spacing-lg);
}

.quote-form-container {
  position: sticky;
  top: 100px;
}

.quote-form-card {
  background: var(--background-white);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  width: 100%;
}

.quick-quote-form .form-group {
  margin-bottom: var(--spacing-lg);
}

.quick-quote-form .form-input,
.quick-quote-form .form-textarea {
  border: 2px solid var(--border-light);
  transition: border-color 0.2s ease;
}

.quick-quote-form .form-input:focus,
.quick-quote-form .form-textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Mobile-First Responsive Design */

/* Extra Small Phones (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Typography Optimization */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.3rem !important;
  }
  
  /* Section Spacing */
  .section {
    padding: 2rem 0;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .hero h1 {
    margin-bottom: 0.75rem !important;
  }
  
  .hero p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* Trust Indicators - Single Column */
  .hero div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  /* CTA Buttons */
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
    padding: 1rem !important;
    font-size: 1rem !important;
  }
  
  /* Phone CTA - Make it prominent */
  .phone-cta {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 0 !important;
  }

  /* Keep the phone CTA compact on small screens */
  .phone-cta {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    border-radius: 9999px !important;
    flex-shrink: 0 !important;
  }
  /* Force short label on mobile */
  .phone-cta .phone-desktop { display: none !important; }
  .phone-cta .phone-mobile { display: inline !important; }
  /* Minor spacing so logo, call button, and menu fit */
  .nav { gap: 0.5rem !important; }
  .logo { flex: 0 1 auto !important; }
  
  /* Navigation Mobile */
  .nav {
    padding: 0.5rem 0;
  }

  .mobile-menu-btn {
    padding: 0.4rem 0.6rem !important;
    font-size: 1.25rem !important;
  }

  /* Logo Mobile */
  .logo img {
    height: 40px !important;
    width: auto !important;
  }

  /* Remove artificial gap below header */
  .hero { margin-top: 0 !important; }
  
  /* Phone CTA - Better mobile layout */
  .phone-desktop {
    display: none !important;
  }
  
  .phone-mobile {
    display: inline !important;
  }
  
  /* Service Cards Mobile */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Form Optimization */
  .form-input, .form-textarea {
    padding: 1rem !important;
    font-size: 1rem !important;
  }
  
  .form-label {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
  }
  
  /* Testimonials Mobile */
  .testimonial-slide {
    padding: 1rem !important;
  }
  
  .testimonial-text {
    font-size: 0.95rem !important;
  }
  
  .testimonial-author {
    font-size: 0.85rem !important;
  }
  
  /* Contact Cards */
  .contact-card {
    padding: 1.5rem 1rem;
  }
  
  /* Footer Mobile */
  .footer-content {
    gap: 2rem;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
}

/* Small Mobile (481px - 767px) */
@media (max-width: 767px) {
  /* Header Compact */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
  }

  .nav {
    padding: 0.75rem 0;
    align-items: center;
  }

  .logo img {
    height: 44px;
    width: auto;
  }

  /* Phone CTA on small mobile */
  .phone-desktop {
    display: none;
  }

  .phone-mobile {
    display: inline;
  }

  .phone-cta {
    font-size: 1rem !important;
    padding: 0.6rem 0.9rem !important;
    line-height: 1.1 !important;
    white-space: nowrap;
    letter-spacing: 0 !important;
  }

  /* Mobile Navigation */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    padding: 1rem 0;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: var(--background-light);
    color: var(--secondary-color);
    padding-left: 2.5rem;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
  }

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

  /* Remove extra white space under header on sticky small screens */
  .hero { margin-top: 0 !important; }

  /* Quote Grid Mobile */
  .quote-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .quote-benefits {
    padding-right: 0 !important;
    order: 2;
  }

  .quote-form-container {
    position: static !important;
    order: 1;
  }

  /* Trust Indicators Mobile */
  .trust-indicators {
    justify-content: center !important;
    gap: 1.5rem !important;
  }

  /* Suburbs Section Mobile */
  .suburbs-section {
    padding: 1.5rem !important;
  }

  .suburbs-section div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Contact Info Mobile */
  .contact-info {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

/* Tablet (768px - 1023px) - Keep existing styles */
@media (max-width: 768px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .quote-benefits {
    padding-right: 0;
  }
  
  .quote-form-container {
    position: static;
  }
}


/* Contact Section */
.contact-section {
  background: linear-gradient(to bottom, var(--background-white) 0%, var(--background-light) 100%);
  padding-top: var(--spacing-2xl);
  margin-top: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.contact-card {
  background-color: var(--background-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  max-width: 600px;
  margin: var(--spacing-3xl) auto 0;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-md) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero h1 {
    font-size: var(--font-size-5xl);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-carousel {
    width: 100%;
  }
  
  .testimonial-slide {
    padding: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    flex-wrap: nowrap;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Advanced Components */
.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, #f59e0b 100%);
  color: var(--primary-color);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.urgency-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, #b91c1c 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: var(--shadow-md); }
  50% { box-shadow: var(--shadow-xl); }
  100% { box-shadow: var(--shadow-md); }
}


.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--luxury-gold);
  margin: 2rem 0;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--luxury-gold);
  font-family: serif;
  opacity: 0.3;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  width: 100%;
  margin: 0 0 2rem 0;
  overflow: hidden;
}

.testimonial-carousel-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfccb 100%);
  border-radius: 12px;
  border: 1px solid #bbf7d0;
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.testimonial-rating {
  margin-top: 0.5rem;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--secondary-color);
  width: 30px;
  border-radius: 5px;
}

.carousel-dot:hover {
  background-color: var(--primary-color);
}

/* Carousel Navigation (optional - hidden by default) */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: none; /* Hidden by default, show on hover */
}

.carousel-nav:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.testimonial-carousel:hover .carousel-nav {
  display: flex;
}

/* Accessibility and Keyboard Navigation */
.keyboard-nav *:focus {
  outline: 3px solid var(--secondary-color) !important;
  outline-offset: 2px !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.error-message {
  color: var(--accent-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
  /* Better touch targets for mobile */
  .btn {
    min-height: 44px;
    padding: 1rem 1.5rem;
  }
  
  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Reduce hover effects on touch devices */
  .btn:hover,
  .nav-menu a:hover {
    transform: none;
  }
}

/* Utility Classes */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }