@import url("fonts.css");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Global Resets & Variables */
:root {
  --primary: #c19a4f;
  --primary-hover: #b0873a;
  --primary-light: #f6ebd8;
  --dark: #0c0c0c;
  --dark-light: #1c1c1c;
  --light: #FAF6F0;
  --white: #ffffff;
  --text: #2f2f2f;
  --text-muted: #666666;
  --border: #e6dfd5;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --outline-color: #24f6fa;
  --font-scale: 1;
}

/* Accessibility Variables (High Contrast) */
body.high-contrast {
  --primary: #ffeb3b;
  --primary-hover: #ffff00;
  --primary-light: #333300;
  --dark: #000000;
  --dark-light: #111111;
  --light: #000000;
  --white: #000000;
  --text: #ffffff;
  --text-muted: #dddddd;
  --border: #ffffff;
  --shadow: none;
  --shadow-lg: none;
  background-color: #000000 !important;
  color: #ffffff !important;
}

body.high-contrast .card, 
body.high-contrast header,
body.high-contrast footer,
body.high-contrast section,
body.high-contrast input,
body.high-contrast textarea,
body.high-contrast select {
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

body.highlight-links a {
  text-decoration: underline !important;
  background-color: #ffff00 !important;
  color: #000000 !important;
  font-weight: bold !important;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--outline-color);
}

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

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale));
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

body.high-contrast h1, 
body.high-contrast h2, 
body.high-contrast h3, 
body.high-contrast h4 {
  color: #ffffff !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 3px solid var(--outline-color);
  outline-offset: 3px;
}

/* Top Address/Hours Bar */
.top-bar {
  background-color: var(--dark);
  color: #d8c3a5;
  font-size: 0.85rem;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #222;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar a:hover {
  color: var(--primary);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 5%;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  justify-self: start;
}

nav {
  justify-self: center;
}

.header-action {
  justify-self: end;
}

.mobile-only {
  display: none !important;
}

.logo img {
  height: 40px;
  width: auto;
}

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

.nav-item a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.nav-item a:hover,
.nav-item.active a {
  color: var(--primary);
}

.book-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary);
  display: inline-block;
  text-align: center;
}

.book-btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 8% 140px 8%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-height: 85vh;
  overflow: hidden;
}

/* Background overlay on top of video, below text */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  width: 100%;
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--white);
  font-family: var(--font-serif);
  margin-bottom: 25px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  animation: fadeInDown 0.8s ease;
}

.hero p {
  font-size: 1.35rem;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  animation: fadeInUp 0.8s ease 0.2s;
  animation-fill-mode: both;
}

.hero-btns {
  display: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Social Bar in Hero */
.social-header-bar {
  margin-top: 40px;
}
.social-header-bar p {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: none;
  letter-spacing: normal;
  text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
.social-icons-row {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}
.social-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: var(--transition);
}
.social-icon-circle.facebook {
  background-color: #1877f2;
}
.social-icon-circle.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icon-circle.tiktok {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-icon-circle.yelp {
  background-color: #d32323;
}
.social-icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  color: var(--white);
}
.social-icon-circle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Sections */
section {
  padding: 90px 5%;
}

.section-bg-light {
  background-color: var(--light);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  font-family: var(--font-serif);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin: 15px auto 0 auto;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  align-items: center;
}

/* Feature Cards (Home highlights) */
.service-highlight-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-link {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.read-more-link:hover {
  gap: 10px;
}

/* About Section */
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-content h3 {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-box h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonial Slider */
.testimonials-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
  color: #ffc107;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  color: var(--dark);
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d8c3a5;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Footer Section */
footer {
  background: linear-gradient(135deg, #0c0c0c 0%, #1c1c1c 100%);
  color: #d8c3a5;
  padding: 80px 5% 30px 5%;
}

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

.footer-col h2, .footer-col h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h2::after, .footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-about img {
  height: 55px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-hours-list {
  font-size: 0.9rem;
  list-style: none;
  line-height: 1.8;
}

.footer-hours-list strong {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d8c3a5;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links-list svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

/* Contact Form inside footer */
.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.footer-form-submit-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.footer-form-submit-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* Map Embed */
.footer-map-container {
  height: 220px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Inline Video Section */
.inline-video-section {
  background-color: var(--dark);
  padding: 60px 5%;
}

.inline-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background-color: #000;
}

.inline-video-wrapper video {
  width: 100%;
  height: 80vh;
  max-height: 800px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Get in Touch Section */
.get-in-touch-section {
  padding: 80px 5%;
}

.get-in-touch-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.get-in-touch-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

.get-in-touch-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.get-in-touch-form input,
.get-in-touch-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.get-in-touch-form input:focus,
.get-in-touch-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 154, 79, 0.15);
}

.get-in-touch-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.get-in-touch-submit {
  align-self: flex-start;
  padding: 12px 28px;
  cursor: pointer;
  border: none;
}

.get-in-touch-section .footer-map-container {
  height: 280px;
  border: 1px solid var(--border);
}

.get-in-touch-section .footer-contact-list li svg {
  fill: var(--primary);
}

.get-in-touch-section .footer-links-list a {
  color: var(--text);
}

.get-in-touch-section .footer-links-list a:hover {
  color: var(--primary);
}

.get-in-touch-section .footer-contact-list a {
  color: var(--text);
}

.get-in-touch-section .footer-contact-list a:hover {
  color: var(--primary);
}



.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #7a6e5b;
}

/* --- Internal Page Layouts --- */

/* Services List (our-services.html) */
.services-section {
  padding: 80px 5%;
}

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

.service-item-card {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-item-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.service-item-header h3 {
  font-size: 1.25rem;
  color: var(--dark);
  font-family: var(--font-serif);
}

.service-item-price-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.service-item-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Add Ons List */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.addon-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-card h4 {
  font-size: 1.05rem;
  color: var(--dark);
}

.addon-price {
  font-weight: 600;
  color: var(--primary);
}

/* Special Price Page (special-price.html) */
.special-package-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.special-package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.special-card-header {
  background-color: var(--dark);
  color: var(--white);
  padding: 30px 20px;
}

.special-card-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.special-price-tag {
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

.special-card-body {
  padding: 40px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.special-features-list {
  list-style: none;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.special-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.special-features-list svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* Gift Certificate Page (gift-certificad.html) */
.gift-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gift-purchase-card {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gift-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.gift-card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.gift-purchase-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: var(--font-serif);
}

.gift-purchase-form {
  margin-top: 20px;
}

.gift-select-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.gift-select-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.gift-select-element {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}

.gift-select-element:focus {
  border-color: var(--primary);
}

.paypal-btn-input {
  cursor: pointer;
  max-width: 100%;
  transition: var(--transition);
}

.paypal-btn-input:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Policies */
.policies-box {
  background-color: var(--light);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 60px;
}

.policies-box h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.policies-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
  border: 3px solid var(--white);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -10px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 35px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox-nav-prev {
  left: -70px;
}

.lightbox-nav-next {
  right: -70px;
}

/* Floating Accessibility Widget */

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* --- Mobile Responsive Layout (100% Mobile Responsive) --- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  header {
    padding: 10px 4%;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lightbox-nav-prev {
    left: -15px;
  }
  
  .lightbox-nav-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-action {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .top-bar {
    display: none; /* Hide topbar on mobile for cleaner header */
  }
  
  header {
    padding: 12px 5%;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  
  .nav-menu.active {
    max-height: 800px;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .nav-item a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  
  .nav-item a::after {
    display: none;
  }
  
  .book-btn {
    width: 90%;
    margin: 15px auto;
    text-align: center;
    display: block;
  }
  
  .hero {
    min-height: 70vh;
    padding: 120px 5% 100px 5%;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 12px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 10px 20px;
  }
  
  section {
    padding: 60px 5%;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 1.85rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
  
  .testimonial-card {
    padding: 25px 15px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .get-in-touch-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .get-in-touch-submit {
    width: 100%;
  }
}
