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

:root {
  /* Color Palette */
  --primary: #14b8a6; /* A slightly richer, more premium teal/turquoise with better readability */
  --primary-hover: #0d9488;
  --white: #ffffff;
  --brand-black: #0f172a; /* Soft slate dark instead of pure harsh pitch black */
  --text-on-dark: #f8fafc;
  --text-on-light: #0f172a; /* High-contrast soft slate text */
  --bg-light: #fafaf9; /* Warm stone-white/comfort off-white background */
  --bg-light-accent: #f1f5f9; /* Soft cool grey-blue accent */
  --gray-muted: #475569; /* Dark slate-grey for high-readability body copy & muted elements (WCAG AA Compliant) */
  --gray-dark: #1e293b;
  --border-color: rgba(20, 184, 166, 0.2);

  /* Typography */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-on-light);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  font-size: 1.3rem;
}

/* Sections */
section {
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Alternating Backgrounds */
.section-dark {
  background-color: var(--brand-black);
  color: var(--text-on-dark);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-on-light);
}

.section-accent {
  background-color: var(--bg-light-accent);
  color: var(--text-on-light);
}

/* Utility Grid/Flex */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--brand-black);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 224, 208, 0.2);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 15px 40px;
  background-color: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

.navbar .logo {
  height: 40px;
  transition: var(--transition-smooth);
}

.navbar .logo img {
  height: 100%;
  object-fit: contain;
}

/* Logo toggling */
.navbar .logo-dark {
  display: none !important;
}
.navbar .logo-light {
  display: block !important;
}

.navbar.scrolled .logo-dark {
  display: block !important;
}
.navbar.scrolled .logo-light {
  display: none !important;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-links a {
  color: var(--text-on-light);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary) !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-nav-toggle span {
  background-color: var(--brand-black);
}

/* Hamburger state when menu is active */
.mobile-nav-toggle.menu-active span {
  background-color: var(--white) !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 0 20px;
  overflow: hidden;
}

/* Hero Dark Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(3, 2, 2, 0.7) 0%,
    rgba(3, 2, 2, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tagline {
  color: var(--primary);
  font-size: 1.125rem; /* 18px */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-muted);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Cards (Services) */
.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.4);
}

.section-dark .card {
  background-color: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-dark .card:hover {
  border-color: rgba(64, 224, 208, 0.4);
  box-shadow: 0 15px 35px rgba(64, 224, 208, 0.25);
}

.card-img-container {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img-container img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 2, 2, 0.2);
  transition: var(--transition-smooth);
}

.card:hover .card-overlay {
  background: rgba(64, 224, 208, 0.15);
}

.card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: inherit;
}

.card-desc {
  color: var(--gray-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.section-dark .card-desc {
  color: rgba(255, 255, 255, 0.6);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-dark .card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-price {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

.card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-muted);
}

.section-dark .card-price span {
  color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Two-column text/photo styles (About) */
.about-image {
  border-radius: 8px;
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray-muted);
}

.section-dark .about-text p {
  color: rgba(255, 255, 255, 0.75);
}

.features-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.features-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

/* Testimonial Section */
.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.quote-icon {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: var(--font-headings);
  font-weight: 600;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Contact/Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.section-dark .contact-grid {
  background-color: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container {
  height: 500px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-panel {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-item-text h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--gray-muted);
}

.section-dark .contact-item-text h4 {
  color: rgba(255, 255, 255, 0.5);
}

.contact-item-text p {
  font-size: 1rem;
  font-weight: 500;
}

.contact-item-text a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item-text a:hover {
  color: var(--primary);
}

/* Footer Section */
.footer {
  background-color: var(--brand-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  height: 45px;
  margin-bottom: 24px;
}

.footer-brand .logo img {
  height: 100%;
}

.footer-brand p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--brand-black);
  transform: translateY(-3px);
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-family: var(--font-headings);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-contact-details p {
  display: flex;
  gap: 10px;
}

.footer-contact-details a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-details a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  section {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--brand-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(64, 224, 208, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 320px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  .contact-info-panel {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Dropdown menu */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--brand-black);
  border: 1px solid rgba(64, 224, 208, 0.2);
  border-radius: 4px;
  list-style: none;
  display: none;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-headings);
  font-weight: 500;
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-menu a:hover {
  background-color: rgba(64, 224, 208, 0.1);
  color: var(--primary) !important;
}

/* Scrolled navbar adjustments */
.navbar.scrolled .dropdown-menu {
  background-color: var(--white);
  border-color: rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .dropdown-menu a {
  color: var(--text-on-light);
}

.navbar.scrolled .dropdown-menu a:hover {
  background-color: var(--bg-light-accent);
}

/* Highlights Section */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.15);
  border-color: var(--primary);
}

.highlight-img-container {
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-light-accent);
}

.highlight-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-img-container img {
  transform: scale(1.08);
}

.highlight-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.highlight-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.5;
}

/* Google Reviews Card */
.review-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.08);
}

/* Spaces Grid (2 Columns, Vertical Poster Visuals) */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.spaces-grid .card {
  background-color: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spaces-grid .card:hover {
  border-color: rgba(64, 224, 208, 0.4);
  box-shadow: 0 15px 35px rgba(64, 224, 208, 0.25);
}

.spaces-grid .card-img-container {
  height: 650px; /* Tall portrait height for posters */
  background-color: #0c111d; /* Dark matching background for contain box */
  overflow: hidden;
}

.spaces-grid .card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Displays full poster without cropping */
  transition: var(--transition-smooth);
}

.spaces-grid .card:hover .card-img-container img {
  transform: scale(1.03); /* Subtle scale for contain */
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .spaces-grid .card-img-container {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .spaces-grid .card-img-container {
    height: 480px;
  }
}
