/* Base */
:root {
  --bg: #fafaf9;
  --surface: #ffffff;
  --text: #1c1917;
  --text-light: #78716c;
  --primary: #059669;
  --primary-dark: #047857;
  --accent: #0ea5e9;
  --border: #e7e5e4;
  --container: 1200px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Gold color palette */
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-darker: #9a7a0f;
  --gold-light: #e6c547;
  --gold-accent: #f4ebc9;
  --gold-muted: #bdb89f;
  
  /* Dark gold for text */
  --dark-green: #b8941f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif Pro', 'Times New Roman', Times, serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  padding-top: calc(80px + env(safe-area-inset-top, 0px));
}

@media (max-width: 1024px) {
  body {
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: linear-gradient(135deg, 
    rgba(252, 252, 252, 0.95) 0%, 
    rgba(248, 250, 252, 0.98) 50%, 
    rgba(252, 252, 252, 0.95) 100%);
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%);
  border-bottom: 1px solid rgba(107, 114, 128, 0.3);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(107, 114, 128, 0.15);
}

.site-header.scrolled {
  background: linear-gradient(135deg, 
    rgba(252, 252, 252, 0.98) 0%, 
    rgba(248, 250, 252, 1) 50%, 
    rgba(252, 252, 252, 0.98) 100%);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid rgba(107, 114, 128, 0.4);
  box-shadow: 0 6px 24px rgba(107, 114, 128, 0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 80px;
  transition: var(--transition);
}

.site-header.scrolled .container {
  padding: 0 24px;
}

.logo {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-size: 140px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 6px;
  line-height: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100px;
  margin: -4px 0;
}

.logo:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.logo-img {
  height: 67px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .logo-img {
  height: 67px;
  width: auto;
}

/* Ensure all logo images maintain aspect ratio */
.logo img,
.logo-img {
  height: 67px;
  width: auto;
  object-fit: contain;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-lang-select {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-lang-select:hover {
  border-color: #255e50;
  background: #fff;
}

.nav-lang-select:focus {
  outline: none;
  border-color: #255e50;
  box-shadow: 0 0 0 2px rgba(37, 94, 80, 0.1);
}


.menu {
  list-style: none;
  display: none;
  gap: 8px;
  position: relative;
}

.menu a {
  font-family: 'Source Serif Pro', 'Times New Roman', Times, serif;
  color: #1a3d33;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.menu a:hover {
  transform: translateY(-2px);
}

.menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--primary);
}

/* Animated hamburger icon - three bars that transform to X */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #1a3d33;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle:hover {
  transform: scale(1.1);
}

.nav-toggle:hover span {
  background: #255e50;
}

.nav-toggle:focus {
  outline: 2px solid #255e50;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-toggle[aria-expanded="true"] {
  gap: 0;
}

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

/* Language Selector */
#langSelect {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 36px 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2378716c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

#langSelect:hover {
  border-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  padding: 14px 28px;
  text-decoration: none;
  font-family: 'Source Serif Pro', 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 18px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(180deg, #2d6a5a 0%, #255e50 50%, #1e4a3d 100%);
  color: white;
  border: 1px solid rgba(30, 74, 61, 0.6);
  box-shadow: 0 4px 14px rgba(37, 94, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #3a7c6a 0%, #2d6a5a 50%, #255e50 100%);
  transform: translateY(-2px);
  border-color: rgba(45, 106, 90, 0.8);
  box-shadow: 0 8px 24px rgba(37, 94, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn.secondary {
  background: linear-gradient(180deg, #faf9f6 0%, #f5f4f0 50%, #ebe9e4 100%);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn.secondary:hover {
  background: linear-gradient(180deg, #fff 0%, #faf9f6 50%, #f5f4f0 100%);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 0 1px var(--primary);
}

.btn.ghost {
  background: linear-gradient(180deg, #2d6a5a 0%, #255e50 50%, #1e4a3d 100%);
  color: #ffffff;
  border: 1px solid rgba(30, 74, 61, 0.6);
  box-shadow: 0 2px 8px rgba(37, 94, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn.ghost:hover {
  background: linear-gradient(180deg, #3a7c6a 0%, #2d6a5a 50%, #255e50 100%);
  color: #ffffff;
  border-color: rgba(45, 106, 90, 0.8);
  box-shadow: 0 4px 14px rgba(37, 94, 80, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Hero */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/images/massage-hero.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: transparent;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #f4ebc9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 0.8s ease;
  letter-spacing: 0.01em;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: #f8f4e6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto 32px auto;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

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

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

/* Dark green sections with gold text */
.accent {
  background: #255e50;
  color: var(--gold-light);
}

.accent h2,
.accent h1,
.accent h3,
.accent p,
.accent li {
  color: var(--gold-light);
}

.accent .section-intro {
  color: var(--gold-muted);
}

.accent h2 {
  color: var(--gold-accent);
}

.services {
  background: #e8eaed;
  color: var(--text);
}

.services h2,
.services h3,
.services p {
  color: var(--text);
}

.services .section-intro {
  color: var(--text-light);
}

.services h2 {
  color: var(--gold-darker);
}

.services .card p {
  color: var(--dark-green);
}

.gallery {
  background: #e8eaed;
  color: var(--text);
}

.testimonials {
  background: #e8eaed;
  color: var(--text);
}

.pricing {
  background: #ffffff;
  color: var(--text);
}

.pricing h2,
.pricing .disclaimer {
  color: var(--text);
}

h2 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: center;
  color: var(--gold-darker);
  letter-spacing: 0.02em;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 64px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-radius: 12px;
}

.card:hover img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.card h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  font-size: 22px;
  font-weight: 900;
  margin: 24px 24px 12px;
  color: var(--gold-darker);
  letter-spacing: 0.01em;
}

.card p {
  color: var(--gold);
  margin: 0 24px 24px;
  line-height: 1.6;
}

/* About Section */
.about {
  text-align: center;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-media {
  grid-column: 1 / 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  min-width: 0;
  min-height: 400px;
  height: 500px;
  line-height: 0;
  display: block;
  position: relative;
  flex-shrink: 0;
}

.about-content {
  grid-column: 2 / 3;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-media {
    grid-column: 1;
    max-width: 100%;
    height: 500px;
    min-height: 400px;
  }
  
  .about-content {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .about-media {
    height: 400px;
    min-height: 350px;
  }
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: var(--transition);
  cursor: pointer;
}

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

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-content h2 {
  text-align: left;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
  text-align: left;
}

.about-content ul {
  list-style: none;
  margin: 32px 0;
  text-align: left;
}

.about-content li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-light);
}

.about-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.about-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Gallery */
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.masonry img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.masonry img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 400px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 320px;
  }
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

/* Pricing */
.pricing-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 48px 0;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pricing-category {
  background: #fefcf8;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid rgba(37, 94, 80, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
              0 4px 16px rgba(37, 94, 80, 0.15);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #255e50, #2d6a5b, #255e50);
  border-radius: 20px 20px 0 0;
  opacity: 0.8;
}

.pricing-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
              0 8px 24px rgba(37, 94, 80, 0.2);
  border-color: rgba(37, 94, 80, 0.7);
}

.pricing-category:hover::before {
  opacity: 1;
}

.pricing-category h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-accent);
  margin: -34px -34px 0 -34px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 20px 32px;
  border-radius: 20px 20px 0 0;
  background: #255e50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: calc(100% + 68px);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  line-height: 1.2;
  padding-top: 24px;
  padding-bottom: 24px;
  z-index: 1;
}

/* Extend green background to cover service intro section */
.pricing-category {
  position: relative;
}

.pricing-service-intro {
  background: linear-gradient(135deg, #FCF8F0 0%, #FBF5EA 25%, #FAF2DE 50%, #FBF5EA 75%, #FAF2DE 100%);
  margin: 0 -32px 40px -32px;
  padding: 32px;
  width: calc(100% + 64px);
  box-sizing: border-box;
}

.pricing-category h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4) 50%, 
    transparent
  );
  pointer-events: none;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto; /* reserve column for actions */
  gap: 16px;
  padding: 16px;
  border-bottom: 2px solid var(--primary);
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  text-align: center;
  align-items: center; /* vertically center header labels */
}

/* Ensure the header 'actions' placeholder matches button column width */
.pricing-header span:last-child { justify-self: end; min-width: 180px; }

.pricing-header span:first-child {
  text-align: left;
  padding-left: 112px; /* 100px image width + 12px gap to align with service text */
}

.pricing-table.accessories .pricing-header {
  grid-template-columns: 2fr 1fr;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto; /* actions at end */
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid rgba(37, 94, 80, 0.1);
  transition: var(--transition);
  align-items: center; /* vertically center prices and service */
}

/* Alternate background colors for pricing rows */
.pricing-row:nth-child(odd) {
  background: #fdf9f2; /* lighter gold */
}

.pricing-row:nth-child(even) {
  background: #fefcf8; /* very light gold */
}

.pricing-table.accessories .pricing-row {
  grid-template-columns: 2fr 1fr;
}

.pricing-row:hover {
  background: rgba(37, 94, 80, 0.08) !important;
  border-radius: 8px;
}

@media (max-width: 1023px) {
  .pricing-row:hover {
    background: #f8f9fa !important;
    border-radius: 12px !important;
  }
}

.pricing-row {
  position: relative;
  transition: none; /* no hover animations */
}

.pricing-row .booking-btn {
  position: static;
  justify-self: end;
  align-self: center;
  opacity: 1;
  white-space: nowrap;
  font-size: 15px; /* larger text for desktop */
  padding: 8px 16px; /* pill look */
  border-radius: 999px; /* pill */
  font-weight: 700; /* bold text */
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

/* Ensure buttons are always visible; no hover dependency */
.pricing-row:hover .booking-btn { opacity: 1; }

.pricing-row .booking-btn.primary {
  background: linear-gradient(180deg, #2d6a5a 0%, #255e50 50%, #1e4a3d 100%);
  color: var(--gold-accent);
  border: 1px solid rgba(30, 74, 61, 0.6);
  box-shadow: 0 2px 8px rgba(37, 94, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.pricing-row .booking-btn.primary:hover {
  background: linear-gradient(180deg, #3a7c6a 0%, #2d6a5a 50%, #255e50 100%);
  border-color: rgba(45, 106, 90, 0.8);
  box-shadow: 0 4px 12px rgba(37, 94, 80, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Light gold Learn More */
.pricing-row .booking-btn.secondary {
  background: linear-gradient(180deg, #fcd34d 0%, #d4af37 50%, #b8960f 100%);
  color: #255e50;
  border: 1px solid rgba(184, 150, 15, 0.5);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.pricing-row .booking-btn.secondary:hover {
  background: linear-gradient(180deg, #fde68a 0%, #fcd34d 50%, #d4af37 100%);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Make both pricing buttons same width */
.pricing-row .booking-actions .booking-btn { min-width: 180px; text-align: center; }

/* Responsive sizing for booking button */
@media (max-width: 1000px) {
  .pricing-row .booking-btn { font-size: 13px; padding: 6px 12px; }
}

@media (max-width: 800px) {
  .pricing-row .booking-btn { font-size: 12px; padding: 5px 10px; }
}

@media (max-width: 600px) {
  .pricing-row .booking-btn { font-size: 11px; padding: 4px 8px; }
}

.pricing-row span:first-child {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  justify-self: start;
}

.pricing-row .price {
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  font-size: 16px;
  justify-self: center; /* align with header labels */
}

.pricing-row .price.unavailable {
  color: var(--text-light);
  font-style: italic;
}

/* Pricing actions container (two buttons at row end) */
.pricing-row .booking-actions {
  justify-self: end;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.pricing-footer {
  margin-top: 48px;
  padding: 32px;
  background: rgba(37, 94, 80, 0.05);
  border-radius: 16px;
  text-align: center;
}

.pricing-note {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 500;
}

.pricing-booking {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-book-now-btn {
  display: inline-block;
  background: linear-gradient(180deg, #2d6a5a 0%, #255e50 50%, #1e4a3d 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin: 16px 0;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 94, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(30, 74, 61, 0.6);
  cursor: pointer;
}

.pricing-book-now-btn:hover {
  background: linear-gradient(180deg, #3a7c6a 0%, #2d6a5a 50%, #255e50 100%);
  transform: translateY(-2px);
  border-color: rgba(45, 106, 90, 0.8);
  box-shadow: 0 8px 20px rgba(37, 94, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-effective {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}


/* Responsive Pricing Tables (tablet + phone — avoids cramped grid between 769px–1023px) */
@media (max-width: 1023px) {
  /* Make pricing section border as wide as possible on mobile */
  .pricing .container {
    padding: 0 5px;
  }
  
  .pricing-category {
    padding: 0 5px 20px 5px;
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef !important;
    border: 2px solid rgba(37, 94, 80, 0.5) !important;
  }
  
  .pricing-category h3 {
    font-size: 22px;
    padding: 16px 24px;
    margin: 0px -5px 0 -5px;
    margin-bottom: 0 !important;
    width: calc(100% + 10px);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border-bottom: none !important;
  }
  
  .pricing-service-intro {
    margin: 0 -5px 24px -5px !important;
    width: calc(100% + 10px) !important;
  }
  
  .pricing-table {
    display: block;
    padding-top: 24px;
  }
  
  .pricing-header {
    display: none;
  }
  
  .pricing-row {
    display: block;
    background: #f8f9fa !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #e9ecef !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    transition: none !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    will-change: auto !important;
    animation: none !important;
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  /* First service card - add top padding */
  .pricing-row:first-child {
    margin-top: 24px !important;
  }
  
  /* Last service card - reduce bottom padding */
  .pricing-row:last-child {
    margin-bottom: 8px !important;
  }
  
  /* Completely disable hover on mobile - use media query to prevent touch hover */
  @media (hover: none) and (pointer: coarse) {
    .pricing-row:hover,
    .pricing-row:active,
    .pricing-row:focus,
    .pricing-row:focus-within {
      pointer-events: auto;
    }
  }
  
  /* Remove all hover effects on mobile - prevent any movement */
  .pricing-row:hover,
  .pricing-row:active,
  .pricing-row:focus,
  .pricing-row:focus-within { 
    background: #f8f9fa !important; 
    transform: none !important; 
    translate: none !important;
    scale: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important; 
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #e9ecef !important;
    transition: none !important;
    will-change: auto !important;
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  /* First card hover - maintain top margin */
  .pricing-row:first-child:hover,
  .pricing-row:first-child:active,
  .pricing-row:first-child:focus,
  .pricing-row:first-child:focus-within {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  
  /* Last card hover - maintain bottom margin to prevent border shift */
  .pricing-row:last-child:hover,
  .pricing-row:last-child:active,
  .pricing-row:last-child:focus,
  .pricing-row:last-child:focus-within {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }
  
  /* Regular cards hover - maintain margins */
  .pricing-row:not(:first-child):not(:last-child):hover,
  .pricing-row:not(:first-child):not(:last-child):active,
  .pricing-row:not(:first-child):not(:last-child):focus,
  .pricing-row:not(:first-child):not(:last-child):focus-within {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }
  
  /* Disable all transitions and transforms on child elements - use vendor prefixes */
  .pricing-row *,
  .pricing-row *:hover,
  .pricing-row *:active,
  .pricing-row *:focus {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    -webkit-animation: none !important;
    will-change: auto !important;
  }
  
  .pricing-row span,
  .pricing-row .service-with-thumb,
  .pricing-row .service-name,
  .pricing-row .price,
  .pricing-row img,
  .pricing-row .service-thumb {
    transition: none !important;
    -webkit-transition: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    -webkit-animation: none !important;
    will-change: auto !important;
  }
  
  .pricing-row span:hover,
  .pricing-row .service-with-thumb:hover,
  .pricing-row .service-name:hover,
  .pricing-row .price:hover,
  .pricing-row img:hover,
  .pricing-row .service-thumb:hover {
    transition: none !important;
    -webkit-transition: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    -webkit-animation: none !important;
  }
  
  .pricing-row span:hover,
  .pricing-row .service-with-thumb:hover,
  .pricing-row .service-name:hover,
  .pricing-row .price:hover,
  .pricing-row img:hover {
    transition: none !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
  }
  
  .pricing-row .booking-btn {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 0;
    text-align: center;
  }
  
  /* Buttons inside booking-actions should not be full width */
  .pricing-row .booking-actions .booking-btn {
    width: auto;
    display: inline-block;
    margin-top: 0;
  }
  
  .pricing-row span:first-child,
  .pricing-row .service-with-thumb {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    display: flex !important;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: none !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    will-change: auto !important;
  }
  
  .pricing-row span:first-child:hover,
  .pricing-row .service-with-thumb:hover {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    transition: none !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    animation: none !important;
  }
  
  .pricing-row .service-thumb,
  .pricing-row img.service-thumb {
    transition: none !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    will-change: auto !important;
    width: 80px !important;
    height: 80px !important;
  }
  
  .pricing-row .service-thumb:hover,
  .pricing-row img.service-thumb:hover {
    transform: none !important;
    scale: none !important;
    box-shadow: none !important;
    transition: none !important;
    width: 80px !important;
    height: 80px !important;
  }
  
  .pricing-row .service-name {
    transition: none !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    will-change: auto !important;
  }
  
  .pricing-row .service-name:hover {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    transition: none !important;
    animation: none !important;
  }
  
  .pricing-row span:first-child::after,
  .pricing-row .service-with-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    right: -5px;
    height: 2px;
    background: var(--gold-light);
  }
  
  .pricing-row .price {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    margin: 8px 4px 0 4px;
    min-width: 80px;
    text-align: center;
  }

  /* Center the price buttons row */
  .pricing-row {
    text-align: center;
  }
  
  /* Keep service name left-aligned */
  .pricing-row span:first-child,
  .pricing-row .service-with-thumb {
    text-align: left;
  }

  /* Put action buttons in one row: centered */
  .pricing-row .booking-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
    width: 100%;
  }
  .pricing-row .booking-actions .booking-btn { 
    min-width: 0; 
    width: 100%;
    text-align: center;
  }
  
  .pricing-row .price::before {
    content: attr(data-duration) ": ";
    font-size: 12px;
    opacity: 0.9;
  }
  
  .pricing-row .price:nth-child(2)::before {
    content: "60min: ";
  }
  
  .pricing-row .price:nth-child(3)::before {
    content: "90min: ";
  }
  
  .pricing-row .price:nth-child(4)::before {
    content: "120min: ";
  }
  
  .pricing-row .price.unavailable {
    background: #e9ecef;
    color: #6c757d;
  }
  
  .pricing-footer {
    padding: 20px 16px;
  }
  
  .pricing-note {
    font-size: 16px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  /* Make pricing section border as wide as possible on mobile */
  .pricing .container {
    padding: 0 4px;
  }
  
  .pricing-category {
    padding: 16px 4px;
    background: #fefcf8 !important;
  }
  
  .pricing-category h3,
  .category-section .pricing-category h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: -16px -4px 0 -4px !important;
    margin-bottom: 0 !important;
    width: calc(100% + 8px) !important;
    padding: 16px 16px !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border-radius: 12px 12px 0 0 !important;
    border-bottom: none !important;
    background: #255e50 !important;
    color: var(--gold-accent) !important;
  }
  
  .pricing-category h3::before {
    display: none !important;
  }
  
  .pricing-service-intro {
    margin-top: 0 !important;
  }
  
  .pricing-row {
    padding: 16px;
    margin-bottom: 12px;
  }
  
  .pricing-row span:first-child {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .pricing-row .price {
    padding: 6px 12px;
    font-size: 14px;
    min-width: 70px;
    margin: 6px 6px 0 0;
  }
  
  .pricing-row .price::before {
    font-size: 11px;
  }
  
  .pricing-row .booking-btn {
    font-size: 14px;
    padding: 10px 16px;
    margin-top: 12px;
  }
}

/* Testimonials */
.testimonials {
  overflow: hidden;
}

.carousel {
  position: relative;
  max-width: 100%;
  margin: 48px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 24px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 350px;
  flex-shrink: 0;
}

.testimonial .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.testimonial blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  min-height: 80px;
}

.testimonial figcaption {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
  color: var(--text);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

/* Contact */
/* Contact section wrapper with background image (managed in admin: upravljanje slik) */
.contact-section-wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-image: url('/assets/images/massage-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
  pointer-events: none;
}

.contact-section-wrapper .contact {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.contact {
  background: transparent;
  padding: 56px 0 64px;
}

.contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-title-glass {
  display: inline-block;
  padding: 16px 40px;
  background: rgba(15, 35, 30, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact h2 {
  margin: 0;
  color: #f8ecd8;
}

.contact-intro {
  color: var(--text-light);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

.contact-info-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(15, 35, 30, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-schedule-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 34px;
  background: linear-gradient(160deg, #0d261f 0%, #153529 20%, #1e4a3d 45%, #255e50 70%, #1a4035 100%);
  border: 2px solid transparent;
  border-radius: 18px;
  background-clip: padding-box;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8ecd8;
  line-height: 1.5;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.5),
    0 0 0 2px #255e50,
    0 0 0 3px rgba(37, 94, 80, 0.3),
    0 0 40px rgba(37, 94, 80, 0.12),
    inset 0 1px 0 rgba(212, 175, 55, 0.25);
}

.contact-schedule-hero .schedule-hours {
  color: #c9b896;
}

.contact-intro-inner {
  margin: 24px 0 0 0;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(248, 236, 216, 0.95);
  text-align: center;
}

.contact-info-panel .contact-actions {
  margin-top: auto;
  padding-top: 20px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.contact-actions .btn:last-child {
  margin-top: 8px;
}

.contact-actions .btn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
  border-radius: 12px;
  font-weight: 600;
}

.btn-icon {
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: block;
  opacity: 1;
  width: 20px;
  height: 20px;
}

.contact-actions .btn .btn-icon {
  position: static;
}

.btn-text {
  flex: 1;
  text-align: center;
  font-size: 13px;
  min-width: 0;
  line-height: 1.3;
  word-break: break-word;
}

.contact-actions .btn .btn-text {
  margin-left: 0;
  margin-right: 0;
  font-size: 15px;
  color: inherit;
}

/* Contact buttons - distinct colors with borders and gradients */
.contact-actions .btn.primary {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  color: white;
  border: 1px solid rgba(29, 78, 216, 0.6);
  box-shadow: 0 2px 12px rgba(24, 119, 242, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.contact-actions .btn.primary:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-actions .btn.primary .btn-icon {
  fill: white !important;
  color: white !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.contact-actions .btn.ghost {
  background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
  color: white;
  border: 1px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.contact-actions .btn.ghost:hover {
  background: linear-gradient(180deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-actions .btn.ghost .btn-icon {
  fill: white !important;
  color: white !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.contact-actions .btn.whatsapp {
  background: linear-gradient(180deg, #34d399 0%, #10b981 50%, #059669 100%);
  color: white;
  border: 1px solid rgba(5, 150, 105, 0.5);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.contact-actions .btn.whatsapp:hover {
  background: linear-gradient(180deg, #6ee7b7 0%, #34d399 50%, #10b981 100%);
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-actions .btn.whatsapp .btn-icon {
  fill: white !important;
  color: white !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.contact-actions .btn.secondary {
  background: linear-gradient(180deg, #fcd34d 0%, #d4af37 50%, #b8960f 100%);
  color: #1a1a1a;
  border: 1px solid rgba(184, 150, 15, 0.5);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}

.contact-actions .btn.secondary:hover {
  background: linear-gradient(180deg, #fde68a 0%, #fcd34d 50%, #d4af37 100%);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-actions .btn.secondary .btn-icon {
  fill: #1a1a1a !important;
  color: #1a1a1a !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.location-info {
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.location-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.location-info p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
  white-space: pre-line;
}

/* Contact Map Panel - Address badge + Map, dark semi-transparent glass */
.contact-map-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: rgba(15, 30, 45, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-map-panel:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-map-panel:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Location panel - lighter blue badge with light gold text (matches schedule badge text colors) */
.contact-location-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 34px;
  background: linear-gradient(160deg, #15324d 0%, #1a4a7a 20%, #1e5690 45%, #2563a8 70%, #1e4d85 100%);
  border: 2px solid transparent;
  border-radius: 18px;
  background-clip: padding-box;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.15),
    0 0 0 2px #2563a8,
    0 0 0 3px rgba(37, 99, 235, 0.25),
    0 0 40px rgba(45, 115, 184, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8ecd8;
  line-height: 1.5;
}

.contact-location-hero .location-address {
  color: #f5f4f1;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.5em;
  line-height: 1.5;
  display: block;
}

.contact-map-panel .map-container {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 25, 40, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-column-map .map-container {
  min-height: 180px;
}

.map-container {
  overflow: hidden;
  height: 360px;
}

.contact-map-panel .map-container {
  flex: 1;
  min-height: 200px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer */
.site-footer {
  background: #1c1917;
  color: #d6d3d1;
  padding: 28px 0 20px;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-column-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4af37;
}

.footer-hours {
  font-size: 14px;
  line-height: 1.6;
  color: #e7e5e4;
}

.footer-hours a {
  display: inline-block;
  margin-top: 6px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-hours a:hover {
  color: #e5c44a;
}

.footer-address {
  margin-top: 18px;
}

.footer-address .footer-column-title {
  margin-bottom: 6px;
}

.footer-address-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #e7e5e4;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-legal-links a {
  color: #a8a29e;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #d6d3d1;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a8a29e;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #d6d3d1;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #a8a29e;
  opacity: 0.9;
}

.footer-contact-link:hover .footer-contact-icon {
  color: #d6d3d1;
}

.footer-contact-whatsapp .footer-contact-icon {
  color: #25D366;
  opacity: 1;
}

.footer-contact-btn {
  margin-top: 4px;
  padding: 8px 16px;
  background: linear-gradient(180deg, rgba(252, 211, 77, 0.35) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(184, 150, 15, 0.2) 100%);
  color: #d4af37 !important;
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}

.footer-contact-btn .footer-contact-icon {
  color: #d4af37;
  opacity: 1;
}

.footer-contact-btn:hover {
  background: linear-gradient(180deg, rgba(253, 230, 138, 0.4) 0%, rgba(252, 211, 77, 0.35) 50%, rgba(212, 175, 55, 0.3) 100%);
  border-color: rgba(212, 175, 55, 0.65);
  color: #e5c44a !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 8px rgba(212, 175, 55, 0.2);
}

.footer-contact-btn:hover .footer-contact-icon {
  color: #e5c44a;
}

.footer-column-social .social-links {
  margin-top: 2px;
}

.footer-copyright {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #a8a29e;
  text-align: center;
  width: 100%;
}

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

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-column {
    align-items: center;
  }
  .footer-legal-links {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 24px 0 16px;
  }
  .footer-content {
    gap: 20px;
  }
  .footer-hours {
    font-size: 13px;
  }
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a8a29e;
  font-size: 13px;
}

.footer-lang-select {
  background: #374151;
  color: #d6d3d1;
  border: 1px solid #4b5563;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: 'Source Serif Pro', 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: var(--transition);
}

.footer-lang-select:hover {
  background: #4b5563;
  border-color: #6b7280;
}

.footer-lang-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: #6b7280;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f3f4f6;
}

.social-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  background: #e5e7eb;
}

/* Branded icon colors */
.social-links .facebook { color: #1877F2; background: #e8f0fe; }
.social-links .facebook:hover { background: #dbe7fd; }
.social-links .instagram { 
  color: #E1306C; 
  background: linear-gradient(135deg, #fdf497 0%, #fd5949 50%, #d6249f 100%);
  color: #fff;
}
.social-links .instagram:hover { filter: brightness(0.95); }
.social-links .tiktok { color: #000000; background: #e6e6e6; }
.social-links .tiktok:hover { background: #d9d9d9; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  animation: slideUp 0.5s ease;
}

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

.cookie-banner p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 14px;
}

.cookie-banner button {
  width: 100%;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal[aria-hidden="true"],
.modal[hidden] {
  display: none;
}

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

.modal[hidden] {
  display: none;
}

.modal-content {
  background: var(--surface);
  border-radius: 24px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  margin: 0;
  text-align: left;
  font-size: 28px;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--bg);
  color: var(--text);
}

.modal-body {
  padding: 32px;
  text-align: justify;
}

.modal-body p {
  text-align: justify;
}

/* Ensure about modal text is justified */
#aboutModal .modal-body {
  text-align: justify !important;
}

#aboutModal .modal-body p {
  text-align: justify !important;
}

/* Modern Alert Modal */
.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alert-modal[aria-hidden="false"]:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.alert-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeInBackdrop 0.3s ease;
}

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

.alert-modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 1;
  animation: alertModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alertModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.alert-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.alert-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  animation: alertBarSlide 0.5s ease 0.2s forwards;
}

@keyframes alertBarSlide {
  to { transform: scaleX(1); }
}

.alert-modal-content.error::before {
  background: #ef4444;
}

.alert-modal-content.success::before {
  background: #10b981;
}

.alert-modal-content.warning::before {
  background: #f59e0b;
}

.alert-modal-content.info::before {
  background: #3b82f6;
}

.alert-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: #f0fdf4;
  animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.alert-modal-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.alert-modal-content.error .alert-modal-icon {
  background: #fef2f2;
  color: #ef4444;
}

.alert-modal-content.success .alert-modal-icon {
  background: #f0fdf4;
  color: #10b981;
}

.alert-modal-content.warning .alert-modal-icon {
  background: #fffbeb;
  color: #f59e0b;
}

.alert-modal-content.info .alert-modal-icon {
  background: #eff6ff;
  color: #3b82f6;
}

.alert-modal-body {
  text-align: center;
  margin-bottom: 24px;
}

.alert-modal-title {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.alert-modal-message {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
  white-space: pre-line;
}

.alert-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1f2937;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 20001;
  opacity: 1 !important;
  visibility: visible !important;
}

.alert-modal-close:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  color: #111827;
  transform: scale(1.05);
}

.alert-modal-close:active {
  transform: scale(0.95);
}

.alert-modal-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.alert-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.alert-modal-button {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.alert-modal-button-primary {
  background: linear-gradient(180deg, #2d6a5a 0%, #255e50 50%, #1e4a3d 100%);
  color: #ffffff;
  border: 1px solid rgba(30, 74, 61, 0.6);
  box-shadow: 0 4px 12px rgba(37, 94, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.alert-modal-button-primary:hover {
  background: linear-gradient(180deg, #3a7c6a 0%, #2d6a5a 50%, #255e50 100%);
  transform: translateY(-2px);
  border-color: rgba(45, 106, 90, 0.8);
  box-shadow: 0 6px 20px rgba(37, 94, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.alert-modal-button-secondary {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 50%, #e5e7eb 100%);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.alert-modal-button-secondary:hover {
  background: linear-gradient(180deg, #fff 0%, #f9fafb 50%, #f3f4f6 100%);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Responsive */
@media (max-width: 640px) {
  .alert-modal-container {
    max-width: calc(100% - 32px);
  }
  
  .alert-modal-content {
    padding: 24px;
  }
  
  .alert-modal-title {
    font-size: 20px;
  }
  
  .alert-modal-message {
    font-size: 15px;
  }
  
  .alert-modal-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  
  .alert-modal-icon svg {
    width: 28px;
    height: 28px;
  }
}

.about-detail-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.about-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--text);
  white-space: pre-line;
}

/* Responsive */
@media (min-width: 1025px) {
  .menu {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .menu.open {
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .about-content h2,
  .about-content p {
    text-align: center;
  }
  
  .about-actions {
    justify-content: center;
  }
  
  .testimonial {
    min-width: 300px;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-schedule-hero {
    padding: 20px 22px;
    font-size: 1.1rem;
  }

  .contact-location-hero {
    padding: 20px 22px;
    font-size: 1.1rem;
  }

  .contact-location-hero .location-address {
    font-size: 1.1rem;
    margin-top: 0.5em;
  }
  
  .contact-schedule-hero .contact-schedule-icon {
    width: 28px;
    height: 28px;
  }
  
  .contact-column-info {
    order: 1;
  }
  
  .contact-column-map {
    order: 2;
  }
  
  .contact-map-panel .map-container {
    min-height: 180px;
  }
  
  .contact-column-map .map-container {
    min-height: 180px;
  }
  
  .about-media {
    order: -1;
  }
  
  .about-image {
    order: -1;
  }
  
  .hero {
    padding: 160px 0 60px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero p {
    max-width: 100%;
  }
  
  section {
    padding: 60px 0;
  }
  
  .menu.open {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(37, 94, 80, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
    z-index: 999;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .menu.open li {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .menu.open li:nth-child(1) { animation-delay: 0.1s; }
  .menu.open li:nth-child(2) { animation-delay: 0.15s; }
  .menu.open li:nth-child(3) { animation-delay: 0.2s; }
  .menu.open li:nth-child(4) { animation-delay: 0.25s; }
  .menu.open li:nth-child(5) { animation-delay: 0.3s; }
  .menu.open li:nth-child(6) { animation-delay: 0.35s; }
  
  .menu.open a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a3d33;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(37, 94, 80, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .menu.open a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 94, 80, 0.1), transparent);
    transition: left 0.5s;
  }
  
  .menu.open a:hover {
    transform: translateY(-2px);
    background: rgba(37, 94, 80, 0.05);
    border-color: rgba(37, 94, 80, 0.2);
    box-shadow: 0 4px 20px rgba(37, 94, 80, 0.15);
  }
  
  .menu.open a:hover::before {
    left: 100%;
  }
  
  .menu.open a::after {
    display: none;
  }
  
  /* Very small screens */
  @media (max-width: 480px) {
    .menu.open {
      padding: 1.5rem 1rem;
      gap: 0.25rem;
    }
    
    .menu.open a {
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
    }
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px) scaleY(0.8);
    }
    to {
      opacity: 1;
      transform: translateY(0) scaleY(1);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 1;
      transform: translateY(0) scaleY(1);
    }
    to {
      opacity: 0;
      transform: translateY(-20px) scaleY(0.8);
    }
  }
  
  .footer-content {
    text-align: center;
    gap: 16px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 16px;
  }
}

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

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Smooth scrolling utilities - Scroll reveal animations */
.reveal,
[data-reveal] {
  opacity: 0 !important;
  transform: translateY(50px) !important;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active,
.reveal.visible,
[data-reveal].active,
[data-reveal].visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Reveal child elements - subtle fade in with slight upward movement */
[data-reveal-child] {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

[data-reveal-child].visible,
[data-reveal-child].active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Service Thumbnails in Pricing Rows */
.service-with-thumb {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.service-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 94, 80, 0.3);
}

@media (max-width: 768px) {
  .service-thumb {
    transition: none !important;
  }
  
  .service-thumb:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

.service-name {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .service-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    transition: none !important;
  }
  
  .service-thumb:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Specifically disable hover effects on service elements within pricing rows */
  .pricing-row .service-thumb,
  .pricing-row .service-thumb:hover {
    transform: none !important;
    scale: none !important;
    translate: none !important;
    transition: none !important;
    box-shadow: none !important;
  }
  
  .service-with-thumb {
    gap: 8px;
    display: flex !important;
    align-items: center;
    transition: none !important;
  }
  
  .service-with-thumb:hover {
    transform: none !important;
  }
  
  /* Specifically disable hover effects on service-with-thumb within pricing rows */
  .pricing-row .service-with-thumb,
  .pricing-row .service-with-thumb:hover {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    transition: none !important;
  }
  
  .service-name {
    color: var(--primary);
    transition: none !important;
  }
  
  .service-name:hover {
    transform: none !important;
  }
  
  /* Specifically disable hover effects on service-name within pricing rows */
  .pricing-row .service-name,
  .pricing-row .service-name:hover {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    transition: none !important;
  }
}

/* Service Detail Modal */
.service-detail-modal {
  max-width: 800px;
  width: 90%;
}

.service-detail-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.service-detail-description {
  line-height: 1.8;
  text-align: justify;
}

.service-detail-description p {
  margin-bottom: 1rem;
}

.service-detail-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-detail-modal {
    width: 95%;
    max-width: none;
  }
  
  .service-detail-image img {
    max-height: 250px;
  }
}

