/* Variables for consistent theming */
:root {
  --primary: #2C3E50;     /* Dark blue from logo */
  --secondary: #E74C3C;   /* Red accent */
  --accent: #3498DB;      /* Blue accent */
  --light: #ECF0F1;       /* Light gray background */
  --dark: #2C3E50;        /* Dark text */
  --white: #FFFFFF;       /* White */
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 15px auto;
}

section {
  padding: 80px 0;
}

/* Header with centered navigation */
header {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.logo {
  margin-right: auto;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-right: 20px;
}

nav {
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  font-weight: 700;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 70%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
  padding: 130px 0 100px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.tagline {
  font-style: italic;
  margin: 20px 0;
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Services Section */
.services {
  background-color: var(--light);
}

.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* About Section */
.about {
  background: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Testimonials */
.testimonials {
  background: var(--light);
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 350px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-details i {
  margin-right: 10px;
  color: var(--secondary);
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Form validation styles */
.form-group input:invalid, 
.form-group textarea:invalid,
.form-group select:invalid {
  border-color: #ff4444;
}

.form-group input:valid, 
.form-group textarea:valid,
.form-group select:valid {
  border-color: #00C851;
}

/* Date input styling */
input[type="date"] {
  font-family: 'Nunito', sans-serif;
}

/* Select dropdown styling */
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .header-container {
    justify-content: space-between;
    height: 45px;
  }
  
  .logo-img {
    height: 35px;
  }
  
  nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
    margin: 0;
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  nav ul li a {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* Pricing & Booking Section */
.pricing {
  background: var(--light);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.package-selection h3, .booking-form h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.package-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.package-option {
  position: relative;
}

.package-option input[type="radio"] {
  display: none;
}

.package-option label {
  display: block;
  background: var(--white);
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-option input[type="radio"]:checked + label {
  border-color: var(--secondary);
  background: rgba(231, 76, 60, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-option h4 {
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  background: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.package-option ul {
  list-style: none;
  margin-top: 10px;
}

.package-option li {
  padding: 5px 0;
  position: relative;
  padding-left: 15px;
}

.package-option li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.extras-section {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.extras-section h4 {
  margin-bottom: 15px;
  color: var(--primary);
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.extra-option {
  display: flex;
  align-items: center;
}

.extra-option input[type="checkbox"] {
  margin-right: 8px;
}

.booking-form {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Responsive Design for Booking Section */
@media (max-width: 968px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .booking-form {
    position: static;
  }
  
  .extras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .package-option h4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .price {
    align-self: flex-start;
  }
}
/* Enhanced styles for booking form */
.package-option.selected label {
    border-color: var(--secondary);
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Loading state for buttons */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Header scroll effect */
header {
    transition: all 0.3s ease;
}

/* Form validation styles */
.form-group input:invalid, 
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #ff4444;
}

.form-group input:valid, 
.form-group textarea:valid,
.form-group select:valid {
    border-color: #00C851;
}

/* Extra option styling */
.extra-option {
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.extra-option:hover {
    background-color: rgba(44, 62, 80, 0.05);
}

.extra-option input[type="checkbox"]:checked + label {
    color: var(--secondary);
    font-weight: 600;
}

/* Date input styling */
input[type="date"] {
    font-family: 'Nunito', sans-serif;
}

/* Select dropdown styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}