@import url("reset.css");

@import url("https://fonts.googleapis.com/css2?family=Alice:wght@400;600;700&display=swap");

/* Updated to v=7 for custom dialog implementation */

/* ************COMMON************ */

body {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #a14836;
  background-color: #fbf7ba;
  margin: 0;
  padding: 0;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Logo Image Styles */
.logo-image {
  max-height: 90px; /* Made larger */
  width: auto;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

/* CTA Logo Styles */
.cta-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.cta-logo-image {
  max-height: 200px; /* Reduced from 600px to fit better */
  width: auto;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

/* ************SLIDE 1: HERO SECTION - EXACT CANVA DESIGN************ */

.hero-header {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: url("../ctapic.PNG") center/cover no-repeat;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

/* Top Navigation Bar */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: -20px;
  margin-top: -1rem;
  margin-left: -20px;
}

.hero-logo {
  display: flex;
  align-items: center;
  position: relative;
  left: -10px;
  width: auto;
  margin-bottom: -20px;
  z-index: 100;
}

.nav-buttons-overlay {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% + 260px);
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  background-color: #fbf7ba;
  color: #8B4513;
  border: none;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-family: "Alice", serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 250px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav-btn:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

/* Center CTA Button - Main Focus */
.hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin: auto 0;
  gap: 2rem;
}

.cta-button {
  background: linear-gradient(135deg, rgba(251, 247, 186, 0.3), rgba(255, 165, 0, 0.2));
  color: #8B4513;
  border: none;
  padding: 2rem 4rem;
  border-radius: 30px;
  font-family: "Alice", serif;
  font-weight: 400;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #FFA500;
  transform: translateY(-5px);
}

/* ************SLIDE 2: SERVICES SECTION************ */

.services-section {
  background-color: #fbf7ba;
  padding: 4rem 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-family: "Alice", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #8B4513;
  text-align: center;
  letter-spacing: 0.3em;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: none; /* Remove the card hover animation */
}

.service-image {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none; /* Remove image hover animation */
}

.image-border {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 4px solid #8B4513;
  background: repeating-linear-gradient(
    45deg,
    #8B4513,
    #8B4513 3px,
    #F5F5DC 3px,
    #F5F5DC 6px
  );
  z-index: -1;
}

.service-label {
  background-color: #8B4513;
  color: #F5F5DC;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-family: "Alice", serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
}

.service-label:hover {
  background-color: #CD5C5C;
  transform: translateY(-3px);
}

/* ************SLIDE 3: ABOUT SECTION************ */

.about-section {
  background-color: #fbf7ba;
  padding: 4rem 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-full-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.about-title {
  text-align: left;
  margin-bottom: 3rem;
  font-size: 3rem;
  letter-spacing: 0.3em;
}

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

.about-text-box {
  background-color: #8B4513;
  color: #F5F5DC;
  padding: 3rem;
  border-radius: 15px;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;

}

.about-text-box p {
  font-family: "Alice", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.text-box-border {
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: 30px;
  height: 30px;
  background: repeating-linear-gradient(
    45deg,
    #8B4513,
    #8B4513 3px,
    #F5F5DC 3px,
    #F5F5DC 6px
  );
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 15px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-image-border {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  background: repeating-linear-gradient(
    45deg,
    #8B4513,
    #8B4513 3px,
    #F5F5DC 3px,
    #F5F5DC 6px
  );
}

/* ************SLIDE 4: FOOTER SECTION************ */

.footer-section {
  background-color: #fbf7ba; /* Same color as previous sections */
  color: #8B4513; /* Darker text color for better contrast */
  padding: 6rem 2rem; /* Increased padding to make it longer */
  position: relative;
  min-height: 80vh; /* Increased from 50vh to make it longer */
  display: flex;
  align-items: center;
}

.footer-border-top,
.footer-border-bottom {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #8B4513,
    #8B4513 3px,
    #fbf7ba 3px,
    #fbf7ba 6px
  );
  margin: 0;
}

.footer-content {
  max-width: 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  padding-right: 3rem; /* Add padding to shift contact info to the right */
  width: 100%;
  position: absolute; /* Position over the footer image */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Perfect centering */
  z-index: 20; /* Ensure it's above the footer image */
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo .logo-image {
  max-height: 100px; /* Made larger */
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: absolute; /* Position over the footer image */
  top: 40%; /* Center vertically */
  left: calc(50% + 250px); /* Shift 200px to the right */
  transform: translate(-50%, -50%); /* Perfect centering */
  z-index: 20; /* Ensure it's above the footer image */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  font-size: 1.2rem;
  color: #8B4513; /* Darker color for better contrast */
}

.contact-text {
  font-family: "Alice", serif;
  font-size: 1.5rem;
  color: #fbf7ba; /* Darker color for better contrast */
  font-weight: 400;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  color: #fbf7baa1; /* Slightly different color on hover */
}

.footer-text {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #fbf7ba; /* Darker color for better contrast */
  font-weight: 400;
}

.footer-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0;
  width: 100%;
}

.footer-full-image {
  width: 100vw; /* Full viewport width */
  height: auto;
  object-fit: cover; /* Cover the full width */
  border-radius: 15px;
  margin-left: -2rem; /* Align to left by offsetting container padding */
  margin-right: 0;
  display: block; /* Ensure it displays */
  max-height: 500px; /* Set a maximum height to ensure it's visible */
}

/* ************MOBILE MENU STYLES************ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(139, 69, 19, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.mobile-logo {
  max-height: 60px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-close span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
  justify-content: center;
}

.mobile-menu-item {
  color: white;
  font-family: "Alice", serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-menu-item:hover {
  color: #fbf7ba;
  transform: translateX(10px);
}

/* ************RESPONSIVE DESIGN************ */

/* Tablet Styles */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero-header {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0;
  }
  
  .hero-logo {
    left: -35px; /* Shift even more to the left */
    margin-bottom: 0;
    justify-content: flex-start;
  }
  
  /* Hide regular navigation on mobile */
  .nav-buttons-overlay {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-cta {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .cta-logo-image {
    max-height: 150px;
  }
  
  .cta-button {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
  }
  
  /* Services Section Mobile */
  .services-section {
    padding: 1.5rem 0.5rem; /* Reduced padding to shorten the page */
    min-height: auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Reduced gap */
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .service-image {
    max-width: 300px;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 1.5rem 0.5rem; /* Reduced padding to shorten the page */
    min-height: auto;
  }
  
  .about-container {
    max-width: 100%;
  }
  
  /* Footer Section Mobile */
  .footer-section {
    padding: 0.75rem 0; /* Even more reduced padding */
    min-height: 35vh; /* Further reduced to shorten the page */
  }
  
  .footer-content {
    gap: 0.25rem;
    padding: 0.55rem 0; /* Reduced padding */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
  }
  
  .footer-contact {
    gap: 0.2rem;
    transform: translateX(1rem); /* Reduced shift */
  }
  
  .contact-text {
    font-size: 0.8rem;
  }
  
  .footer-image {
    margin: 0.25rem 0; /* Reduced margin */
  }
  
  .footer-full-image {
    border-radius: 6px;
    max-height: 150px; /* Further reduced height */
  }
  
  /* Typography Mobile */
  .section-title {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
  }
  
  .logo-image {
    max-height: 56px; /* Reduced by 40% from 90px */
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  /* Hero Section Mobile */
  .hero-header {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0.5rem;
  }
  
  .hero-nav {
    gap: 0.5rem;
  }
  
  .hero-logo {
    left: -40px; /* Shift even more to the left for smaller screens */
  }
  
  /* Mobile menu adjustments for smaller screens */
  .mobile-menu-content {
    padding: 1rem;
  }
  
  .mobile-menu-header {
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
  }
  
  .mobile-logo {
    max-height: 50px;
  }
  
  .mobile-menu-nav {
    gap: 1rem;
  }
  
  .mobile-menu-item {
    font-size: 1.3rem;
    padding: 0.75rem 0;
  }
  
  .hero-cta {
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .cta-logo-image {
    max-height: 120px;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
  }
  
  /* Services Section Mobile */
  .services-section {
    padding: 2rem 0.5rem;
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .service-image {
    max-width: 250px;
  }
  
  .service-label {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 2rem 0.5rem;
  }
  
  .about-full-image {
    border-radius: 10px;
  }
  
  /* Footer Section Mobile */
  .footer-section {
    padding: 1rem 0.5rem;
  }
  
  .footer-content {
    gap: 0.5rem;
    padding: 1rem 0;
  }
  
  .footer-contact {
    gap: 0.25rem;
    transform: translateX(6rem); /* Shift even more to the right for smaller screens */
  }
  
  .contact-text {
    font-size: 0.8rem;
  }
  
  .footer-image {
    margin: 1rem 0;
  }
  
  .footer-full-image {
    border-radius: 8px;
    max-height: 300px;
  }
  
  /* Typography Mobile */
  .section-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
  }
  
  .logo-image {
    max-height: 49px; /* Reduced by 40% from 80px for smaller screens */
  }
  
  /* General Mobile Adjustments */
  .wrapper {
    overflow-x: hidden;
  }
  
  body {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
  .hero-content {
    padding: 0.25rem;
  }
  
  .hero-logo {
    left: -45px; /* Shift even more to the left for very small screens */
  }
  
  .nav-btn {
    width: 160px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .cta-logo-image {
    max-height: 100px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    max-height: 42px; /* Reduced by 40% from 70px for very small screens */
  }
  
  /* Footer adjustments for very small screens */
  .footer-section {
    padding: 0.125rem 0; /* Minimal padding */
    min-height: 25vh; /* Minimal height to shorten the page */
  }
  
  .footer-content {
    gap: 0.125rem;
    padding: 0.125rem 0; /* Minimal padding */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
  }
  
  .footer-contact {
    gap: 0.1rem;
    transform: translateX(1rem); /* Minimal shift */
  }
  
  .contact-text {
    font-size: 0.6rem;
  }
  
  .footer-image {
    margin: 0.125rem 0; /* Minimal margin */
  }
  
  .footer-full-image {
    border-radius: 4px;
    max-height: 120px; /* Minimal height */
  }
  
  .services-section,
  .about-section {
    padding: 1.5rem 0.25rem;
  }
}

/* Service Hero Content Styles */
.service-hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  z-index: 10;
  position: relative;
}

.service-hero-title {
  font-family: "Alice", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #fbf7ba;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

/* Service Content Section Styles */
.service-content-section {
  background-color: #fbf7ba;
  padding: 4rem 2rem;
  min-height: 60vh;
}

.service-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-description {
  background-color: #fbf7ba;
  padding: 3rem;
  border-radius: 15px;
  border: 3px solid #8B4513;
}

.service-description h2 {
  font-family: "Alice", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-description p {
  font-family: "Alice", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8B4513;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.service-description h3 {
  font-family: "Alice", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #CD5C5C;
  margin: 2rem 0 1rem 0;
}

.service-description ul {
  font-family: "Alice", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8B4513;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.service-description li {
  margin-bottom: 0.5rem;
}

.service-cta {
  text-align: center;
  margin-top: 3rem;
}

.service-cta-button {
  background: linear-gradient(135deg, #CD5C5C, #8B4513);
  color: #fbf7ba;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 25px;
  font-family: "Alice", serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  text-decoration: none;
  display: inline-block;
}

.service-cta-button:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Navigation button links */
.nav-btn {
  text-decoration: none;
  color: inherit;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
  .service-hero-title {
    font-size: 2.5rem;
    padding: 1.5rem;
  }
  
  .service-description h2 {
    font-size: 2rem;
  }
  
  .service-description p {
    font-size: 1rem;
  }
  
  .service-description h3 {
    font-size: 1.5rem;
  }
  
  .service-description ul {
    font-size: 1rem;
  }
  
  .service-cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .service-hero-title {
    font-size: 2rem;
    padding: 1rem;
  }
  
  .service-content-section {
    padding: 2rem 1rem;
  }
  
  .service-description {
    padding: 2rem;
  }
  
  .service-description h2 {
    font-size: 1.8rem;
  }
  
  .service-description p {
    font-size: 0.9rem;
  }
  
  .service-description h3 {
    font-size: 1.3rem;
  }
  
  .service-description ul {
    font-size: 0.9rem;
  }
  
  .service-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Pricing Chart Styles */
.pricing-chart {
  background-color: #fbf7ba;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid #8B4513;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #8B4513;
  font-family: "Alice", serif;
  font-weight: 400;
}

.pricing-item:last-child {
  border-bottom: none;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #CD5C5C;
  min-width: 80px;
}

.service-name {
  font-size: 1.1rem;
  color: #8B4513;
  flex: 1;
  margin: 0 1rem;
}

.duration {
  font-size: 0.9rem;
  color: #8B4513;
  opacity: 0.8;
  min-width: 120px;
  text-align: right;
}

.pricing-note {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

.henna-type-note {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* Responsive Design for Pricing Chart */
@media (max-width: 768px) {
  .pricing-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .price {
    font-size: 1.3rem;
    min-width: auto;
  }
  
  .service-name {
    font-size: 1rem;
    margin: 0;
  }
  
  .duration {
    font-size: 0.8rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .pricing-chart {
    padding: 1.5rem;
  }
  
  .price {
    font-size: 1.2rem;
  }
  
  .service-name {
    font-size: 0.9rem;
  }
  
  .duration {
    font-size: 0.7rem;
  }
}

/* Booking Form Styles */
.booking-section {
  background-color: #fbf7ba;
  padding: 4rem 2rem;
  min-height: 80vh;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background-color: #fbf7ba;
  padding: 3rem;
  border-radius: 15px;
  border: 3px solid #8B4513;
}

.booking-form h2 {
  font-family: "Alice", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 1rem;
  text-align: center;
}

.booking-form > p {
  font-family: "Alice", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8B4513;
    text-align: center;
  margin-bottom: 2rem;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.form-group:nth-child(7),
.form-group:nth-child(8),
.form-group:nth-child(9) {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid #8B4513;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #8B4513;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #CD5C5C;
}

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

.form-submit {
  grid-column: 1 / -1;
    text-align: center;
  margin-top: 1rem;
}

.submit-button {
  background: linear-gradient(135deg, #CD5C5C, #8B4513);
  color: #fbf7ba;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 25px;
  font-family: "Alice", serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.submit-button:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.booking-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #8B4513;
}

.booking-info h3 {
  font-family: "Alice", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #CD5C5C;
  margin-bottom: 1rem;
  text-align: center;
}

.booking-info ol {
  font-family: "Alice", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8B4513;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.booking-info li {
  margin-bottom: 0.5rem;
}

.contact-alternative {
  background-color: #fbf7ba;
  padding: 1.5rem;
  border-radius: 10px;
    text-align: center;
}

.contact-alternative p {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.contact-alternative a {
  color: #CD5C5C;
  text-decoration: none;
  font-weight: 600;
}

.contact-alternative a:hover {
  text-decoration: underline;
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group:nth-child(7),
  .form-group:nth-child(8),
  .form-group:nth-child(9) {
    grid-column: 1;
  }
  
  .booking-form {
    padding: 2rem;
  }
  
  .booking-form h2 {
    font-size: 2rem;
  }
  
  .booking-form > p {
    font-size: 1rem;
  }
  
  .submit-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 2rem 1rem;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .booking-form h2 {
    font-size: 1.8rem;
  }
  
  .booking-form > p {
    font-size: 0.9rem;
  }
  
  .booking-info ol {
    font-size: 1rem;
  }
  
  .submit-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Quote Form Styles */
.quote-form-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #8B4513;
}

.quote-form-section h3 {
  font-family: "Alice", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #CD5C5C;
  margin-bottom: 1rem;
  text-align: center;
}

.quote-form-section > p {
  font-family: "Alice", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8B4513;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid #8B4513;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #8B4513;
    background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #CD5C5C;
}

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

.form-group small {
  font-family: "Alice", serif;
  font-size: 0.9rem;
  color: #8B4513;
  opacity: 0.8;
  margin-top: 0.3rem;
  font-style: italic;
}

.quantity-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quantity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-item label {
  font-family: "Alice", serif;
  font-size: 0.9rem;
  color: #8B4513;
  min-width: 150px;
  flex-shrink: 0;
}

.quantity-item input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid #8B4513;
  border-radius: 5px;
  font-family: "Alice", serif;
  font-size: 0.9rem;
  color: #8B4513;
  background-color: #fff;
}

.quantity-item input:focus {
  outline: none;
  border-color: #FFA500;
  box-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
}

.contact-info {
  background-color: #fbf7ba;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 2px solid #8B4513;
}

.contact-info h3 {
  font-family: "Alice", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #CD5C5C;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-details p {
  font-family: "Alice", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: #CD5C5C;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.inspiration-note {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #CD5C5C;
}

.inspiration-note p {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  margin: 0;
  line-height: 1.6;
}

/* Checkbox Group Styles */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8B4513;
  cursor: pointer;
}

.checkbox-item label {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  cursor: pointer;
  margin: 0;
}

/* Important Notice Styles */
.important-notice {
  background-color: #fbf7ba;
  border: 2px solid #8B4513;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.important-notice h4 {
  font-family: "Alice", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 1rem;
  text-align: center;
}

.important-notice p {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.important-notice ul {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8B4513;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.important-notice li {
  margin-bottom: 0.5rem;
}

.important-notice a {
  color: #CD5C5C;
  text-decoration: none;
  font-weight: 600;
}

.important-notice a:hover {
  text-decoration: underline;
}

/* Custom Dialog Styles */
.custom-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.dialog-content {
  background-color: #fbf7ba;
  border: 3px solid #8B4513;
  border-radius: 15px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.dialog-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dialog-icon.loading {
  animation: spin 1s linear infinite;
}

.dialog-content h3 {
  font-family: "Alice", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #8B4513;
  margin-bottom: 1rem;
}

.dialog-content p {
  font-family: "Alice", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8B4513;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dialog-button {
  background: linear-gradient(135deg, #CD5C5C, #8B4513);
  color: #fbf7ba;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-family: "Alice", serif;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.dialog-button:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design for Quote Form */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .quote-form-section h3 {
    font-size: 1.8rem;
  }
  
  .quote-form-section > p {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .quote-form-section {
    margin-top: 2rem;
  }
  
  .quote-form-section h3 {
    font-size: 1.6rem;
  }
  
  .quote-form-section > p {
    font-size: 0.9rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .contact-info h3 {
    font-size: 1.4rem;
  }
  
  .contact-details p {
    font-size: 1rem;
  }
}