/* Base Styles */
:root {
  --primary: #1769aa;
  --primary-dark: #11507a;
  --secondary: #f2f2f2;
  --secondary-dark: #e6e6e6;
  --accent: #00c853;
  --accent-dark: #00a844;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--secondary);
  color: var(--gray-800);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-icon {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu {
  display: none;
  background-color: var(--white);
  width: 100%;
  padding: 0 1rem 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-600);
}

.mobile-nav-link.active {
  color: var(--primary);
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, var(--primary), #1e88e5);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.divider {
  width: 6rem;
  height: 2px;
  background-color: var(--accent);
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: var(--white);
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-subtitle {
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.about-list {
  margin-bottom: 1.5rem;
}

.list-title {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.bullet-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: var(--gray-600);
}

.bullet-list li {
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  background-color: var(--secondary);
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  stroke: var(--primary);
  fill: none;
}

.service-title {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-text {
  color: var(--gray-600);
}

/* Booking Section */
.booking {
  background-color: var(--white);
  padding: 4rem 0;
}

.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(23, 105, 170, 0.2);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Location Section */
.location {
  background-color: var(--secondary);
  padding: 4rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.location-info {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-subtitle {
  color: var(--primary);
  margin-bottom: 1rem;
}

.address {
  font-style: normal;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.address-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  stroke: var(--primary);
  fill: none;
}

.location-map {
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact {
  background-color: var(--white);
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--secondary);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card-title {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.contact-card-text {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--primary);
  fill: none;
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-text {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
}

.footer-address {
  color: var(--secondary);
  font-style: normal;
}

.footer-address p {
  margin-bottom: 0.5rem;
}

.footer-hours {
  color: var(--secondary);
  list-style: none;
}

.footer-hours li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--secondary);
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  display: none;
  z-index: 90;
}

.book-now-btn {
  bottom: 2rem;
  right: 2rem;
}

.scroll-top-btn {
  bottom: 2rem;
  left: 2rem;
}

.floating-btn-inner {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
  background-color: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.floating-btn-inner:hover {
  transform: scale(1.1);
  background-color: var(--accent-dark);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.scroll-top-btn .floating-btn-inner {
  background-color: var(--primary);
}

.scroll-top-btn .floating-btn-inner:hover {
  background-color: var(--primary-dark);
}

.floating-btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--white);
  fill: none;
}

.floating-btn-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Animations */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile Menu Toggle */
@media (max-width: 767px) {
  .mobile-menu-button {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu.active {
    display: block;
  }
}