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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1992d0 0%, #0f7bb8 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 100px;
  width: 200px;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: #f0f8ff;
  transform: translateY(-2px);
}

.nav-link.active {
  color: #f0f8ff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f0f8ff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1001;
  animation: fadeInDown 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: #1992d0;
  border-left-color: #1992d0;
  transform: translateX(5px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  background: rgba(25, 146, 208, 0.8);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  animation: slideUp 1s ease;
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text {
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 3;
}

.hero-nav button {
  background: rgba(25, 146, 208, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-nav button:hover {
  background: rgba(25, 146, 208, 1);
  transform: scale(1.1);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1992d0;
  margin-bottom: 20px;
  position: relative;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1992d0, #0f7bb8);
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: white;
}

.services-grid {
  display: grid;
  gap: 60px;
}

.service-category h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #1992d0;
  text-align: center;
  margin-bottom: 40px;
}

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

.service-item {
  text-align: center;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover img {
  transform: scale(1.1);
}

.service-item h4 {
  padding: 20px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #1992d0;
}

.bridal-service {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* Hours Section */
.hours-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1992d0 0%, #0f7bb8 100%);
  color: white;
}

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

.hours-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
}

.day {
  font-weight: 600;
}

.time {
  font-weight: 300;
}

.hours-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member img {
  /* width: 150px; */
  height: 200px;
  /* border-radius: 50%; */
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #1992d0;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #1992d0;
  margin-bottom: 10px;
}

.team-member p {
  color: #666;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #1992d0;
  font-family: "Playfair Display", serif;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  color: #1992d0;
  margin-bottom: 5px;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Info Section */
.contact-info-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1992d0, #0f7bb8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #1992d0;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.contact-details p {
  color: #555;
  line-height: 1.6;
}

.contact-details small {
  color: #777;
  font-size: 0.8rem;
  display: block;
  margin-top: 5px;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #1992d0;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.footer-logo img {
  height: 100px;
  width: 200px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-section p {
  line-height: 1.6;
  color: #bdc3c7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #1992d0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #bdc3c7;
}

.contact-info i {
  color: #1992d0;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
}

.service-areas {
  margin-top: 15px;
}

.service-areas p {
  font-size: 0.9rem;
  color: #95a5a6;
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: #1992d0;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-text {
    font-size: 1.1rem;
  }

  .slide-content {
    padding: 30px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hours-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 2rem;
  }

  .slide-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

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

/* Page-specific styles for other pages */
.page-header {
  background: linear-gradient(135deg, #1992d0 0%, #0f7bb8 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 80px;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.page-content {
  padding: 80px 0;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h3 {
  font-family: "Playfair Display", serif;
  color: #1992d0;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #1992d0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
  color: #1992d0;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.service-card .price {
  font-weight: 600;
  color: #1992d0;
  font-size: 1.1rem;
  margin-top: 10px;
}
.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}


.team-detail {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: start;
}

.team-detail img {
  width: 100%;
  border-radius: 15px;
  border: 4px solid #1992d0;
}

.team-info h3 {
  color: #1992d0;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.team-info p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.services-list {
  margin-top: 20px;
}

.services-list h4 {
  color: #1992d0;
  margin-bottom: 10px;
}

.services-list p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .team-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-title {
    font-size: 2.5rem;
  }

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


}

/* Main Container */
.employment-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px; /* Space between sections */
}

/* Card Styling for Sections */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color: #1992d0 ;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #1992d0 ;
    padding-bottom: 10px;
    display: inline-block; /* Makes border-bottom only as wide as text */
}

/* Job Listings Specific Styles */
.job-listing {
    background-color: #f8f8f8;
    border-left: 5px solid #1992d0 ;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.job-listing h3 {
    color: #333;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 8px;
}

.lease-space {
    background-color: #f8f8f8;
    border-left: 5px solid #ffc107; /* A contrasting accent color for lease space */
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lease-space h3 {
    color: #333;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 8px;
}

/* Contact Section */
.contact-email a {
    color: #1992d0 ;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #0d6efd; /* A slightly darker blue on hover */
    text-decoration: underline;
}

/* Owner Bio Section */
.owner-bio p {
    margin-bottom: 10px;
}

.owner-bio strong {
    color: #1992d0 ;
    font-weight: 700;
}

/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .employment-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .card {
        padding: 25px;
    }
    .card h2 {
        font-size: 1.8em;
    }
    .job-listing h3, .lease-space h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .employment-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .card {
        padding: 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
    .job-listing, .lease-space {
        padding: 12px 15px;
    }
    .contact-email a {
        font-size: 1em;
    }
}

/* Main Container */
.policies-container {
    max-width: 1300px; /* Slightly narrower for policy content */
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px; /* Space between policy sections */
}

/* Card Styling for Sections */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color: #1992d0 ;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #1992d0 ;
    padding-bottom: 10px;
    display: inline-block; /* Makes border-bottom only as wide as text */
}

.card p {
    font-size: 1.1em;
    line-height: 1.8;
}

.card p strong {
    color: #333; /* Emphasize key policy points */
}

/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policies-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .card {
        padding: 25px;
    }
    .card h2 {
        font-size: 1.8em;
    }
    .card p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .policies-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .card {
        padding: 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
}

/* Main Container for Packages */
.packages-container {
    max-width: 1400px; /* Wider container to fit multiple packages */
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid for packages */
    gap: 30px; /* Space between package cards */
}

/* Individual Package Card Styling */
.package-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    /* padding: 30px; Removed padding here to allow image to span full width */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column;
    justify-content: space-between; /* Pushes price/duration to bottom */
    overflow: hidden; /* Ensures image corners are rounded with card */
}

.package-card:hover {
    transform: translateY(-8px); /* More pronounced lift on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Content inside package card, separate from image */
.package-card h2,
.package-card .package-description,
.package-card .package-details,
.package-card .package-price-duration {
    padding-left: 30px; /* Add back padding to content */
    padding-right: 30px;
}

.package-card h2 {
    color: #1992d0 ;
    font-size: 1.8em;
    margin-top: 20px; /* Adjust margin after image */
    margin-bottom: 15px;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 8px;
    display: inline-block; /* Makes border-bottom only as wide as text */
}

.package-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333;
}

.package-details h3 {
    color: #333;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.package-details ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.package-details ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color); /* Subtle separator */
    font-size: 0.95em;
    color: var(--text-color);
}

.package-details ul li:last-child {
    border-bottom: none; /* No border on last item */
}

.package-price-duration {
    margin-top: 25px;
    text-align: right;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px; /* Add some bottom margin to the card content */
}

.package-price-duration .price {
    font-size: 2.2em;
    color: #1992d0 ;
    letter-spacing: -1px;
}

.package-price-duration .duration {
    font-size: 1.1em;
    color: #333;
    opacity: 0.8;
}

/* Package Benefits Section */
.benefits-section, .booking-info-section {
    grid-column: 1 / -1; /* Make these sections span full width */
    margin-top: 20px;
}

.benefits-section h2, .booking-info-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.benefit-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: #e9e9e9;
}

.benefit-item h3 {
    color: #1992d0 ;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95em;
}

/* Booking Information Section */
.booking-info-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.booking-info-section ul li {
    background-color: #f8f8f8;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #1992d0 ;
    border-radius: 8px;
    font-size: 1em;
}

.booking-info-section ul li strong {
    color: #333;
}

.booking-info-section .disclaimer {
    font-size: 0.9em;
    color: #777;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Style for package images */
.package-card .package-image {
    width: 100%; /* Make image fill the width of the card */
    height: 220px; /* Fixed height for consistency */
    object-fit: cover; /* Ensure images cover the area without distortion */
    border-radius: 10px 10px 0 0; /* Match card rounded corners at top */
    margin-bottom: 0; /* No margin here, padding added to content below */
    display: block;
}

/* Style for benefit icons */
.benefit-item .benefit-icon {
    width: 200px; /* Adjust size as needed */
    height: 150px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 40px 15px;
    }
    .header-content h1 {
        font-size: 2.5em;
    }
    .header-content p {
        font-size: 1em;
    }
    .packages-container {
        margin: 25px auto;
        padding: 0 15px;
        grid-template-columns: 1fr; /* Stack packages on smaller screens */
    }
    .package-card {
        padding: 0; /* Remove padding from card itself */
    }
    .package-card h2,
    .package-card .package-description,
    .package-card .package-details,
    .package-card .package-price-duration {
        padding-left: 25px; /* Adjust padding for content inside cards */
        padding-right: 25px;
    }
    .package-card h2 {
        font-size: 1.5em;
    }
    .package-price-duration .price {
        font-size: 1.8em;
    }
    .package-price-duration .duration {
        font-size: 1em;
    }
    .benefits-grid {
        grid-template-columns: 1fr; /* Stack benefits on small screens */
    }
    .booking-info-section ul li {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 30px 10px;
    }
    .header-content h1 {
        font-size: 2em;
    }
    .header-content p {
        font-size: 0.9em;
    }
    .packages-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .package-card h2 {
        font-size: 1.3em;
    }
    .package-card h2,
    .package-card .package-description,
    .package-card .package-details,
    .package-card .package-price-duration {
        padding-left: 20px; /* Further adjust padding for very small screens */
        padding-right: 20px;
    }
}
/* Main Container for Peels Page */
.peels-container {
    max-width: 1300px; /* Wider container for more content */
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px; /* Space between sections */
}

/* General Card Styling for Sections */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color: #1992d0 ;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #1992d0 ;
    padding-bottom: 10px;
    display: inline-block;
    width: auto; /* Allow border to fit text */
}

/* Intro Section Specific Styles */
.intro-section {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: center;
    gap: 30px;
}

.intro-text {
    flex: 2; /* Takes more space */
    min-width: 300px; /* Ensures it doesn't get too small */
}

.intro-image-container {
    flex: 1; /* Takes less space */
    min-width: 250px; /* Ensures it doesn't get too small */
    text-align: center;
}

.intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
    text-align: center;
}

.stat-item {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: #1992d0 ;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Types of Chemical Peels Section */
.peel-types-section h2 {
    text-align: center;
    display: block; /* Make border span full width */
    width: 100%;
}

.peel-category {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.peel-category:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.peel-category h3 {
    color: #333;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.category-tag {
    background-color: #1992d0 ;
    color: white;
    font-size: 0.7em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: normal;
}

.peel-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.peel-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.peel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.peel-item-image {
    width: 100%;
    height: 180px; /* Fixed height for images */
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.peel-item h4 {
    color: #1992d0 ;
    font-size: 1.3em;
    margin: 15px 15px 5px 15px;
}

.peel-item p {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px;
    margin-bottom: 15px;
    flex-grow: 1; /* Allows description to take available space */
}

.peel-price {
    font-size: 1.6em;
    font-weight: 700;
    color: #333;
    background-color: #e9f5fd; /* Lighter blue background */
    padding: 10px 15px;
    border-top: 1px solid var(--border-color);
    text-align: right;
    display: block;
}

/* Benefits of Chemical Peels Section */
.benefits-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.benefit-item:hover {
    background-color: #e9f5fd; /* Light blue on hover */
    transform: translateY(-3px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item h3 {
    color: #1992d0 ;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95em;
}

/* The Peel Process Section */
.process-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    counter-reset: step-counter; /* Initialize counter */
}

.process-step {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 50px; /* Make space for the number */
}

.process-step .step-number {
    position: absolute;
    top: -15px; /* Position above the card */
    left: 50%;
    transform: translateX(-50%);
    background-color: #1992d0 ;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    border: 3px solid white; /* White border for pop */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    counter-increment: step-counter; /* Increment counter */
}

/* Use generated content for step number to ensure it's always correct */
.process-step .step-number::before {
    content: counter(step-counter);
}

.process-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.process-step h4 {
    color: #1992d0 ;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9em;
}

/* Choose the Right Peel Section (Table-like Grid) */
.choose-peel-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.peel-comparison-table {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr; /* Adjust column widths */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.table-header, .table-row {
    display: contents; /* Makes children participate in parent grid */
}

.table-header span, .table-row span {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center; /* Center content in cells */
    text-align: center;
}

.table-header span {
    background-color: #1992d0 ;
    color: white;
    font-weight: 600;
    font-size: 1.1em;
}

.table-row span {
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 0.95em;
}

.table-row:nth-child(even) span {
    background-color: #f8f8f8; /* Zebra striping */
}

.table-row span:last-child, .table-header span:last-child {
    border-right: none;
}

.peel-comparison-table .table-row:last-of-type span {
    border-bottom: none;
}

.peel-type-label {
    font-weight: 600;
    color: #1992d0 ;
}

/* Treatment Results Gallery Section */
.results-gallery-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.result-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.result-image {
    width: 100%;
    height: 250px; /* Consistent height for results images */
    object-fit: cover;
    display: block;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}

.result-overlay h3 {
    margin: 0;
    font-size: 1.4em;
    margin-bottom: 5px;
}

.result-overlay p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Instructions and Expectations Section */
.instructions-expectations-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.instruction-block {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.instruction-block h3 {
    color: #1992d0 ;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #1992d0 ;
    padding-bottom: 10px;
}

.instruction-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instruction-block ul li {
    display: flex;
    align-items: flex-start; /* Align icon and text at top */
    margin-bottom: 15px;
    font-size: 0.95em;
    color: var(--text-color);
}

.instruction-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .intro-section {
        flex-direction: column; /* Stack intro content */
        text-align: center;
    }
    .intro-text, .intro-image-container {
        min-width: unset; /* Remove min-width for stacking */
        width: 100%;
    }
    .intro-image {
        max-width: 80%; /* Smaller image on smaller screens */
    }
    .peel-types-section .card h2,
    .benefits-section .card h2,
    .process-section .card h2,
    .choose-peel-section .card h2,
    .results-gallery-section .card h2,
    .instructions-expectations-section .card h2 {
        font-size: 1.8em;
    }
    .peel-comparison-table {
        grid-template-columns: 1fr 1fr; /* 2 columns on medium screens */
    }
    .table-header span:nth-child(3), .table-row span:nth-child(3),
    .table-header span:nth-child(4), .table-row span:nth-child(4) {
        display: none; /* Hide downtime and results columns on smaller screens */
    }
    /* Re-enable them for larger screens if needed, or adjust grid */
    .peel-comparison-table {
        grid-template-columns: repeat(2, 1fr);
    }
    .table-header span:nth-child(1), .table-row span:nth-child(1) { grid-column: 1 / 2; }
    .table-header span:nth-child(2), .table-row span:nth-child(2) { grid-column: 2 / 3; }
    /* You might need to adjust the content of these cells or hide more */
}

@media (max-width: 768px) {
    
    .peels-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .card {
        padding: 25px;
    }
    .peel-category h3 {
        font-size: 1.5em;
    }
    .peel-item-image {
        height: 160px;
    }
    .benefit-item, .process-step, .instruction-block {
        padding: 20px;
    }
    .peel-comparison-table {
        grid-template-columns: 1fr; /* Stack table columns on small screens */
    }
    .table-header, .table-row {
        display: block; /* Make them block elements */
    }
    .table-header span, .table-row span {
        border: none;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        justify-content: flex-start;
        display: block; /* Ensure each span takes full width */
        padding: 10px 15px;
    }
    .table-header span:first-child {
        background-color: #1992d0 ;
        color: white;
        font-size: 1.2em;
        text-align: center;
    }
    .table-row span:first-child {
        background-color: #1992d0 ;
        color: white;
        font-weight: 600;
        font-size: 1.1em;
        text-align: center;
    }
    .table-row:nth-child(even) span {
        background-color: #ffffff; /* Reset background for stacked rows */
    }
    .table-row:nth-child(even) span:first-child {
        background-color: #1992d0 ;
    }
    .result-item {
        height: auto; /* Allow height to adjust */
    }
    .result-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
   
    .peels-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .card {
        padding: 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
    .stat-number {
        font-size: 1.8em;
    }
    .peel-item h4 {
        font-size: 1.1em;
    }
    .peel-price {
        font-size: 1.4em;
    }
    .benefit-item h3 {
        font-size: 1.2em;
    }
    .process-step h4 {
        font-size: 1.1em;
    }
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background:#1992d0f2;
    border-radius: 50%;
    display: flex;
    color:#ffffff;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer__social-links {
    display: flex;
    gap: 1rem;
    margin: auto;
    text-align: center;
    justify-content: center;
    padding-top: 20px;
}

/* Main Container for Gift Cards Page */
.gift-cards-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px; /* Space between sections */
}

/* General Card Styling for Sections */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color: #1992d0 ;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #1992d0 ;
    padding-bottom: 10px;
    display: inline-block;
    width: auto;
}

/* Purchase Options Section */
.purchase-options-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.option-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-item h3 {
    color: #333;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.option-item p {
    font-size: 1em;
    margin-bottom: 10px;
}

.phone-number a, .online-link a {
    color: #1992d0 ;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3em;
    transition: color 0.3s ease;
    display: block; /* Make links block for better click area */
    margin-bottom: 10px;
}

.phone-number a:hover, .online-link a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.85em;
    color: #777;
    margin-top: 15px;
    border-top: 1px dashed var(--border-color);
    padding-top: 10px;
}

/* Terms & Benefits Section */
.terms-benefits-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.term-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.term-item h3 {
    color: #1992d0 ;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.term-item p {
    font-size: 0.95em;
}

.term-item p strong {
    color: #333;
}

.no-refunds-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: #d9534f; /* A subtle red for important notes */
    font-weight: 600;
    padding: 15px;
    background-color: #fcecec;
    border-radius: 8px;
    border: 1px solid #d9534f;
}


/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
   
    .gift-cards-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .card {
        padding: 25px;
    }
    .card h2 {
        font-size: 1.8em;
    }
    .options-grid, .terms-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
    .option-item h3, .term-item h3 {
        font-size: 1.3em;
    }
    .phone-number a, .online-link a {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    
    .gift-cards-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .card {
        padding: 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
}

/* Main Content Styling */
.specials-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

/* General Card Styling for Sections (reused from previous pages) */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color:  #1992d0;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid  #1992d0;
    padding-bottom: 10px;
    display: inline-block;
    width: auto;
}

.section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

/* Specials Grid */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.special-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.special-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.special-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.special-item h3 {
    color:  #1992d0;
    font-size: 1.6em;
    margin: 15px 15px 5px 15px;
}

.special-price {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    padding: 0 15px;
    margin-bottom: 10px;
}

.special-description-text {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px 15px;
    margin-top: 0;
}


/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}



@media (max-width: 768px) {
   
    .specials-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .card {
        padding: 25px;
    }
    .card h2 {
        font-size: 1.8em;
        text-align: center;
        width: 100%;
    }
    .section-description {
        font-size: 1em;
    }
    .specials-grid {
        grid-template-columns: 1fr; /* Stack specials on small screens */
    }
    .special-image {
        height: 180px;
    }
    .special-item h3 {
        font-size: 1.4em;
    }
    .special-price {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    
    .specials-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .card {
        padding: 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
    .section-description {
        font-size: 0.9em;
    }
    .special-image {
        height: 150px;
    }
    .special-item h3 {
        font-size: 1.2em;
    }
    .special-price {
        font-size: 1.4em;
    }
}
/* Main Container for Contact Page */
.contact-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 20px; 
}

/* General Card Styling for Sections */
.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color: #0d6efd;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 10px;
    display: inline-block;
    width: auto;
}

/* Contact Info Section */
.contact-info-section {
    text-align: center; /* Center the grid items within the section */
}

.contact-info-section h3 {
    color: #0d6efd;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.icon-small {
    margin-right: 10px;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.info-block {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.info-block p {
    font-size: 1.1em;
    margin: 0;
}

.info-block a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Location Section */
.location-section h2 {
    text-align: center;
    display: block;
    width: 100%;
}

.address-map-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    gap: 30px;
    margin-top: 30px;
}

.address-details {
    flex: 1;
    min-width: 300px; /* Ensure it doesn't get too small */
}

.main-address {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.directions {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.service-areas {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 25px;
}

.get-directions-btn {
    display: inline-block;
    background-color: #0d6efd;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.get-directions-btn:hover {
    background-color: #106ba0; /* Darker blue on hover */
    transform: translateY(-2px);
}

.get-directions-btn i {
    margin-left: 8px;
}

.map-container {
    flex: 2; /* Map takes more space */
    min-width: 300px; /* Ensure map is visible */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 10px; /* Apply border-radius to iframe */
}

/* Footer Styling */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .address-map-container {
        flex-direction: column; /* Stack address and map */
        align-items: center;
    }
    .address-details, .map-container {
        width: 100%; /* Take full width when stacked */
        min-width: unset;
    }
    .map-container iframe {
        height: 350px; /* Adjust map height for smaller screens */
    }
}

@media (max-width: 768px) {

    .contact-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .card {
        padding: 25px;
    }
    .card h2 {
        font-size: 1.8em;
        text-align: center;
        width: 100%;
    }
    .info-grid {
        grid-template-columns: 1fr; /* Stack contact info blocks */
    }
    .info-block h3 {
        font-size: 1.4em;
    }
    .main-address {
        font-size: 1.1em;
    }
    .directions, .service-areas {
        font-size: 0.9em;
    }
    .get-directions-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {

    .contact-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .card {
        padding: 20px;
    }
    .card h2 {
        font-size: 1.5em;
    }
    .map-container iframe {
        height: 250px;
    }
}

.faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-weight: bold;
            color: #34495e;
            cursor: pointer;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.2em;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            content: '-'; /* Changed to '-' when active for better UX */
            transform: rotate(0deg); /* No rotation needed for '-' */
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out; /* Added padding to transition */
            color: #555;
            padding: 0 10px; /* Initial padding is 0 */
        }
        .faq-answer.show {
            max-height: fit-content; /* Allows content to dictate height */
            padding: 10px; /* Add padding when shown */
        }
        .faq-answer p {
            margin: 10px 0;
        }
        .consultation-text {
            text-align: center;
            margin-top: 30px;
            font-style: italic;
            color: #666;
            padding-top: 20px;
            border-top: 1px dashed #eee;
        }
        /* New Why Bellaqua Section Design */
#why-bellaqua-redesign {
    background: linear-gradient(135deg, #1992d0, #147ab3); 
    color: #ffffff; 
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; 
}

/* Optional: Add a subtle pattern or texture for extra luxury */
#why-bellaqua-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><path d="M0,0h100v100h-100Z" style="fill:none;stroke:none;"/><path d="M0,0c0,0 25,25 50,0c25,-25 50,0 50,0l0,50c0,0 -25,-25 -50,0c-25,25 -50,0 -50,0l0,-50Z" style="fill:rgba(255,255,255,0.05);"/></svg>') repeat;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none; 
}


#why-bellaqua-redesign .content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px; 
    margin: 0 auto;
}

#why-bellaqua-redesign h2,
#why-bellaqua-redesign h3 {
    color: #ffffff; 
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

#why-bellaqua-redesign h2 {
    font-size: 3.2em;
    margin-bottom: 25px;
}

#why-bellaqua-redesign .intro-text,
#why-bellaqua-redesign .outro-text {
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

#why-bellaqua-redesign .book-look-heading {
    font-size: 2.5em;
    margin-top: 50px;
    margin-bottom: 25px;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); 
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-item .icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
    line-height: 1; 
}

.benefit-item h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* .benefit-item p {
    font-size: 0.95em;
    color: #e0e0e0;
} */

/* New Call to Action Button Style */
.cta-button-new {
    background-color: #ffffff; 
    color: #1992d0; 
    font-size: 1.4em;
    padding: 18px 45px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); 
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    border: none; 
}

.cta-button-new:hover {
    background-color: #f0f0f0; 
    color: #147ab3;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #why-bellaqua-redesign h2 {
        font-size: 2.5em;
    }
    #why-bellaqua-redesign .intro-text,
    #why-bellaqua-redesign .outro-text {
        font-size: 1.1em;
    }
    .benefit-item .icon {
        font-size: 2.5em;
    }
    .benefit-item h3 {
        font-size: 1.4em;
    }
    .cta-button-new {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    #why-bellaqua-redesign h2 {
        font-size: 2em;
    }
    #why-bellaqua-redesign .intro-text,
    #why-bellaqua-redesign .outro-text {
        font-size: 1em;
    }
    .benefit-item {
        padding: 25px 15px;
    }
    .benefit-item .icon {
        font-size: 2em;
    }
    .cta-button-new {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}