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

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@400;600;700;800;900&display=swap');

/* Base */
body {
  line-height: 1.6;
  color: #333;
  background: linear-gradient(180deg, #fef5f8 0%, #f0f9ff 50%, #fef5f8 100%);
  font-family: 'Poppins', sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 130px;
  width: auto;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #555;
  font-weight: 700;
  font-size: 19px;
  transition: color 0.3s;
  text-transform: lowercase;
}

nav a:hover {
  color: #40E0D0;
}

.btn-book {
  padding: 14px 35px;
  background: linear-gradient(135deg, #7FFFD4, #40E0D0);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  font-size: 17px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(64, 224, 208, 0.4);
}

.btn-call {
  padding: 14px 35px;
  background: #fff;
  color: #40E0D0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  font-size: 17px;
  border: 2px solid #40E0D0;
  transition: all 0.3s;
}

.btn-call:hover {
  background: #40E0D0;
  color: #fff;
}

/* Hero - Left Aligned Like SunnyHome */
#hero {
  min-height: 550px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-content {
  max-width: 650px;
}

#hero h1 {
  font-size: 62px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 18px 45px;
  background: linear-gradient(135deg, #7FFFD4, #40E0D0);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  padding: 18px 45px;
  background: rgba(255, 255, 255, 0.95);
  color: #40E0D0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #fff;
}

/* Special Deals Section */
#deals {
  padding: 60px 40px;
  background: linear-gradient(135deg, #50C9E6 0%, #40E0D0 100%);
  text-align: center;
}

#deals h2 {
  font-size: 48px;
  margin-bottom: 45px;
  font-family: 'Pacifico', cursive;
  color: #fff;
  font-weight: 400;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

.deal-card {
  background: #fff;
  padding: 45px 40px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  border: 3px solid transparent;
}

.deal-card:hover {
  transform: translateY(-5px);
  border-color: #7FFFD4;
}

.deal-amount {
  font-size: 56px;
  font-weight: 900;
  color: #FF69B4;
  margin-bottom: 18px;
}

.deal-card h3 {
  font-size: 26px;
  color: #333;
  font-weight: 900;
  margin-bottom: 18px;
}

.deal-card p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  font-weight: 500;
}

/* Sections */
section {
  padding: 55px 40px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 50px;
  margin-bottom: 40px;
  font-family: 'Pacifico', cursive;
  color: #FF69B4;
  font-weight: 400;
  text-align: center;
}

section h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #7FFFD4, #FFB6D9);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* About - White Background */
#about {
  background: #fff;
}

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

.about-text h2 {
  text-align: left;
  margin-bottom: 30px;
}

.about-text h2::after {
  margin: 15px 0 0;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Services - Light Gradient Background */
#services {
  background: linear-gradient(135deg, rgba(255, 182, 217, 0.06) 0%, rgba(127, 255, 212, 0.06) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  height: 400px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(127, 255, 212, 0.25);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  padding: 40px 30px;
  color: #fff;
}

.service-card h3 {
  font-size: 28px;
  color: #7FFFD4;
  font-weight: 900;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 500;
}

/* Areas - White Background */
#areas {
  background: #fff;
}

.areas-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.areas-list h3 {
  font-size: 28px;
  color: #333;
  font-weight: 900;
  margin-bottom: 25px;
}

.areas-list ul {
  list-style: none;
}

.areas-list li {
  font-size: 19px;
  color: #555;
  padding: 13px 0;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
}

.areas-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
}

/* Reviews - Light Gradient Background */
#reviews {
  background: linear-gradient(135deg, rgba(255, 182, 217, 0.06) 0%, rgba(127, 255, 212, 0.06) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #7FFFD4;
}

.stars {
  font-size: 20px;
  margin-bottom: 15px;
  color: #FFD700;
}

.review-text {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
}

.review-author {
  font-size: 16px;
  color: #40E0D0;
  font-weight: 700;
}

/* Contact - White Background */
#contact {
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
  padding: 45px 40px;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

input,
select,
textarea {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all 0.3s;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #7FFFD4;
  box-shadow: 0 0 0 3px rgba(127, 255, 212, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  padding: 18px;
  background: linear-gradient(135deg, #FFB6D9, #FF69B4);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
  transition: all 0.3s;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

/* Final CTA Section */
#final-cta {
  padding: 70px 40px;
  background: linear-gradient(135deg, #50C9E6 0%, #40E0D0 100%);
  text-align: center;
  margin: 0;
  max-width: none;
  width: 100%;
}

#final-cta h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

#final-cta h2::after {
  display: none;
}

#final-cta p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 35px;
  font-weight: 600;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 18px 50px;
  background: #FFD700;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  padding: 18px 50px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
}

.btn-cta-secondary:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 50px 40px 20px;
  border-top: 5px solid;
  border-image: linear-gradient(90deg, #7FFFD4, #FFB6D9) 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 35px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-family: 'Pacifico', cursive;
  background: linear-gradient(135deg, #7FFFD4, #FFB6D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #7FFFD4;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #bdc3c7;
  font-weight: 500;
}

.footer-section a {
  color: #FFB6D9;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.footer-section a:hover {
  color: #7FFFD4;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 2px solid rgba(127, 255, 212, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 14px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .areas-content {
    grid-template-columns: 1fr;
  }
  
  .about-text h2 {
    text-align: center;
  }
  
  .about-text h2::after {
    margin: 15px auto 0;
  }

  .header-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
  }

  .logo {
    height: 80px;
  }

  nav {
    gap: 25px;
  }

  nav a {
    font-size: 16px;
  }

  #hero {
    padding: 0 40px;
    min-height: 450px;
  }

  #hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    width: 100%;
  }

  section {
    padding: 50px 25px;
  }

  section h2 {
    font-size: 36px;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  form {
    padding: 35px 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 70px;
  }

  #hero h1 {
    font-size: 34px;
  }

  section h2 {
    font-size: 30px;
  }
}
