/* CSS Variables for easier theme management */
:root {
  --primary-color: #2F4F4F; /* Dark Slate Gray / Deep Forest Green */
  --secondary-color: #5F9EA0; /* Cadet Blue / Muted Teal Green */
  --accent-color: #D2B48C; /* Tan / Earthy Gold */
  --light-bg: #F8F8F8; /* Very Light Gray */
  --dark-text: #333333; /* Dark Gray for body text */
  --light-text: #FFFFFF; /* Pure White Text */
  --card-bg: #FFFFFF; /* White Card Background */
  --shadow-light: rgba(0, 0, 0, 0.08); /* Lighter shadow */
  --shadow-medium: rgba(0, 0, 0, 0.12); /* Slightly darker shadow */
  --border-radius: 12px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px var(--shadow-light);
}

nav .logo {
  color: var(--light-text);
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: center;
}

nav ul li a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-speed) ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width var(--transition-speed) ease-out;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Language Switcher Button Specific Styles */
.lang-switch-btn {
    background-color: var(--secondary-color);
    color: var(--light-text) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: background-color var(--transition-speed) ease;
    text-decoration: none;
    white-space: nowrap;
}

.lang-switch-btn:hover {
    background-color: #518b8e;
    color: var(--light-text) !important;
}

.lang-switch-btn::after {
    display: none;
}

/* Hamburger Menu Icon (for mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--light-text);
  transition: all var(--transition-speed) ease;
}

/* Header / Hero Section */
header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1516466723877-e4ec1d736c8a?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

header > div {
  z-index: 2;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px var(--shadow-light);
}

header p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Call to Action Button (Header & main CTA) */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-text);
  padding: 1.1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #c7a47b;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.section {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 1rem 2rem;
}

h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 0.8rem auto 0;
  border-radius: 4px;
}

/* Grid Layout for Services, Packages, How It Works */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

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

#services .card .details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

#services .card .details-grid h4 {
    grid-column: span 2;
}

#services .card .details-grid ul {
    list-style: none;
    padding-left: 0;
}

#services .card .details-grid ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-text);
    line-height: 1.3;
}

#services .card .details-grid ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

#services .card ul li strong {
    color: var(--primary-color);
}

/* Specific centering for packages grid if needed, though general grid above might suffice */
#packages .grid {
    justify-items: center;
}

.card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.card h3 {
  font-family: 'Merriweather', serif;
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.card h3 i {
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.card p {
  font-size: 1.05rem;
  color: var(--dark-text);
  flex-grow: 1;
}

/* Specific styling for paragraph under package titles */
.card .package-description {
  font-weight: 400; /* Removed bolding as requested */
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.card ul {
  list-style: none; /* Remove default list style */
  padding-left: 0;
  margin-top: 1rem;
}

.card ul li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem; /* Space for the custom bullet */
  line-height: 1.3;
}

.card ul li::before {
  content: '✓'; /* Custom checkmark icon */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color); /* Color of the checkmark */
  font-weight: 700;
  font-size: 1.1em; /* Slightly larger checkmark */
}

/* Detailed service list styling */
.card h4 {
    font-family: 'Inter', sans-serif; /* Keep Inter for subheadings */
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}
.card ul li strong {
    color: var(--secondary-color); /* Highlight the category */
    font-weight: 600;
}


/* Testimonials Section */
#testimonials .grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.testimonial {
  background: var(--card-bg);
  padding: 2rem;
  border-left: 5px solid var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px var(--shadow-light);
  font-style: italic;
  color: var(--dark-text);
  font-size: 1.1rem;
}

.testimonial em {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 500;
  color: var(--primary-color);
}

/* How It Works Section - Card specific overrides */
#how-it-works .card {
  align-items: center;
  text-align: center;
}

#how-it-works .card h3 {
  justify-content: center;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 5rem auto;
}

.contact-form-section h2 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.contact-form-section h2::after {
    background-color: var(--accent-color);
}

.contact-form-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--light-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background-color: var(--card-bg);
    color: var(--dark-text);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(95, 158, 160, 0.2);
    outline: none;
}

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

.form-submit-button {
    background-color: var(--accent-color);
    color: var(--dark-text);
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-submit-button:hover {
    background-color: #c7a47b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* FAQ Section */
.faq-item {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--shadow-light);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.faq-item:hover {
  background-color: #f0f4f3;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform var(--transition-speed) ease;
}

.faq-answer {
  font-size: 1rem;
  color: var(--dark-text);
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

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

/* Footer */
footer {
  text-align: center;
  font-size: 0.95rem;
  padding: 2.5rem 1rem;
  color: #777;
  background-color: #e9eceb;
  margin-top: 4rem;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* New Call to Action Section Styles */
.area-cta {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-medium);
    max-width: 900px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.area-cta p {
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
}

.area-cta .phone-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    white-space: nowrap;
}

.area-cta .phone-number:hover {
    color: #c7a47b;
}

.area-cta .small-print {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 0.8rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
  #services .card .details-grid {
      grid-template-columns: 1fr;
  }
  #services .card .details-grid h4 {
      grid-column: span 1;
  }
}
@media (max-width: 900px) {
  .section {
    margin: 3rem auto;
    padding: 1rem 1.5rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .card {
    padding: 1.5rem;
  }
  .card h3 {
    font-size: 1.4rem;
  }
  .card p {
    font-size: 1rem;
  }
  .testimonial {
    padding: 1.5rem;
    font-size: 1rem;
  }
  .contact-form-section {
    padding: 2.5rem 1.5rem;
  }
  .contact-form-section h2 {
    font-size: 2rem;
  }
  .contact-form-section p {
    font-size: 1.1rem;
  }
  .form-submit-button {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
  }
  .area-cta {
      padding: 2rem 1.5rem;
      font-size: 1.05rem;
      margin-top: 3rem;
      margin-bottom: 3rem;
  }
  .area-cta p {
      font-size: 1.15rem;
  }
  .area-cta .phone-number {
      font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem;
  }

  nav .logo {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    justify-content: flex-start;
  }

  nav ul.active {
    display: flex;
    max-height: 400px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  /* Specific adjustment for language button on mobile */
  nav ul li .lang-switch-btn {
      margin: 0.5rem auto;
      display: inline-block;
      padding: 0.7rem 1.2rem;
      font-size: 0.95rem;
  }

  header {
    height: 65vh;
  }
  header h1 {
    font-size: 2.5rem;
  }
  header p {
    font-size: 1.1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .section {
    padding: 1rem;
    margin: 2.5rem auto;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 1.2rem;
  }
  .card h3 {
    font-size: 1.3rem;
  }
  .card p {
    font-size: 0.95rem;
  }
  .testimonial {
    font-size: 0.95rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .form-group input, .form-group select, .form-group textarea {
      padding: 0.8rem;
      font-size: 0.95rem;
  }
  .form-group label {
      font-size: 1.0rem;
  }
  .form-submit-button {
      font-size: 1.1rem;
      padding: 1rem 2rem;
  }
  .area-cta {
      padding: 1.5rem;
      font-size: 0.95rem;
  }
  .area-cta p {
      font-size: 1.05rem;
  }
  .area-cta .phone-number {
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.8rem;
  }
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .card h3 {
    font-size: 1.2rem;
  }
  .card p {
    font-size: 0.9rem;
  }
  .contact-form-section h2 {
    font-size: 1.8rem;
  }
  .contact-form-section p {
    font-size: 1rem;
  }
  .form-submit-button {
    font-size: 0.9rem;
    padding: 0.9rem 1.8rem;
  }
  footer {
    font-size: 0.85rem;
  }
  .area-cta {
      font-size: 0.9rem;
  }
  .area-cta p {
      font-size: 1rem;
  }
  .area-cta .phone-number {
      font-size: 1.1rem;
  }
}

/* Social Icons Styling */
.social-icons {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem; /* Space between icons */
}

/* --- Social Icons Styling --- */
.social-icons a {
    color: #fff; /* Ensure they are visible, assuming a dark footer */
    font-size: 2.2rem; /* Adjust this value to make icons larger */
    margin: 0.8rem; /* Add some space between icons */
    transition: color 0.3s ease; /* Smooth hover effect */
    display: inline-block; /* Ensures margin works correctly */
}

.social-icons a:hover {
    color: var(--primary-color); /* Change color on hover, using your primary color variable */
}

/* Adjust for smaller screens if needed */
@media (max-width: 768px) {
    .social-icons a {
        font-size: 1.8rem; /* Slightly smaller on mobile for better fit */
        margin: 0.5rem;
    }
}