:root {
  /* Premium warm neutral palette - cream/beige with rich wood tones */
  --background: #fbfbf7;
  --foreground: #2a2825;
  --card: #ffffff;
  --card-foreground: #2a2825;
  --popover: #ffffff;
  --popover-foreground: #2a2825;
  
  /* Rich walnut brown for primary - luxurious wood tone */
  --primary: #594a3e;
  --primary-foreground: #fbfbf7;
  
  /* Warm cream for secondary */
  --secondary: #f7f5f2;
  --secondary-foreground: #403b36;
  
  /* Soft warm gray for muted */
  --muted: #f1efec;
  --muted-foreground: #736f6a;
  
  /* Warm accent - terracotta/copper */
  --accent: #a65d3d;
  --accent-foreground: #fbfbf7;
  
  --destructive: #ae312d;
  --destructive-foreground: #ffffff;
  
  --border: #e2e0dc;
  --input: #eceae6;
  --ring: #736f6a;
  
  --radius: 0.375rem;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-box {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-bold: 700;
}

.logo-text h1 {
  font-size: 1.125rem;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  background-color: var(--secondary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  overflow: hidden;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

.dropdown-item:hover {
  background-color: var(--secondary);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.phone-link:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: rgba(89, 74, 62, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background-color: rgba(166, 93, 61, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--card);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  display: none;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-item {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-sub-nav {
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-left: 1px solid var(--border);
}

.mobile-sub-nav-item {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  max-width: 42rem;
}

.hero-tagline {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--primary);
  padding: 1.5rem 0;
  color: var(--primary-foreground);
}

.trust-bar-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.trust-item span.font-medium {
  font-weight: 500;
}

.trust-divider {
  display: none;
  width: 1px;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .trust-divider {
    display: block;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

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

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-desc {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (min-width: 768px) {
  .about-badge {
    display: block;
  }
}

.about-badge h4 {
  font-size: 1.875rem;
  line-height: 1;
}

.about-badge p {
  font-size: 0.875rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.feature-mini-item {
  display: flex;
  gap: 0.75rem;
}

.feature-mini-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-mini-text h5 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.feature-mini-text p {
  font-size: 0.75rem;
  margin-bottom: 0;
}

/* Product Grid */
.product-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.product-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.product-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card:hover h3 {
  color: var(--accent);
}

/* Service Grid */
.service-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: block;
}

.service-image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

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

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

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.service-image h3 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

/* Why Us Section */
.why-us {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.why-us .section-title {
  color: white;
}

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.feature-item h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */
footer {
  background-color: #1a1816;
  color: white;
  padding-top: 5rem;
}

.footer-top {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent);
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.contact-info li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.contact-info li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: white;
}

/* Animations */
.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-10px) translateX(-50%);}
  60% {transform: translateY(-5px) translateX(-50%);}
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 0.125rem;
  animation: scroll-pulse 1.5s infinite;
}

@keyframes scroll-pulse {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* Logo Image Styling */
.logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Footer Brand Logo Container Styling */
.footer-brand .logo {
  background-color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  display: inline-flex;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Video Background */
.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 */
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.video-background-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Responsive Hero Grid */
@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding-top: 6rem;
  }
  
  .hero-content {
    padding-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 1023px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero-booking-card {
    margin-top: 1rem;
  }
}

/* Mini Booking Form Card */
.hero-booking-card {
  background: rgba(26, 24, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 420px;
  z-index: 15;
  position: relative;
  color: white;
}

.hero-booking-card h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.hero-booking-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.booking-form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.booking-form-group label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.booking-form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.booking-form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.booking-form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(166, 93, 61, 0.25);
}

.booking-form-input option {
  background-color: #1a1816;
  color: white;
}

/* Success State */
.booking-success-msg {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.booking-success-msg i {
  color: #4ade80;
  margin-bottom: 1rem;
  display: inline-block;
}

.booking-success-msg h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.booking-success-msg p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Interactive Footer Credits */
.footer-credits-container {
  position: relative;
  display: inline-block;
}

.footer-credits-link {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-credits-link:hover {
  color: var(--accent);
}

.footer-credits-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #b86e4e 100%);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(166, 93, 61, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(166, 93, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 93, 61, 0); }
}

.footer-credits-popup {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 290px;
  background: rgba(30, 28, 26, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 100;
  text-align: left;
}

.footer-credits-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(30, 28, 26, 0.98) transparent transparent transparent;
}

.footer-credits-container:hover .footer-credits-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.footer-credits-popup h4 {
  font-family: var(--font-sans);
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-credits-popup p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.footer-credits-popup .popup-btn {
  display: block;
  text-align: center;
  background-color: var(--accent);
  color: white;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-credits-popup .popup-btn:hover {
  background-color: #b86e4e;
  box-shadow: 0 4px 10px rgba(166, 93, 61, 0.3);
}

/* Service Detail Cards & Sub-galleries */
.service-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .service-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card-info {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-info p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .service-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

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

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


