/* Brandon Grotesque Font Face Declarations */
@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon Grotesque/Brandon_reg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon Grotesque/Brandon_med.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/Brandon Grotesque/Brandon_bld.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Logo Text Class */
.logo-text {
    font-family: 'Brandon Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #0d9488;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo-text:hover {
    color: #0f766e;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
        letter-spacing: 0.2px;
    }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: #0d9488;
}

/* Navigation - Taller for logo breathing room */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(13, 148, 136, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.logo-text {
    font-family: 'Brandon Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0d9488;
    letter-spacing: 0.5px;
}

.logo:hover .logo-text {
    color: #0f766e;
}

.nav-links {
    display: none;
    gap: 32px;
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.nav-links a:hover {
    color: #0d9488;
}

/* Mobile Menu */
.mobile-menu {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #374151;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: #0d9488;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        border: none;
    }
    
    .nav-links a {
        padding: 0;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }
    
    .nav-container {
        min-height: 50px;
    }
    
    .logo-icon {
        height: 28px;
    }
    
    .logo-text {
        font-size: 16px;
        letter-spacing: 0.3px;
    }
    
    .nav-links {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(13, 148, 136, 0.2);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links a {
        color: #374151;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links a:hover {
        color: #0d9488;
        background: #f0fdfa;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .logo img {
        height: 38px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}
/* Mobile Menu */
.mobile-menu {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #374151;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: #0d9488;
}

/* Mobile menu dropdown fix */
@media (max-width: 767px) {
    .nav-links {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(13, 148, 136, 0.2);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links a {
        color: #374151;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links a:hover {
        color: #0d9488;
        background: #f0fdfa;
    }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-gradient {
  background: linear-gradient(135deg, #5eead4 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
  z-index: 10;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Ensure video covers properly on different aspect ratios */
@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: auto;
    height: 100%;
  }
}

/* Availability Section */
.availability {
  padding: 128px 0;
  background: white;
}

.availability-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.availability-header {
  text-align: center;
  margin-bottom: 80px;
}

.availability-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
}

.availability-divider {
  width: 128px;
  height: 4px;
  background: #0d9488;
  border-radius: 2px;
  margin: 0 auto 24px;
}

.availability-subtitle {
  font-size: 24px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.weeks-container {
  display: grid;
  gap: 48px;
  margin-bottom: 64px;
}

.week-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.week-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.week-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.day-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.day-item.available {
  background: linear-gradient(135deg, #f0fdfa 0%, #eff6ff 100%);
  border-color: #0d9488;
}

.day-item.available:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
  border-color: #0f766e;
}

.day-item.booked {
  background: #fee2e2;
  border-color: #dc2626;
  opacity: 0.7;
}

.day-item.off {
  background: #f3f4f6;
  border-color: #9ca3af;
  opacity: 0.6;
}

.day-header {
  margin-bottom: 12px;
}

.day-date {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  display: block;
}

.day-time {
  font-size: 14px;
  font-weight: 500;
  color: #0d9488;
  margin-bottom: 8px;
  line-height: 1.4;
}

.day-location {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.day-status {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

.day-item.booked .day-status {
  background: #dc2626;
  color: white;
}

.day-item.off .day-status {
  background: #6b7280;
  color: white;
}

.availability-cta {
  text-align: center;
}

.availability-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  color: white;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.availability-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.4);
}

/* Responsive adjustments for availability section */
@media (max-width: 768px) {
  .availability {
    padding: 80px 0;
  }
  
  .availability-container {
    padding: 0 24px;
  }
  
  .availability-header {
    margin-bottom: 48px;
  }
  
  .weeks-container {
    gap: 32px;
    margin-bottom: 48px;
  }
  
  .week-card {
    padding: 24px;
  }
  
  .week-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .days-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .day-item {
    padding: 16px;
  }
  
  .availability-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .days-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .days-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

/* About Section */
.about {
  padding: 128px 0;
  background: white;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: #0d9488;
  border-radius: 2px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-text p {
  font-size: 20px;
  color: #4b5563;
  line-height: 1.7;
  transition: transform 0.3s ease;
}

.about-text p:hover {
  transform: translateX(8px);
}

.about-text strong {
  color: #1f2937;
}

.about-image-container {
  position: relative;
}

.about-image-card {
  background: linear-gradient(135deg, #f0fdfa 0%, #eff6ff 100%);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.5s ease;
}

.about-image-card:hover {
  transform: scale(1.02);
}

.about-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 32px;
  transition: transform 0.7s ease;
}

.about-image-card:hover .about-image {
  transform: rotate(1deg);
}

.philosophy-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-image-card:hover .philosophy-card {
  transform: translateY(8px);
}

.philosophy-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

.philosophy-text {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 128px 0;
  background: #f9fafb;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
}

.services-divider {
  width: 128px;
  height: 4px;
  background: #0d9488;
  border-radius: 2px;
  margin: 0 auto 24px;
}

.services-subtitle {
  font-size: 24px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-highlight {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  animation: pulse 2s infinite;
}

.service-content {
  position: relative;
  z-index: 10;
}

.service-title {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #0d9488;
}

.service-subtitle {
  color: #0d9488;
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 18px;
}

.service-description {
  color: #4b5563;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

.price-list {
  margin-bottom: 32px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: #0d9488;
}

.price-duration {
  font-weight: 500;
  color: #374151;
  font-size: 18px;
  transition: color 0.2s ease;
}

.price-item:hover .price-duration {
  color: #1f2937;
}

.price-amount {
  font-weight: 700;
  color: #0d9488;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.price-item:hover .price-amount {
  transform: scale(1.1);
}

.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-btn-primary {
  background: #0d9488;
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.service-btn-primary:hover {
  background: #0f766e;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.service-btn-secondary {
  border: 2px solid #0d9488;
  color: #0d9488;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.service-btn-secondary:hover {
  background: #f0fdfa;
  transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
  padding: 128px 0;
  background: white;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 64px;
}

.testimonials-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.star {
  width: 32px;
  height: 32px;
  color: #fbbf24;
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.1);
}

.testimonial-card {
  background: linear-gradient(135deg, #f9fafb 0%, #f0fdfa 100%);
  border-radius: 24px;
  padding: 48px 64px;
  position: relative;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: url('../img/sarlandmuscleslight.png') center/contain no-repeat;
}

.testimonial-content {
  position: relative;
  z-index: 10;
}

.testimonial-quote {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #374151;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

.testimonial-quote:hover {
  transform: scale(1.02);
}

.testimonial-author {
  font-size: 20px;
  font-weight: 600;
  color: #0d9488;
  transition: transform 0.2s ease;
  display: inline-block;
}

.testimonial-author:hover {
  transform: scale(1.1);
}

.review-platform {
  font-size: 16px;
  color: #6b7280;
  font-weight: 400;
  font-style: normal;
}

/* Google Reviews CTA */
.google-reviews-cta {
  margin-top: 48px;
  text-align: center;
}

.reviews-text {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 24px;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4285f4;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.google-reviews-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
  color: white;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.25);
}

.dot.active {
  background: #0d9488;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  padding: 128px 0;
  background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
  color: white;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-subtitle {
  font-size: 20px;
  margin-bottom: 48px;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.contact-cta {
  background: white;
  color: #0d9488;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact-cta:hover {
  background: #f9fafb;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* Corporate Section */
.corporate {
  padding: 128px 0;
  background: #f8fafc;
}

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

.corporate-header {
  text-align: center;
  margin-bottom: 80px;
}

.corporate-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
}

.corporate-divider {
  width: 128px;
  height: 4px;
  background: #0d9488;
  border-radius: 2px;
  margin: 0 auto 24px;
}

.corporate-subtitle {
  font-size: 24px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.corporate-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.corporate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.corporate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.corporate-card:hover::before {
  opacity: 1;
}

.corporate-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.corporate-service-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.corporate-card:hover .corporate-service-title {
  color: #0d9488;
}

.corporate-description {
  color: #4b5563;
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 1.7;
}

.corporate-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: #f0fdfa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: scale(1.05);
  background: #e0f2fe;
}

.benefit-item i {
  font-size: 24px;
  color: #0d9488;
  transition: transform 0.3s ease;
}

.benefit-item:hover i {
  transform: scale(1.2);
}

.benefit-item span {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.corporate-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corporate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.corporate-btn-primary {
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.corporate-btn-primary:hover {
  background: linear-gradient(135deg, #0f766e 0%, #2563eb 100%);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
  color: white;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 32px 0;
  text-align: center;
}

.footer-text {
  color: #9ca3af;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(13, 148, 136, 0.4);
  animation: none;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 24px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Form Styles */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: white;
  border-radius: 24px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: #374151;
  transform: scale(1.1);
}

.modal-title {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
  text-align: center;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: #0d9488;
  color: white;
}

.progress-step.inactive {
  background: #e5e7eb;
  color: #6b7280;
}

.progress-line {
  width: 64px;
  height: 4px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.progress-line.active {
  background: #0d9488;
}

.progress-line.inactive {
  background: #e5e7eb;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group:hover {
  transform: scale(1.02);
}

.form-buttons {
  display: flex;
  gap: 12px;
}

.form-btn {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.form-btn-primary {
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.form-btn-primary:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.form-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-btn-secondary {
  border: 2px solid #0d9488;
  color: #0d9488;
  background: transparent;
}

.form-btn-secondary:hover {
  background: #f0fdfa;
  transform: scale(1.02);
}

.form-note {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
  margin-top: 16px;
}

/* Service Selection Modal Styles */
.service-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.service-option {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.service-option:hover {
  border-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: white;
  font-size: 20px;
}

.service-info {
  flex: 1;
}

.service-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.service-info p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.service-option i.fa-chevron-right {
  color: #9ca3af;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service-option:hover i.fa-chevron-right {
  transform: translateX(4px);
  color: #0d9488;
}

/* Booking Method Modal Styles */
.booking-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.booking-method {
  display: flex;
  align-items: center;
  padding: 24px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.booking-method:hover {
  border-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0d9488 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 24px;
}

.method-info {
  flex: 1;
}

.method-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.method-info p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.method-highlight {
  display: inline-block;
  background: #f0fdfa;
  color: #0d9488;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #0d9488;
}

.booking-method i.fa-chevron-right {
  color: #9ca3af;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.booking-method:hover i.fa-chevron-right {
  transform: translateX(4px);
  color: #0d9488;
}

/* Modal Subtitle */
.modal-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 16px;
}

/* Hidden class */
.hidden {
  display: none;
}
