* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00796b;
  --secondary-color: #f9a825;
  --accent-color: #ff7043;
  --text-dark: #263238;
  --text-light: #546e7a;
  --bg-light: #eceff1;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path d="M0,100 C250,150 750,50 1000,100 L1000,200 L0,200 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-width: 180px;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-image {
  width: 100%;
  height: 250px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-light);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 30px;
}

.contact-text {
  color: var(--text-dark);
}

.contact-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-links li {
    display: inline-flex;
    align-items: center;
  }
  .nav-links a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    align-self: center;
  }

  .mobile-menu-btn {
    display: none;
  }

  .cta-buttons {
    flex-direction: row;
/* Push Book Now button to the right */
  .nav-links li:last-child {
    margin-left: auto;
  }
  }
/* Mobile Header Adjustments */
  .nav {
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
  }
  .logo img {
    height: 50px;
  }
}

@media (max-width: 767px) {
  /* Mobile header adjustments */
  .header {
    padding: 0.75rem 1rem;
  }
  .nav-links {
    display: flex !important;
    justify-content: right;
    width: 100%;
    margin-top: 0.5rem;
  }
  /* Only show Book Now button */
  .nav-links li {
    display: none;
  }
  .nav-links li:last-child {
    display: block;
  }
  .nav-links li:last-child .btn-primary {
    display: block;
    width: 90%;
    max-width: 300px;
    padding: 1rem;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 8px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Booking Widget */
.booking-widget {
  background: var(--gradient);
  padding: 3rem 0;
  text-align: center;
  color: var(--white);
}

.booking-widget h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-widget p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jane-embed {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  display: inline-block;
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

.jane-embed iframe {
  border: none;
  border-radius: 5px;
}
/* Team Section Styles */
.section#team {
  padding: 6rem 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  text-align: center;
}
.team-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--primary-color);
}
.team-name {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.team-role {
  font-size: 1rem;
  color: var(--primary-color);
  margin: 0.25rem 0 1rem 0;
}
.team-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}
/* Global Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-color);
}
.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--accent-color);
}

/* Navigation Links */
.nav-links a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section Text */
.hero-content h1,
.hero-subtitle,
.hero-description {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section Headings */
.section-title {
  color: var(--text-dark);
}
.section-subtitle {
  color: var(--secondary-color);
}
/* Advanced Layout Enhancements */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.mobile-menu-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
.hero-content h1 {
  margin-top: 50px;
  font-size: 1.7rem;
}
.section {
  padding: 4rem 0;
}
.section-alt {
  background: var(--bg-light);
}
.trust-indicators .trust-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.trust-indicators .trust-item:hover {
  transform: translateY(-5px);
}
.booking-widget {
  padding: 4rem 0;
  background: #a0e5cf;
  color: black;
  text-align: center;
}
.booking-widget h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.booking-widget p {
  margin-bottom: 1.5rem;
}
.booking-widget .btn {
  margin: 0 0.5rem;
}