/* Custom Properties from Tailwind Config */
:root {
  --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Fraunces', ui-serif, Georgia, serif;

  /* Colors derived from OKLCH provided */
  --background: #fdfdfd;
  --foreground: #09090b;
  --card: #ffffff;
  --card-muted: #f8f9fa;
  --primary: #0284c7; /* Approximation of the OKLCH blue/teal */
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #f59e0b; /* Yellow for stars */
  --border: #e2e8f0;
  
  --dark-bg: #0f1922;
  --dark-foreground: #f8fafc;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography Utilities */
.font-serif { font-family: var(--font-serif); }
.font-semibold { font-weight: 600; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-white { color: #ffffff; }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.hover-underline:hover { text-decoration: underline; }

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.125rem; }

/* Layout Utilities */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.section { padding: 4rem 0; }
.border-t { border-top: 1px solid var(--border); }
.bg-card-muted { background-color: var(--card-muted); }
.bg-dark { background-color: var(--dark-bg); }
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; margin-inline: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.grid-2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section { padding: 5rem 0; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Icons */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { background-color: #026ca3; transform: scale(1.02); }
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background-color: rgba(2, 132, 199, 0.1); }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.2); }
.button-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--card);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  width: fit-content;
}
.badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(2, 132, 199, 0.4);
  background-color: rgba(2, 132, 199, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}
.subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(253, 253, 253, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 0.75rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}
.brand-name { font-weight: 600; font-size: 1rem; }
.nav-links { display: none; gap: 1.75rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: none; }
@media (min-width: 768px) {
  .nav-links, .nav-actions { display: flex; }
}

/* Hero Section */
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
.rating-box { display: flex; align-items: center; gap: 0.75rem; }
.contact-info-small { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }
.contact-info-small span { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .contact-info-small { flex-direction: row; gap: 1.5rem; } }
.hero-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(2, 132, 199, 0.1);
  aspect-ratio: 1/1;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }

/* Services Grid */
.services-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(2, 132, 199, 0.5); }
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--primary);
}

/* Why Us Section */
.features-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item h3 { margin: 0.5rem 0 0.25rem 0; font-size: 1rem; }
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--primary);
}
.why-us-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
}
.why-us-image { width: 100%; height: 100%; object-fit: cover; }

/* Reviews Section */
.reviews-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.rating-large { font-size: 3rem; font-weight: 600; line-height: 1; }
.reviews-stars-group { display: flex; flex-direction: column; align-items: flex-start; }
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.quote-icon { color: rgba(2, 132, 199, 0.4); width: 24px; height: 24px; }
.review-card blockquote { color: var(--foreground); font-size: 1rem; line-height: 1.6; flex-grow: 1; }
.review-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.review-card .author { font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); }

/* 3D Model Section Placeholder */
.model-container {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  height: 420px;
  background-color: #0c141a;
}
@media (min-width: 768px) { .model-container { height: 520px; } }
.model-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}
.model-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
.model-controls .dot { opacity: 0.4; margin: 0 0.25rem; }

/* Visit Section */
.visit-content { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-list .icon-box { width: 36px; height: 36px; }
.map-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-height: 360px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Footer */
.footer { padding: 2rem 0; }
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.logo-small { width: 32px; height: 32px; font-size: 0.875rem; }
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
    }
                                         
