/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #000;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: goldenrod;
  margin: 15px auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 2px solid goldenrod;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 60px;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: goldenrod;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Nav menu */
header nav {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 250px;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.95);
  transition: left 0.3s ease;
  border-right: 2px solid goldenrod;
  overflow-y: auto;
}

header nav.active {
  left: 0;
}

header nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  gap: 0;
}

/* Header actions (right side) */
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-booking {
  background: transparent;
  color: #fff;
  border: 1px solid goldenrod;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-booking:hover {
  background: goldenrod;
  color: #000;
}

/* Add padding to body to prevent content from going under fixed header */
body {
  padding-top: 60px;
}

nav ul li {
  width: 100%;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  padding: 0.75rem 1rem;
  border-radius: 3px;
  display: block;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  position: relative;
  overflow: hidden;
}

nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
  transition: left 0.5s ease;
}

nav ul li a:hover {
  color: goldenrod;
  transform: translateY(-1px);
  background-color: rgba(218, 165, 32, 0.1);
}

nav ul li a:hover::before {
  left: 100%;
}

nav ul li a.active {
  color: goldenrod;
  border-bottom: 2px solid goldenrod;
  padding-bottom: 3px;
  background-color: rgba(218, 165, 32, 0.15);
}

.hero {
  position: relative;
  color: white;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-brand {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: goldenrod;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', serif;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

/* Modern Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(218, 165, 32, 0.9);
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(218, 165, 32, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.feature-badge i {
  font-size: 1rem;
}

.open-status {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.open-status:hover {
  background: rgba(34, 197, 94, 1);
}

.closed-status {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.closed-status:hover {
  background: rgba(239, 68, 68, 1);
}

.walk-ins {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.walk-ins:hover {
  background: rgba(59, 130, 246, 1);
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: goldenrod;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0);
}

section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

section.hero {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

/* Services Section Styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Home Page Service Preview Cards */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-mini {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card-mini:hover {
  transform: translateY(-8px);
  border-color: goldenrod;
  box-shadow: 0 12px 30px rgba(218, 165, 32, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, goldenrod, #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-card-mini:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
}

.service-card-mini h3 {
  color: #333;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.price-range {
  color: goldenrod;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.service-desc {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: bold;
  transform: rotate(15deg);
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: goldenrod;
  box-shadow: 0 8px 24px rgba(218, 165, 32, 0.15);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: goldenrod;
  margin-bottom: 1.5rem;
}

.service-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 600;
  display: block;
}

.service-price {
  color: goldenrod;
  font-weight: 600;
  display: block;
  margin: 0.5rem 0;
}

.service-description {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Testimonials Section Styling */
.testimonials {
  background: #f9f9f9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: goldenrod;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  border-color: goldenrod;
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 32px rgba(218, 165, 32, 0.2);
}

.testimonial-card:hover::before {
  transform: scaleY(1);
}

/* Google Reviews Section Styling */
.google-reviews {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.reviews-intro {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.reviews-summary {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.rating-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 3rem;
  font-weight: bold;
  color: goldenrod;
  font-family: 'Playfair Display', serif;
  display: block;
  line-height: 1;
}

.rating-stars {
  color: goldenrod;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.rating-stars i {
  margin: 0 2px;
}

.review-count {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #4285f4;
}

.google-badge i {
  font-size: 2.5rem;
}

.google-badge span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.recent-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.google-review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.google-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.google-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: #e0e0e0;
}

.google-review-card:hover::before {
  transform: scaleX(1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, goldenrod, #f4d03f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.reviewer-details h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-family: 'Open Sans', sans-serif;
}

.review-date {
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

.review-rating {
  color: goldenrod;
  font-size: 1rem;
}

.review-rating i {
  margin: 0 1px;
}

.review-text {
  color: #444;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #4285f4;
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.google-reviews-btn:hover {
  background: #3367d6;
  color: white;
}

.google-reviews-btn i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .google-reviews .rating-overview {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .recent-reviews {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .google-review-card {
    padding: 1.25rem;
  }
  
  .google-reviews .rating-number {
    font-size: 2.5rem;
  }
  
  .google-reviews .rating-stars {
    font-size: 1.3rem;
  }
}

.stars {
  color: goldenrod;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #444;
}

.testimonial-card cite {
  color: #666;
  font-style: normal;
  font-weight: 600;
}

/* Service Areas Styling */
.service-areas {
  color: #888;
  font-size: 1rem;
  font-style: italic;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-intro {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.gallery {
  padding: 4rem 2rem;
}

.gallery-intro {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(20px);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(218, 165, 32, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(218, 165, 32, 0.3);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Footer Grid Layout */
.footer-wrapper {
  background: #000;
  width: 100%;
  color: #fff;
  border-top: 2px solid goldenrod;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  background: #000;
  padding: 4rem 2rem;
  text-align: left;
  /* match main section width so footer content aligns with other sections */
  max-width: 900px;
  margin: 0 auto;
}

.footer-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: goldenrod;
}

.footer-column p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  padding: 0.3rem 0;
}

.social-link:hover {
  color: goldenrod;
}

.social-link i {
  width: 20px;
}

.footer-column iframe {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  width: 100%;
  height: 150px;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(218, 165, 32, 0.3);
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Highlight Styles */
.contact-highlight {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: inline-block;
  border: 1px solid rgba(218, 165, 32, 0.4);
  backdrop-filter: blur(5px);
}

.phone-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: goldenrod;
  margin: 0;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-text {
  font-size: 1.2rem;
  color: white;
  margin: 0.5rem 0 0 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .phone-number {
    font-size: 1.8rem;
  }
  
  .call-text {
    font-size: 1rem;
  }
}

/* Animation Styles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Page Load Animations */
.page-load {
  animation: fadeIn 1s ease-out forwards;
}

header {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero, .about, .services, .gallery, .contact {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-content h1 {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-content p {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.contact-highlight {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.2s; }
.delay-200 { transition-delay: 0.4s; }
.delay-300 { transition-delay: 0.6s; }
.delay-400 { transition-delay: 0.8s; }

/* About Page Styles */
.about {
  padding: 5rem 2rem;
}

.about-intro {
  font-size: 1.4rem;
  color: goldenrod;
  font-family: 'Playfair Display', serif;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.about-section:last-child {
  border-bottom: none;
}

.about-section h3 {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-section p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.commitment-list, .services-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.commitment-list li, .services-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #444;
}

.commitment-list li:before, .services-list li:before {
  content: '•';
  color: goldenrod;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 1.5rem;
  }
  
  .about-intro {
    font-size: 1.2rem;
  }
  
  .about-section h3 {
    font-size: 1.3rem;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1000;
  background: #000;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.back-to-top i {
  color: goldenrod;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* Floating Call & Booking Buttons */
.floating-call,
.floating-booking {
  position: fixed;
  bottom: 30px;
  z-index: 1000;
  animation: bounce 2s infinite;
}

/* Call button sits on the right */
.floating-call { right: 30px; }

/* Booking button sits to the left of the call button */
.floating-booking { right: 120px; }

.call-button,
.booking-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: goldenrod;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: gentlePulse 3s ease-in-out infinite;
}

.call-button::before,
.booking-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.call-button:hover::before,
.booking-button:hover::before {
  left: 100%;
}

.call-button:hover,
.booking-button:hover {
  background: #d4af37;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  animation: none;
}

.call-button:active,
.booking-button:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3); }
}

.call-button i,
.booking-button i {
  font-size: 20px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1000;
  background: #000;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.back-to-top i {
  color: goldenrod;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* Menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(3px);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .feature-badge {
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
  }

  .hero-brand {
    font-size: 2.2rem;
  }

  .services-preview {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .service-card-mini {
    padding: 1rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon i {
    font-size: 20px;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-column iframe {
    height: 200px;
  }

  .floating-call {
    bottom: 20px;
    right: 20px;
  }

  .call-button {
    padding: 10px 20px;
  }

  /* Mobile navigation adjustments */
  .header-actions {
    margin-left: auto;
  }

  .hamburger {
    margin-right: 1rem;
  }

  nav {
    width: 280px;
  }

  nav ul {
    padding: 1rem;
  }

  nav ul li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  nav.active ul li {
    opacity: 1;
    transform: translateX(0);
  }

  nav ul li:nth-child(1) { transition-delay: 0.1s; }
  nav ul li:nth-child(2) { transition-delay: 0.2s; }
  nav ul li:nth-child(3) { transition-delay: 0.3s; }
  nav ul li:nth-child(4) { transition-delay: 0.4s; }
  nav ul li:nth-child(5) { transition-delay: 0.5s; }

  /* Contact Page Styles */
.contact {
  padding: 50px 20px;
  background: #fafafa;
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
}

.contact-info h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  color: #333;
  font-size: 1.3em;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.phone-number {
  color: goldenrod;
  font-weight: bold;
  font-size: 1.4em !important;
  font-family: 'Playfair Display', serif;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 15px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .contact-info,
  .map-container {
    width: 100%;
    min-height: auto;
  }

  .contact-info {
    text-align: center;
    padding: 20px;
  }

  .map-container {
    height: 350px;
  }
  
  .phone-number {
    font-size: 1.2em !important;
  }
}

  /* Services page mobile adjustments */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* Gallery page mobile adjustments */
  .gallery {
    padding: 3rem 1rem;
  }

  .gallery-intro {
    padding: 0 1rem;
  }

  .image-grid {
    gap: 1rem;
  }
}

/* Additional responsive improvements */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .floating-call,
  .floating-booking {
    position: fixed;
    bottom: 20px;
  }

  .call-button,
  .booking-button,
  .header-booking {
    padding: 8px 16px;
  }

  .hamburger {
    width: 25px;
    height: 18px;
  }

  .service-card {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-highlight {
    padding: 1.5rem;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Contact Page Styles */
.contact {
  padding: 50px 20px;
  background: #fafafa;
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch; /* make children match height */
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content to match map */
  min-height: 450px; /* match default map height */
}

.contact-info h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  color: #333;
  font-size: 1.3em;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.contact-info .phone-number {
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 1.3em;
  margin: 10px 0 20px;
  line-height: 1.6;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 15px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch; /* stacked but full width */
  }

  .contact-info,
  .map-container {
    width: 100%;
      min-height: auto;
  }

  .contact-info {
    text-align: center;
    padding: 20px;
  }

  .map-container {
    height: 350px;
  }
  
  .phone-number {
    font-size: 1.2em !important;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .service-card:hover,
  .gallery-item:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .call-button:hover,
  .booking-button:hover,
  .header-booking:hover,
  .back-to-top:hover {
    transform: none;
  }

  .nav ul li a {
    padding: 12px 16px;
  }
}
