:root {
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #ff6b6b;
  --dark: #2c3e50;
  --light: #f9fbff;
}

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

/* Body */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.nav-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #667eea;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* CTA Button with Glow + Heartbeat */
.cta-button {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: glowPulse 2s infinite, heartbeat 1.5s infinite;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(255, 100, 50, 0.6), 0 0 20px rgba(255, 100, 50, 0.4); }
  50% { box-shadow: 0 0 25px rgba(255, 100, 50, 1), 0 0 50px rgba(255, 50, 0, 0.8); }
  100% { box-shadow: 0 0 10px rgba(255, 100, 50, 0.6), 0 0 20px rgba(255, 100, 50, 0.4); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.05); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.05); }
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #667eea;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Services */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Booking */
.booking-section {
  position: relative;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}
.booking-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.booking-content {
  position: relative;
  z-index: 10;
}
.booking-form {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.booking-success {
  display: none;
  margin-top: 20px;
  background: #4ade80;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.testimonial-card {
  background: #f9fbff;
  border-left: 4px solid #6c63ff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}
.testimonial-card .author {
  font-weight: bold;
  color: #4a47a3;
  display: block;
  text-align: right;
}

/* FAQs */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f9fbff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.faq-item h3 {
  color: #4a47a3;
  margin-bottom: 10px;
  font-size: 18px;
}
.faq-item p {
  color: #444;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 20px;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.footer h3, .footer h4 {
  color: #f1c40f;
  margin-bottom: 10px;
}
.footer a {
  color: #1abc9c;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Accessible focus style */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .cta-button {
    animation: glowPulse 3s infinite;
  }
}

.faq-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 12px 16px;
}

.arrow {
  transition: transform 0.3s;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.blog-section {
  padding: 100px 20px 60px 20px;
  background: #f9fbff;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #667eea;
  font-weight: 700;
  letter-spacing: -1px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(103,126,234,0.10), 0 1.5px 6px rgba(103,126,234,0.09);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.23s, transform 0.23s;
  min-height: 230px;
}

.blog-card:hover {
  box-shadow: 0 8px 30px 0 rgba(118,75,162,0.16), 0 2px 8px rgba(118,75,162,0.10);
  transform: translateY(-4px) scale(1.03);
}

.blog-title {
  margin: 0 0 9px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
}

.blog-excerpt {
  margin-bottom: 22px;
  color: #444;
  font-size: 1.1rem;
  flex-grow: 1;
}

.cta-button {
  margin-top: auto;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 13px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(103,126,234,0.09);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
}

.cta-button:hover, .cta-button:focus {
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
  box-shadow: 0 8px 28px rgba(103,126,234,0.18);
  transform: translateY(-2px) scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-section { padding: 70px 10px 30px 10px; }
  .section-title { font-size: 1.45rem; }
  .blog-card { padding: 22px 12px 18px 12px; }
}
.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  margin-bottom: 18px;
  display: block;
}

  .booking-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
        }

        .booking-form {
            background: white;
            color: #333;
            padding: 50px;
            border-radius: 20px;
            max-width: 600px;
            margin: 40px auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
.google-calendar-btn {
            background: #4285f4;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 10px;
            transition: background 0.3s ease;
        }

        .google-calendar-btn:hover {
            background: #3367d6;
        }
