/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 0%;
  --primary: 0 0% 0%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 0%;
  --muted: 0 0% 92%;
  --muted-foreground: 0 0% 40%;
  --border: 0 0% 90%;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}
 .logo-row {
      display: flex;
      flex-direction: row;      /* single row */
      align-items: center;
      gap: 15px;                /* space between logos */
        /* center aligned */
    }

    .logo-row img {
      width: 30px;
      cursor: pointer;
    }
body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

/* Header */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(var(--background), 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--foreground));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: hsl(var(--foreground));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: right;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 60;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: hsl(var(--foreground));
  transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100vh;
  background-color: hsl(var(--background));
  z-index: 55;
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: left;
  padding: 2rem;
}
.nav-mobile.active {
  right: 0;
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-mobile .nav-link {
  font-size: 0.8rem;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
   background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
  background-color: hsl(var(--secondary));
}

.btn-hero {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.btn-hero-outline {
  background-color: transparent;
  color: hsl(var(--background));
  border: 1px solid hsla(var(--background), 0.3);
}

.btn-hero-outline:hover {
  background-color: hsla(var(--background), 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
   /* background-color: hsl(var(--primary)); */
   /* Milky White */
 /* background-color: #f5f5f0; */
 /* background-color: hsl(var(--muted));*/background-color: hsl(var(--background));
 /* background-image: url('website.avif');  */

  color: hsl(var(--background));
background: white;

  padding: 6rem 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  animation: fadeIn 1s ease forwards;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  /* color: hsla(var(--background), 0.6); */
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: hsla(var(--foreground), 0.7);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  color: pink;
}

/* Section Styles */
.section {
  padding: 6rem 1.5rem;
}

.section-dark {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.section-light {
  background-color: hsl(var(--secondary));
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
   color: hsl(var(--primary));
  /* color: hsl(var(--muted-foreground)); */
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color:black;
}

.section-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  line-height: 1.8;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */
.card {
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.card:hover {
  background-color: hsl(var(--secondary));
}

.card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.card-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Featured Section */
.featured-grid {
  display: grid;
  gap: 0;
}

.featured-item {
  display: flex;
  flex-direction: column;
}

.featured-image {
  height: 300px;
  background-color: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-content {
  padding: 2rem;
  border: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-item {
    flex-direction: row;
  }
  
  .featured-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .featured-image,
  .featured-content {
    width: 50%;
  }
  
  .featured-image {
    height: auto;
    min-height: 400px;
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid hsla(var(--background), 0.2);
  border-bottom: 1px solid hsla(var(--background), 0.2);
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 6rem 1.5rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: hsla(var(--background), 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Services Page */
.page-hero {
  padding-top: 150px;
  padding-bottom: 4rem;
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid hsl(var(--border));
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
  .service-item {
    grid-template-columns: 1fr 2fr;
  }
}

.service-number {
  padding: 2rem;
  border-right: 1px solid hsl(var(--border));
}

.service-number span {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-feature {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
}

/* Process Steps */
.process-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-item {
  padding: 2rem;
  border: 1px solid hsla(var(--background), 0.2);
  text-align: center;
}

.process-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.7;
}

/* Facilities Page */
.facility-card {
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}

.facility-image {
  height: 250px;
  background-color: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-content {
  padding: 2rem;
}

.facility-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.facility-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.facility-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.facility-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
}

.facility-feature::before {
  content: '✓';
  font-size: 0.75rem;
}

/* Facility Stats */
.facility-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .facility-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.facility-stat {
  text-align: center;
}

.facility-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.facility-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

/* Contact Page */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  color: hsl(var(--foreground));
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: hsl(var(--foreground));
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-info-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
}

.map-placeholder {
  height: 300px;
  background-color: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2rem;
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary));
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  max-width: 350px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: hsl(var(--foreground));
}

.footer-contact p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: hsl(var(--foreground));
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Responsive Desktop Nav */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .menu-btn {
    display: none;
  }
  
  .nav-mobile {
    display: none;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}


/* ===== Base ===== */
body {
  background: #f8f8f8;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== Dropdown Container ===== */
.dropdown {
  width: 280px;
  margin: 40px auto;
  position: relative;
}

/* ===== Button ===== */
.dropdown-btn {
  background: #f5f5f0;           /* milky white */
  color: #333;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e0e0dc;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.dropdown-btn:hover {
  background: #fdfdfd;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ===== Dropdown Panel ===== */
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  width: 100%;
  background: #fdfdfd;           /* soft milk */
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 100;
}

/* ===== Search Input ===== */
#search {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #f5f5f0;
  border-bottom: 1px solid #e6e6e0;
}

/* ===== Option Items ===== */
.option-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.2s ease;
}

.option-item:hover {
  background: #f2f2ec;
}

/* Hide radio buttons */
.option-item input {
  display: none;
}

/* ===== Scrollbar (optional luxury look) ===== */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #d8d8d0;
  border-radius: 10px;
}

















