/* SR Car Travels Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Primary - Deep Navy Blue */
  --primary: hsl(220, 60%, 20%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(220, 50%, 35%);
  --primary-dark: hsl(220, 70%, 12%);

  /* Secondary - Warm Amber */
  --secondary: hsl(38, 95%, 50%);
  --secondary-foreground: hsl(220, 60%, 15%);
  --secondary-light: hsl(38, 95%, 60%);
  --secondary-dark: hsl(38, 90%, 42%);

  /* Accent - Rich Gold */
  --accent: hsl(45, 85%, 55%);
  --accent-foreground: hsl(220, 60%, 15%);

  /* Background & Surfaces */
  --background: hsl(210, 25%, 98%);
  --foreground: hsl(220, 30%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 30%, 15%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(220, 30%, 15%);

  /* Muted */
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(220, 15%, 45%);

  /* Borders & Inputs */
  --border: hsl(210, 20%, 88%);
  --input: hsl(210, 20%, 88%);
  --ring: hsl(220, 60%, 20%);

  /* Destructive */
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Radius */
  --radius: 0.75rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px hsla(220, 60%, 20%, 0.1);
  --shadow-md: 0 8px 24px -8px hsla(220, 60%, 20%, 0.15);
  --shadow-lg: 0 16px 48px -12px hsla(220, 60%, 20%, 0.2);
  --shadow-glow: 0 0 40px hsla(38, 95%, 50%, 0.3);
  --shadow-card: 0 4px 20px -4px hsla(220, 60%, 20%, 0.1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Utility Classes */
.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Header Styles - Glassmorphism Effect - Always Visible */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  transition: all 0.3s ease;
  padding: 0 !important;
  background: #ffffff !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  min-height: auto !important;
  height: auto !important;
}

/* Ensure all header children are visible */
header * {
  visibility: visible !important;
}

header .container-custom {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
}

/* Desktop nav - always visible on large screens */
@media (min-width: 1024px) {
  header nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Mobile menu button - always visible */
header .mobile-menu-btn {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 1024px) {
  header .mobile-menu-btn {
    display: none !important;
  }
}

header a,
header button {
  visibility: visible !important;
  opacity: 1 !important;
}

header.scrolled {
  background: #ffffff !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1) !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure navbar text is always visible on all pages */
header .logo-text,
header.scrolled .logo-text {
  color: var(--primary) !important;
  font-weight: 700 !important;
  transition: color 0.3s;
  text-shadow: none;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure all nav links are black and visible */
header .nav-link,
header.scrolled .nav-link,
header nav a.nav-link {
  color: #000000 !important;
  font-weight: 600 !important;
  transition: all 0.3s;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Active link stays orange */
header .nav-link.active,
header nav a.nav-link.active {
  color: var(--secondary) !important;
}

header .mobile-menu-btn,
header.scrolled .mobile-menu-btn {
  color: #1a1a1a !important;
  transition: all 0.3s;
  opacity: 1 !important;
  visibility: visible !important;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex;
  align-items: center;
}

.logo-text img {
  height: 110px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
  padding: 5px;
  margin: 0;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.875rem;
  }
  
  .logo-text img {
    height: 100px;
    max-width: 350px;
  }
}

.logo-text .highlight {
  color: var(--secondary);
}

/* Navigation */
nav {
  display: none;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 1024px) {
  nav {
    display: flex !important;
    align-items: center;
    gap: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Base nav link - always black */
.nav-link,
a.nav-link,
header a.nav-link,
nav a.nav-link {
  font-weight: 600 !important;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  color: #000000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Active link - orange */
.nav-link.active,
a.nav-link.active {
  color: var(--secondary) !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 146, 60, 0.1);
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

/* Hover state - orange */
.nav-link:hover,
a.nav-link:hover {
  color: var(--secondary) !important;
  transform: translateY(-2px);
}

/* Ensure non-active, non-hover links are always black */
.nav-link:not(.active):not(:hover),
a.nav-link:not(.active):not(:hover) {
  color: #000000 !important;
}

.nav-link.active {
  color: var(--secondary) !important;
  background: rgba(251, 146, 60, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.nav-link.active::before {
  opacity: 0;
}

/* Mobile Menu - Glassmorphism */
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  animation: slideDown 0.3s ease;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-menu .nav-link,
.mobile-menu a.nav-link {
  color: #000000 !important;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active,
.mobile-menu a.nav-link:hover,
.mobile-menu a.nav-link.active {
  background-color: var(--muted);
  color: var(--secondary) !important;
}

/* Ensure non-active mobile menu links are black */
.mobile-menu .nav-link:not(.active):not(:hover),
.mobile-menu a.nav-link:not(.active):not(:hover) {
  color: #000000 !important;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--card);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.mobile-menu-btn i {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-family: inherit;
}

.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  line-height: 1;
}

.btn svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-cta {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-glow);
  font-weight: 700;
}

.btn-cta:hover {
  background-color: var(--secondary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-hero {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-glow);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
}

@media (min-width: 768px) {
  .btn-hero {
    font-size: 1.125rem;
  }
}

.btn-hero:hover {
  background-color: var(--secondary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.btn-outline-light {
  border: 2px solid var(--card);
  background-color: transparent;
  color: var(--card);
  font-weight: 700;
}

.btn-outline-light:hover {
  background-color: var(--card);
  color: var(--primary);
}

.btn-whatsapp {
  background-color: hsl(142, 70%, 45%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
  background-color: hsl(142, 70%, 40%);
  box-shadow: var(--shadow-lg);
}

.btn-call {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-call:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media {
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  margin-top: 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 2rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(251, 146, 60, 0.2);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease;
}

.hero-title {
  font-size: 2.25rem;
  color: var(--card);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .highlight {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .hero-stat-number {
    font-size: 1.875rem;
  }
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .hero-stat-label {
    font-size: 1rem;
  }
}

/* Cards */
.card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.2);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--destructive);
}

.form-error {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(251, 146, 60, 0.1);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Section Title */
.section-title {
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-title .highlight {
  color: var(--secondary);
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-content {
  padding: 4rem 1rem 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    padding: 6rem 2rem 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-title .highlight {
  color: var(--secondary);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    padding: 1.5rem 2rem;
  }
}

.footer-bottom-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-text {
    text-align: left;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link i {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scroll-top-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  animation: fadeIn 0.3s ease;
}

.scroll-top-btn i {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease;
}

.animate-slide-up {
  animation: slideUp 0.6s ease;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2.5rem;
  }
}

/* Font Awesome Icon Alignment */
i.fas, i.fab, i.far {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: rgba(251, 146, 60, 0.3);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.testimonial-text {
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-author-role {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.25rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.star svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--secondary);
  color: var(--secondary);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--muted);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: all 0.3s;
}

.carousel-btn i {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  width: 2rem;
  background-color: var(--secondary);
}

/* Gallery */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.filter-btn.active {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.gallery-caption {
  color: var(--card);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(30, 41, 59, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card);
  transition: background-color 0.3s;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-card {
  background-color: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.6), transparent);
}

.service-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--secondary);
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-feature {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border-radius: 9999px;
}

/* Feature Cards */
.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(251, 146, 60, 0.5);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(251, 146, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.feature-icon i,
.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.75rem;
  color: var(--secondary);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card:hover .feature-icon i,
.feature-card:hover .feature-icon svg {
  color: var(--secondary-foreground);
}

.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-foreground);
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Info Cards */
.contact-info-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(251, 146, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.contact-icon i,
.contact-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.75rem;
  color: var(--secondary);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card:hover .contact-icon i,
.contact-info-card:hover .contact-icon svg {
  color: var(--secondary-foreground);
}

.contact-info-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  color: var(--secondary);
  font-weight: 500;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Spacing Utilities */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Hidden Utility */
.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .hidden-lg {
    display: none;
  }
}

