@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Navy & Gold Luxury Palette (from original tailwind.config.ts) */
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;

  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;

  --primary: 222 47% 15%;
  /* Navy */
  --primary-foreground: 0 0% 100%;

  --secondary: 220 14% 96%;
  --secondary-foreground: 222 47% 11%;

  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;

  --accent: 38 92% 50%;
  /* Gold */
  --accent-foreground: 222 47% 11%;

  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 38 92% 50%;
  --radius: 0.75rem;

  /* Custom Colors */
  --navy-dark: 222 47% 8%;
  --gold-light: 38 92% 65%;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Cairo', sans-serif;

  /* Shadows */
  --shadow-gold: 0 4px 24px hsl(38 92% 50% / 0.3);
}

body {
  font-family: var(--font-body);
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
}

[dir="rtl"] body,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: var(--font-arabic);
}

/* Utility Classes */
.text-accent {
  color: hsl(var(--accent)) !important;
}

.bg-accent {
  background-color: hsl(var(--accent)) !important;
}

.text-primary {
  color: hsl(var(--primary)) !important;
}

.bg-primary {
  background-color: hsl(var(--primary)) !important;
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground)) !important;
}

.text-foreground {
  color: hsl(var(--foreground)) !important;
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground)) !important;
}

.text-xl {
  font-size: 1.125rem;
  line-height: 1.75;
}

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

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Buttons */
.btn-primary {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

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

.btn-outline-light {
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
}

/* Header & Nav */
.navbar {
  transition: all 0.5s ease;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link:hover,
.navbar.scrolled .nav-link:hover {
  color: hsl(var(--accent)) !important;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: hsl(var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

[dir="rtl"] .link-underline::after {
  transform-origin: right;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 3;
  transform: scale(1);
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay-gradient-vertical {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    hsl(222 47% 8% / 0.8) 0%, 
    hsl(222 47% 8% / 0.6) 50%, 
    hsl(222 47% 8% / 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay-gradient-horizontal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, 
    hsl(222 47% 8% / 0.5), 
    transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, hsl(222 47% 8% / 0.8) 0%, hsl(222 47% 8% / 0.6) 50%, hsl(222 47% 8% / 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 8rem;
  margin-top: 5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-content-wrapper {
  max-width: 48rem;
}

.hero-slide-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

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

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


.hero-slide-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

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

#hero-content-slide {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-buttons {
  margin-top: 0;
}

/* Hero Button Variants */
.btn-hero {
  background-color: hsl(var(--accent));
  color: hsl(var(--foreground));
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 4px 24px hsl(38 92% 50% / 0.3);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  box-shadow: 0 8px 40px hsl(38 92% 50% / 0.5);
  transform: translateY(-4px);
  background-color: hsl(var(--accent));
  color: hsl(var(--foreground));
}

.btn-hero-outline {
  background-color: hsl(var(--primary-foreground) / 0.05);
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border-radius: 0.75rem;
  border: 2px solid hsl(var(--primary-foreground) / 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

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

.hero-decorative-blurs {
  z-index: 1;
  pointer-events: none;
}

.hero-nav-wrapper {
  pointer-events: none;
}

.hero-nav-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.hero-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.hero-indicator {
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}

.hero-indicator:focus {
  outline: none;
}

.hero-indicator:hover {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

.hero-indicator.active:hover {
  background-color: hsl(38, 92%, 55%) !important;
}

#hero-indicators {
  pointer-events: none;
}

/* Category Filter Buttons */
.category-filter-btn {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-filter-btn:hover {
  border-color: hsl(var(--accent) / 0.5);
  color: hsl(var(--accent));
}

.category-filter-btn.active {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
  box-shadow: 0 4px 16px hsl(38 92% 50% / 0.3);
}

.category-filter-btn.active:hover {
  background-color: hsl(38, 92%, 55%);
}

.category-filter-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Product Card Improvements */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card {
  background-color: hsl(var(--card));
}

/* Category Navigation Buttons */
.category-nav-btn {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--input));
  border-color: hsl(var(--input));
  color: hsl(var(--foreground));
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.category-nav-btn:hover {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.category-nav-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px hsl(var(--ring) / 0.5);
}

.category-nav-btn:active {
  opacity: 0.9;
}

/* Products Hero Section */
.products-hero-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  position: relative;
}

.products-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.products-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.products-hero-overlay {
  background: linear-gradient(to bottom, 
    hsl(222 47% 8% / 0.9) 0%, 
    hsl(222 47% 8% / 0.7) 50%, 
    hsl(222 47% 8% / 0.9) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.products-hero-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .products-hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.products-hero-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

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

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

.products-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.75;
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 42rem;
}

/* RTL Support for Category Filters */
[dir="rtl"] .category-filter-img {
  order: -1;
}

/* About Page Styles */
.about-hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  position: relative;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-hero-overlay {
  background: linear-gradient(to bottom, 
    hsl(222 47% 8% / 0.9) 0%, 
    hsl(222 47% 8% / 0.7) 50%, 
    hsl(222 47% 8% / 0.9) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-hero-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .about-hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.about-hero-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

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

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

.about-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.75;
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 42rem;
}

.about-heading-lg {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .about-heading-lg {
    font-size: 2.5rem;
  }
}

.about-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background-color: hsl(var(--accent) / 0.1);
  transition: all 0.3s ease;
}

.value-card {
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: hsl(var(--accent) / 0.3) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.value-card:hover .about-value-icon {
  background-color: hsl(var(--accent) / 0.2);
}

@media (min-width: 768px) {
  .py-md-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem;
  }

  .mb-md-5 {
    margin-bottom: 3rem;
  }

  .mb-md-6 {
    margin-bottom: 4rem;
  }

  .g-lg-6 {
    --bs-gutter-y: 5rem;
    --bs-gutter-x: 5rem;
  }
}

/* Since 1985 Badge */
.since-1985-badge {
  background-color: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.product-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  background-color: hsl(var(--card));
  transition: all 0.5s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: hsl(var(--accent) / 0.3);
}

.product-card:hover h5 {
  color: hsl(var(--accent)) !important;
}

.product-image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: hsl(var(--foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
}

[dir="rtl"] .category-badge {
  left: auto;
  right: 1rem;
}

/* Footer */
footer {
  background-color: hsl(var(--navy-dark)) !important;
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

/* Category Card */
.category-card {
  transition: all 0.5s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card:hover h3 {
  color: hsl(var(--accent)) !important;
}

/* Section Spacing */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Letter Spacing */
.letter-spacing-wide {
  letter-spacing: 0.05em;
}

/* Utility Classes */
.object-fit-cover {
  object-fit: cover;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

/* Display Utilities */
.display-md-3 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .display-md-3 {
    font-size: 2.25rem;
  }
}

.display-lg-4 {
  font-size: 2.25rem;
}

@media (min-width: 992px) {
  .display-lg-4 {
    font-size: 2.5rem;
  }
}

/* Product Slider Styles */
.product-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-slider-container::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Services Gallery Styles */
.services-gallery-item {
  transition: transform 0.3s ease;
}

.services-gallery-item:hover {
  transform: translateY(-8px);
}

.services-gallery-image {
  transition: transform 0.5s ease;
}

.services-gallery-item:hover .services-gallery-image {
  transform: scale(1.1);
}

/* Slider Navigation Buttons */
.slider-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.slider-nav-btn:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

.slider-nav-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px hsl(var(--ring) / 0.5);
}

.slider-nav-btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.slider-nav-btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Gradient utilities */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.category-overlay-gradient {
  background: linear-gradient(to top, hsl(var(--navy-dark)) 0%, hsl(var(--navy-dark) / 0.4) 50%, transparent 100%);
}

/* Opacity utilities */
.opacity-80 {
  opacity: 0.8;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-5 {
  opacity: 0.05;
}

/* Contact Page Styles */
.contact-hero-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  position: relative;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, hsl(var(--navy-dark) / 0.9) 0%, hsl(var(--navy-dark) / 0.7) 50%, hsl(var(--navy-dark) / 0.9) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Heading Utilities */
.heading-xl {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

@media (min-width: 992px) {
  .heading-xl {
    font-size: 3.75rem;
  }
}

.heading-lg {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .heading-lg {
    font-size: 2.25rem;
  }
}

.heading-md {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .heading-md {
    font-size: 1.875rem;
  }
}

.contact-hero-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

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

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

.contact-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 42rem;
}

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

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-textarea {
  height: 3rem;
  border: 1px solid hsl(var(--input));
  border-radius: var(--radius);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.contact-form-textarea {
  height: auto;
  resize: none;
}

/* Contact Info Styles */
.contact-info-list {
  gap: 1.5rem;
}

.contact-info-card {
  background-color: hsl(var(--secondary));
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background-color: hsl(var(--accent) / 0.05);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Utility Classes */
.rounded-2xl {
  border-radius: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .mb-lg-8 {
    margin-bottom: 2rem;
  }
  
  .mb-lg-10 {
    margin-bottom: 2.5rem;
  }
}

.fw-medium {
  font-weight: 500;
}

/* Padding Utilities */
.p-6 {
  padding: 1.5rem;
}

.contact-map-placeholder {
  aspect-ratio: 16 / 9;
  background-color: hsl(var(--muted));
}

.contact-map-placeholder svg {
  width: 3rem;
  height: 3rem;
}

/* Contact Section Row Spacing */
.contact-section-row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

@media (min-width: 992px) {
  .contact-section-row {
    --bs-gutter-x: 5rem;
  }
}