/* Nimrodel Mythical Theme - Nature-Inspired Color Palette */

:root {
  /* Primary Colors - Sunset Inspired */
  --dark-bg: #2C1810;
  --sage-green: #D4A574;
  --mist-gray: #F5E6D3;
  --ivory-white: #FFF8F0;
  --dawn-pink: #FF6B35;
  --night-blue: #1A0F0A;
  
  /* Legacy variables for compatibility */
  --beige: var(--ivory-white);
  --stone-grey: var(--mist-gray);
  --pastel-orange: var(--dawn-pink);
  --accent: var(--sage-green);
  --text-dark: var(--night-blue);
  --white: var(--ivory-white);
  --shadow: 0 2px 12px rgba(44, 24, 16, 0.15);
  
  /* Sunset gradients */
  --ethereal-gradient: linear-gradient(135deg, rgba(212, 165, 116, 0.8), rgba(255, 107, 53, 0.6));
  --forest-gradient: linear-gradient(45deg, rgba(44, 24, 16, 0.9), rgba(212, 165, 116, 0.8));
  --mist-gradient: linear-gradient(180deg, rgba(245, 230, 211, 0.4), rgba(255, 248, 240, 0.2));
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Lora', serif;
  background: var(--dark-bg);
  color: var(--night-blue);
  min-height: 100vh;
  overflow-x: hidden;
  height: 100%;
}

/* Top Navigation Bar */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--forest-gradient);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--sage-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(44, 24, 16, 0.3);
}

/* Language Toggle - Small Version */
.lang-toggle-small {
  background: var(--dark-bg);
  border: 2px solid var(--ivory-white);
  padding: 0.5rem;
  min-width: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lang-toggle-small:hover {
  background: var(--sage-green);
  transform: scale(1.1) rotate(5deg);
}

/* Enhanced Hamburger Menu */
.hamburger-menu {
  background: linear-gradient(135deg, var(--dawn-pink), var(--sage-green));
  border: 2px solid var(--ivory-white);
  padding: 0.8rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.hamburger-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hamburger-menu:hover::before {
  left: 100%;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--ivory-white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ivory-white);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover .hamburger-line::before {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger-menu:hover {
  background: linear-gradient(135deg, var(--sage-green), var(--dawn-pink));
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 25px rgba(163, 177, 138, 0.4);
}

.hamburger-menu.active {
  background: linear-gradient(135deg, var(--dawn-pink), var(--sage-green));
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(163, 177, 138, 0.5);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: var(--ivory-white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  background: transparent;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--ivory-white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Enhanced Hamburger Dropdown */
.hamburger-dropdown {
  position: fixed;
  top: 70px;
  right: 0;
  background: 
    linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(62, 31, 13, 0.9)),
    radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 40%);
  backdrop-filter: blur(15px);
  border-left: 2px solid rgba(212, 165, 116, 0.3);
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 1.5rem 0;
  min-width: 250px;
  transform: translateX(100%) scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  box-shadow: 
    -10px 10px 30px rgba(44, 24, 16, 0.4),
    inset 0 1px 0 rgba(255, 248, 240, 0.1);
  border-radius: 0 0 0 20px;
  opacity: 0;
  overflow: hidden;
}

.hamburger-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      rgba(212, 165, 116, 0.03) 1px,
      transparent 2px,
      transparent 40px
    );
  border-radius: 0 0 0 20px;
  pointer-events: none;
}

.hamburger-dropdown.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.hamburger-dropdown a {
  display: block;
  color: var(--ivory-white);
  text-decoration: none;
  padding: 1.2rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
  margin: 0.1rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hamburger-dropdown a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 107, 53, 0.15), 
    rgba(212, 165, 116, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.hamburger-dropdown a:hover::before {
  left: 100%;
}

.hamburger-dropdown a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--dawn-pink), var(--sage-green));
  transition: height 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.hamburger-dropdown a:hover {
  background: 
    linear-gradient(90deg, 
      rgba(255, 107, 53, 0.1), 
      rgba(212, 165, 116, 0.08));
  border-left-color: var(--dawn-pink);
  color: var(--ivory-white);
  padding-left: 2.3rem;
  transform: translateX(5px);
  box-shadow: 
    inset 0 0 20px rgba(255, 107, 53, 0.1),
    0 0 15px rgba(212, 165, 116, 0.2);
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.hamburger-dropdown a:hover::after {
  height: 100%;
}

/* Hamburger Menu Animation for Page Load */
@keyframes hamburgerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hamburger-menu {
  animation: hamburgerFloat 3s ease-in-out infinite;
}

/* Dropdown Item Stagger Animation */
.hamburger-dropdown a {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-dropdown.active a {
  opacity: 1;
  transform: translateX(0);
}

.hamburger-dropdown.active a:nth-child(1) {
  transition-delay: 0.1s;
}

.hamburger-dropdown.active a:nth-child(2) {
  transition-delay: 0.2s;
}

.hamburger-dropdown.active a:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-dropdown.active a:nth-child(4) {
  transition-delay: 0.4s;
}

.hamburger-dropdown.active a:nth-child(5) {
  transition-delay: 0.5s;
}

/* Responsive Hamburger Menu */
@media (max-width: 768px) {
  .hamburger-menu {
    padding: 0.7rem;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2.5px;
  }
  
  .hamburger-dropdown {
    min-width: 200px;
    padding: 1rem 0;
    top: 60px;
  }
  
  .hamburger-dropdown a {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hamburger-dropdown {
    min-width: 180px;
    right: 10px;
    border-radius: 0 0 0 15px;
  }
  
  .hamburger-dropdown a {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}
  .hamburger-dropdown a {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    padding: 0.6rem;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .hamburger-dropdown {
    min-width: 180px;
    padding: 0.8rem 0;
  }
  
  .hamburger-dropdown a {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .hero-content .logo {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .tours-hero .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .tours-hero .hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .tours-hero {
    min-height: 60vh;
  }
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--night-blue);
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mist-gradient);
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1) sepia(0.3);
}

/* Video specific styles */
.hero-bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1) sepia(0.3);
}

.spacer {
  height: 80px;
  background: var(--ivory-white);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--ivory-white);
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  max-width: 800px;
  padding: 2rem;
}

.hero-content .logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--ivory-white);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-shadow: 0 4px 25px rgba(45, 49, 66, 0.9);
  background: linear-gradient(45deg, var(--ivory-white), var(--dawn-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 202, 212, 0.3));
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 600;
  margin: 1rem 0;
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  color: var(--ivory-white);
  line-height: 1.2;
  letter-spacing: 1px;
}
.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-shadow: 0 3px 15px rgba(45, 49, 66, 0.7);
  color: var(--ivory-white);
  opacity: 0.95;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.hero-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.nav-btn {
  background: rgba(163, 177, 138, 0.2);
  color: var(--ivory-white);
  border: 2px solid rgba(250, 249, 246, 0.3);
  padding: 0.9rem 2.5rem;
  border-radius: 2.5rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  text-shadow: 0 2px 8px rgba(45, 49, 66, 0.3);
  min-width: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ethereal-gradient);
  transition: left 0.5s ease;
  z-index: -1;
}

.nav-btn:hover::before {
  left: 0;
}

/* Language Toggle Button - Mythical Design */
.lang-toggle-btn {
  background: var(--forest-gradient);
  border: 2px solid rgba(250, 249, 246, 0.4);
  padding: 0.9rem;
  min-width: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(163, 177, 138, 0.3);
}

/* Language Toggle - Top Left Position */
.lang-toggle-top {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  min-width: 60px;
  padding: 0.9rem;
}

.lang-toggle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.lang-toggle-btn:hover::before {
  left: 100%;
}

.flag-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.flag-icon.us {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjQjIyMjM0Ii8+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIxLjg0NjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB5PSIzLjY5MjMxIiB3aWR0aD0iMjQiIGhlaWdodD0iMS44NDYxNSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeT0iNy4zODQ2MiIgd2lkdGg9IjI0IiBoZWlnaHQ9IjEuODQ2MTUiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHk9IjExLjA3NjkiIHdpZHRoPSIyNCIgaGVpZ2h0PSIxLjg0NjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB5PSIxNC43NjkyIiB3aWR0aD0iMjQiIGhlaWdodD0iMS44NDYxNSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeT0iMTguNDYxNSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjEuODQ2MTUiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHk9IjIyLjE1MzgiIHdpZHRoPSIyNCIgaGVpZ2h0PSIxLjg0NjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB3aWR0aD0iMTAuMzA3NyIgaGVpZ2h0PSIxMi45MjMxIiBmaWxsPSIjM0MzQjZFIi8+Cjwvc3ZnPgo=');
}

.flag-icon.tr {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjRTMwQTEzIi8+CjxjaXJjbGUgY3g9IjkiIGN5PSIxMiIgcj0iNCIgZmlsbD0id2hpdGUiLz4KPGNpcmNsZSBjeD0iMTAuNSIgY3k9IjEyIiByPSIzLjIiIGZpbGw9IiNFMzBBMTMiLz4KPHBhdGggZD0iTTE0IDkuNUwxNS41IDEwLjVMMTQgMTEuNUwxNS41IDEyLjVMMTQgMTMuNUwxNS41IDE0LjVMMTQgMTUuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIwLjgiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
}

.lang-toggle-btn:hover {
  background: var(--sage-green);
  border-color: var(--dawn-pink);
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 30px rgba(163, 177, 138, 0.5);
}

.lang-toggle-btn:hover .flag-icon {
  transform: rotate(360deg) scale(1.1);
}

/* About Button - Earthy Theme */
.nav-btn-about {
  background: rgba(126, 94, 70, 0.3);
  border-color: rgba(126, 94, 70, 0.5);
}

.nav-btn-about:hover {
  background: var(--earthy-brown);
  color: var(--ivory-white);
  border-color: var(--earthy-brown);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(126, 94, 70, 0.4);
}

/* Tours Button - Dawn Theme */
.nav-btn-tours {
  background: rgba(255, 202, 212, 0.3);
  border-color: rgba(255, 202, 212, 0.5);
}

.nav-btn-tours:hover {
  background: var(--dawn-pink);
  color: var(--night-blue);
  border-color: var(--dawn-pink);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 202, 212, 0.5);
}

/* Contact Button - Sage Theme */
.nav-btn-contact {
  background: rgba(163, 177, 138, 0.3);
  border-color: rgba(163, 177, 138, 0.5);
}

.nav-btn-contact:hover {
  background: var(--sage-green);
  color: var(--ivory-white);
  border-color: var(--sage-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(163, 177, 138, 0.5);
}
.btn {
  background: var(--pastel-orange);
  color: var(--text-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* Footer Styles - Rich Mythical Theme */
.footer {
  background: linear-gradient(135deg, #3e1f0d 0%, #5a2d16 50%, #4a2512 100%);
  color: var(--ivory-white);
  padding: 0.8rem 1rem;
  text-align: center;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  box-shadow: 
    0 -4px 20px rgba(62, 31, 13, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 10;
  backdrop-filter: blur(15px);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 49, 66, 0.4);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  color: var(--ivory-white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links span {
  font-weight: 700;
  color: var(--ivory-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.footer-links a {
  color: var(--ivory-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(250, 249, 246, 0.4);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.footer-links a:hover {
  color: var(--night-blue);
  background: var(--ivory-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--ivory-white);
}

.teaser {
  padding: 4rem 1rem 2rem 1rem;
  background: var(--beige);
  text-align: center;
}
.teaser h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.tour-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tour-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 300px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s;
}
.tour-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
}
.tour-card h3 {
  margin: 0.5rem 0 0.5rem 0;
  font-family: 'Lora', serif;
}
.tour-card p {
  font-size: 1rem;
  color: var(--stone-grey);
}

.footer {
  background: var(--white);
  color: var(--stone-grey);
  text-align: center;
  padding: 1.2rem 0 0.7rem 0;
  margin-top: 3rem;
  box-shadow: 0 -2px 8px rgba(60,40,20,0.05);
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-icon {
  color: var(--accent);
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 600;
}
.footer-icon:hover {
  text-decoration: underline;
}

/* Tours Page Styles */
.tours-main {
  background: linear-gradient(135deg, #5D3A1A, #4A2A15, #3D1F10);
  min-height: 100vh;
  color: var(--ivory-white);
  overflow-x: hidden;
}

/* Tours Hero Section */
.tours-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--night-blue);
}

.hero-tours-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-tours-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.tours-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(44, 24, 16, 0.8) 0%,
    rgba(212, 165, 116, 0.3) 50%,
    rgba(255, 107, 53, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--ivory-white);
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.tours-hero .hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--ivory-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  line-height: 1.2;
  letter-spacing: 1px;
}

.tours-hero .hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ivory-white);
  opacity: 0.95;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* Tour Filters Section */
.tour-filters-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #6B4A2A, #5D3A1A, #4A2A15);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.filters-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
}

.filter-btn {
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid var(--dawn-pink);
  color: var(--ivory-white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--dawn-pink), #FF8C42);
  border-color: var(--dawn-pink);
  color: var(--ivory-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Tours Grid Section */
.tours-grid-section {
  padding: 5rem 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 35%),
    linear-gradient(135deg, #3e1f0d 0%, #5a2d16 25%, #4a2512 50%, #6b3a20 75%, #2c1810 100%);
  background-size: 800px 800px, 600px 600px, 900px 900px, 100% 100%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  position: relative;
  overflow: hidden;
  animation: toursBackgroundShift 20s ease-in-out infinite;
}

@keyframes toursBackgroundShift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 0%, 80% 20%, 0% 0%;
  }
}

.tours-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, 
      rgba(212, 165, 116, 0.1) 0%, 
      transparent 25%, 
      rgba(255, 107, 53, 0.08) 50%, 
      transparent 75%, 
      rgba(212, 165, 116, 0.06) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(212, 165, 116, 0.03) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(255, 107, 53, 0.02) 1px,
      transparent 2px,
      transparent 60px
    );
  pointer-events: none;
  animation: toursPatternMove 15s linear infinite;
}

@keyframes toursPatternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Tour Card Styles */
.tour-card {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--dawn-pink);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  width: 100%;
}

.tour-card:hover {
  transform: translateY(-10px);
  border-color: #FF8C42;
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(255, 107, 53, 0.7));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .card-overlay {
  opacity: 1;
}

.tour-duration,
.tour-price {
  background: linear-gradient(135deg, var(--dawn-pink), #FF8C42);
  color: var(--ivory-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-content p {
  color: var(--ivory-white);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.card-features span {
  background: rgba(255, 107, 53, 0.2);
  color: var(--ivory-white);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--dawn-pink);
}

.card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-actions .btn {
  flex: 1;
  min-width: 120px;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid;
}

.btn-primary {
  background: var(--ivory-white);
  color: var(--dark-bg);
  border-color: var(--dark-bg);
}

.btn-primary:hover {
  background: var(--dawn-pink);
  color: var(--ivory-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory-white);
  border-color: var(--ivory-white);
}

.btn-secondary:hover {
  background: var(--dawn-pink);
  color: var(--ivory-white);
  transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 49, 66, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--night-blue);
  border: 2px solid var(--sage-green);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dawn-pink);
  color: var(--night-blue);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--sage-green);
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
}

/* Tour Gallery Styles */
.tour-gallery {
  margin-top: 2rem;
}

.tour-gallery h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dawn-pink);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Modal Gallery Slider */
.modal-gallery-slider {
  max-width: 600px;
  margin: 0 auto;
  background: var(--night-blue);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-slider-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--night-blue), rgba(44, 24, 16, 0.8));
}

.modal-slider-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.modal-slider-fade {
  opacity: 0.3;
  transform: scale(0.95);
}

.modal-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 165, 116, 0.9);
  color: var(--night-blue);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-slider-prev {
  left: 15px;
}

.modal-slider-next {
  right: 15px;
}

.modal-slider-nav:hover {
  background: var(--dawn-pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 10px rgba(212, 165, 116, 0.4);
}

.modal-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: rgba(44, 24, 16, 0.7);
}

.modal-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-slider-dot.active {
  background: var(--dawn-pink);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.6);
}

.modal-slider-dot:hover {
  background: var(--sage-green);
  transform: scale(1.1);
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-modal.active {
  display: flex;
}

.gallery-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--dawn-pink);
  color: var(--night-blue);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-close:hover {
  background: var(--sage-green);
  transform: scale(1.1);
}

.gallery-container {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: 70vh;
  max-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  background: var(--night-blue);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 165, 116, 0.9);
  color: var(--night-blue);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-nav:hover {
  background: var(--dawn-pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.gallery-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--night-blue), rgba(44, 24, 16, 0.8));
}

#galleryImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  border-radius: 0;
}

.gallery-fade-in {
  animation: galleryFadeIn 0.5s ease-in-out;
}

@keyframes galleryFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.95), transparent);
  padding: 20px;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  max-height: 120px;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.gallery-thumbnail {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  object-fit: cover;
  opacity: 0.7;
}

.gallery-thumbnail:hover {
  border-color: var(--sage-green);
  transform: scale(1.05);
  opacity: 1;
}

.gallery-thumbnail.active {
  border-color: var(--dawn-pink);
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 3px 10px rgba(212, 165, 116, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 900px) {
  .tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .tour-card {
    margin: 0;
    width: 100%;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.4rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .card-actions .btn {
    width: 100%;
    min-width: auto;
  }
  
  .filters-wrapper {
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .modal-content {
    margin: 1rem;
    max-height: 95vh;
  }
  
  .gallery-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .gallery-image-container {
    max-width: 90vw;
    max-height: 60vh;
  }
  
  .gallery-thumbnails {
    bottom: 1rem;
  }
  
  .gallery-thumbnail {
    width: 60px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .tours-grid {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  
  .tour-card {
    border-radius: 15px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .card-features {
    margin-bottom: 1.5rem;
  }
  
  .card-features span {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .card-actions .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .hero-content .logo {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  
  .tours-hero .hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
  }
  
  .tours-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .tours-hero {
    min-height: 70vh;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .gallery-modal {
    padding: 0.5rem;
  }
  
  .gallery-container {
    width: 95vw;
    height: 60vh;
    max-height: 400px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .gallery-prev {
    left: 10px;
  }
  
  .gallery-next {
    right: 10px;
  }
  
  .gallery-thumbnails {
    padding: 15px 10px;
    max-height: 80px;
    gap: 0.5rem;
  }
  
  .gallery-thumbnail {
    width: 50px;
    height: 35px;
  }
  
  .modal-gallery-slider {
    max-width: 100%;
    margin: 0;
  }
  
  .modal-slider-container {
    height: 250px;
  }
  
  .modal-slider-nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .modal-slider-prev {
    left: 10px;
  }
  
  .modal-slider-next {
    right: 10px;
  }
  
  .modal-slider-dots {
    padding: 10px;
    gap: 6px;
  }
  
  .modal-slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .filters-wrapper {
    padding: 0 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .tours-grid {
    padding: 0 0.3rem;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .card-features span {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .card-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.about-text {
  flex: 2;
  min-width: 250px;
}
.about-photo {
  flex: 1;
  min-width: 200px;
}
.about-photo img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.about-gallery-carousel {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.carousel-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.carousel-img.active {
  opacity: 1;
  box-shadow: 0 2px 8px rgba(60,40,20,0.18);
}

/* About Page Styles */
.about-main {
  background: var(--dark-bg);
  min-height: 100vh;
  padding-top: 0;
  margin-top: 0;
  position: relative;
}

/* Hero About Section */
.hero-about {
  position: relative;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--dark-bg);
}

.hero-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3);
}

.hero-about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory-white);
  max-width: 800px;
  padding: 2rem;
}

.mythical-title {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dawn-pink);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--ivory-white);
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dawn-pink);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ivory-white);
  opacity: 0.8;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 35%),
    linear-gradient(135deg, #3e1f0d 0%, #5a2d16 25%, #4a2512 50%, #6b3a20 75%, #2c1810 100%);
  background-size: 800px 800px, 600px 600px, 900px 900px, 100% 100%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  position: relative;
  overflow: hidden;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 0%, 80% 20%, 0% 0%;
  }
}

.our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, 
      rgba(212, 165, 116, 0.1) 0%, 
      transparent 25%, 
      rgba(255, 107, 53, 0.08) 50%, 
      transparent 75%, 
      rgba(212, 165, 116, 0.06) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(212, 165, 116, 0.03) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(255, 107, 53, 0.02) 1px,
      transparent 2px,
      transparent 60px
    );
  pointer-events: none;
  animation: patternMove 15s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 60px);
  }
}

.our-story::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(212, 165, 116, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(255, 107, 53, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(212, 165, 116, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(255, 107, 53, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.04) 0%, transparent 60%);
  background-size: 300px 300px, 250px 250px, 400px 400px, 350px 350px, 500px 500px;
  pointer-events: none;
  z-index: 1;
  animation: floatingOrbs 25s ease-in-out infinite;
}

@keyframes floatingOrbs {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: scale(1.1) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.9) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: scale(1.05) rotate(270deg);
    opacity: 0.7;
  }
}

/* Particle Effects */
.story-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 165, 116, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 25% 75%, rgba(212, 165, 116, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px, 90px 90px, 60px 60px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-20px, -30px) rotate(360deg);
  }
}

/* Texture Overlay */
.story-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(212, 165, 116, 0.05) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 107, 53, 0.03) 50%, transparent 60%),
    radial-gradient(ellipse at center, transparent 60%, rgba(212, 165, 116, 0.08) 100%);
  background-size: 200px 200px, 150px 150px, 800px 400px;
  animation: textureWave 12s ease-in-out infinite;
}

@keyframes textureWave {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) rotate(2deg);
    opacity: 1;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.section-header h2 {
  font-family: 'Lora', serif;
  font-size: 3.2rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.section-header h2::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -50px;
  right: -50px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 165, 116, 0.3) 20%, 
    rgba(255, 107, 53, 0.5) 50%, 
    rgba(212, 165, 116, 0.3) 80%, 
    transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--dawn-pink), var(--sage-green));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}


.section-subtitle {
  font-size: 1.4rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.section-header .section-subtitle {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.our-story .section-subtitle {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.story-block {
  background: linear-gradient(135deg, #3e1f0d 0%, #5a2d16 50%, #4a2512 100%);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 100%;
  min-height: 420px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.story-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.15), transparent);
  transition: left 0.8s ease;
}

.story-block:hover::before {
  left: 100%;
}

.story-block:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(212, 165, 116, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--sage-green);
}

.story-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dawn-pink);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
  display: flex;
  align-items: center;
  min-height: 2rem;
}

.story-block h3::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage-green);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.story-block:nth-child(1) h3::before {
  content: '🌟';
}

.story-block:nth-child(2) h3::before {
  content: '🎯';
}

.story-block:nth-child(3) h3::before {
  content: '💎';
}

.story-block p {
  color: var(--ivory-white);
  line-height: 1.7;
  opacity: 0.95;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: justify;
  position: relative;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.story-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
  justify-items: center;
  align-items: start;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(212, 165, 116, 0.4);
  background: var(--night-blue);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--dawn-pink);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.3) saturate(1.3);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%, 
    rgba(0, 0, 0, 0.3) 30%, 
    rgba(44, 24, 16, 0.9) 70%, 
    rgba(0, 0, 0, 0.95) 100%
  );
  padding: 3rem 2rem 2rem;
  color: var(--ivory-white);
  z-index: 2;
  transform: translateY(60%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dawn-pink);
  text-shadow: 
    0 0 10px rgba(255, 107, 53, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
}

.gallery-overlay span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dawn-pink), var(--sage-green));
  transition: width 0.4s ease;
}

.gallery-item:hover .gallery-overlay span::before {
  width: 60px;
}

.gallery-overlay::before {
  content: attr(data-icon);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

/* Story section animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-block {
  animation: fadeInUp 0.6s ease forwards;
}

.story-block:nth-child(1) { animation-delay: 0.1s; }
.story-block:nth-child(2) { animation-delay: 0.3s; }
.story-block:nth-child(3) { animation-delay: 0.5s; }

.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.2s; }
.gallery-item:nth-child(2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3) { animation-delay: 0.6s; }

/* Responsive adjustments for Our Story section */
@media (max-width: 768px) {
  .story-content {
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .story-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-block {
    padding: 1.5rem;
    height: 280px;
    margin: 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 250px;
    width: 250px;
    border-radius: 16px;
  }
  
  .story-block h3 {
    font-size: 1.4rem;
    padding-left: 2.5rem;
  }
  
  .story-block h3::before {
    font-size: 1.3rem;
  }
  
  .story-block p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .story-block:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .story-gallery {
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem;
    padding-top: 2rem;
    align-items: center;
  }
  
  .gallery-item {
    height: 250px;
    width: 250px;
    transform: rotate(0deg) !important;
    margin-bottom: 0;
  }
  
  .gallery-item:nth-child(1) {
    border-radius: 20px;
    margin-top: 0;
  }
  
  .gallery-item:nth-child(2) {
    border-radius: 20px;
    margin-top: 1rem;
  }
  
  .gallery-item:nth-child(3) {
    border-radius: 20px;
    margin-top: 1rem;
  }
  }
  
  .gallery-item:hover {
    transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  }
  
  .gallery-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .gallery-overlay span {
    font-size: 1.2rem;
  }
}
  
  .gallery-item img {
    height: 180px;
  }
  
  .gallery-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery-overlay span {
    font-size: 1.1rem;
  }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .story-text {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .story-block {
    padding: 2rem;
    height: 320px;
  }
  
  .story-block h3 {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .gallery-item {
    height: 260px;
    width: 260px;
  }
}

@media (max-width: 480px) {
  .story-content {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .story-text {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .story-block {
    padding: 1.2rem;
    border-radius: 15px;
    height: 250px;
  }
  
  .story-block h3 {
    font-size: 1.2rem;
    padding-left: 1.2rem;
  }
  
  .story-block h3::before {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    height: 200px;
    width: 200px;
    margin: 0;
  }
}
}
  }
  
  .story-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .gallery-item {
    border-radius: 15px;
  }
  
  .gallery-item img {
    height: 160px;
  }
  
  .gallery-overlay {
    padding: 1.2rem 0.8rem 0.8rem;
  }
  
  .gallery-overlay span {
    font-size: 1rem;
  }
}

/* Our Philosophy/Values Section */
.our-philosophy {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-bg), #2a2d3a);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: rgba(45, 49, 66, 0.8);
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(163, 177, 138, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: var(--ivory-white);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.card-features span {
  background: rgba(163, 177, 138, 0.2);
  color: var(--ivory-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--sage-green);
}

/* Meet Our Team Section */
.meet-guardians {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.guardians-intro {
  text-align: center;
  color: var(--ivory-white);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.guardians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.guardian-card {
  background: rgba(45, 49, 66, 0.8);
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.guardian-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(163, 177, 138, 0.2);
}

.guardian-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dawn-pink), var(--sage-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.avatar-icon {
  font-size: 2rem;
}

.guardian-card h3 {
  font-size: 1.3rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
}

.guardian-card p {
  color: var(--ivory-white);
  line-height: 1.6;
  opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2a2d3a, var(--dark-bg));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(45, 49, 66, 0.8);
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(163, 177, 138, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--ivory-white);
  line-height: 1.6;
  opacity: 0.9;
}

/* Call to Action Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dawn-pink), var(--sage-green));
  text-align: center;
}

/* Story CTA (within Our Story section) */
.story-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  backdrop-filter: blur(5px);
}

.story-cta .cta-content h2 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.story-cta .cta-content p {
  font-size: 1.1rem;
  color: var(--night-blue);
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.story-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  color: var(--ivory-white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--ivory-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--dark-bg);
  color: var(--ivory-white);
  border-color: var(--ivory-white);
}

.btn-primary:hover {
  background: var(--dawn-pink);
  color: var(--ivory-white);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory-white);
  border-color: var(--ivory-white);
}

.btn-secondary:hover {
  background: var(--dawn-pink);
  color: var(--ivory-white);
}

/* Floating Buttons for About Page */
.floating-lang {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 101;
  background: rgba(44, 24, 16, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid var(--ivory-white);
  padding: 0.5rem;
  min-width: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.floating-lang:hover {
  background: var(--sage-green);
  transform: scale(1.1) rotate(5deg);
}

.floating-menu {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 101;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(212, 165, 116, 0.9));
  backdrop-filter: blur(10px);
  border: 2px solid var(--ivory-white);
  padding: 0.8rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.floating-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.floating-menu:hover::before {
  left: 100%;
}

/* Contact Page */
.contact-main {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--sage-green) 100%);
}

.contact-hero {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(44, 24, 16, 0.7)), 
              linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory-white);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--ivory-white), var(--dawn-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3)); }
  to { filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6)); }
}

.contact-hero .hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  line-height: 1.6;
}

.contact-info-section {
  padding: 4rem 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 35%),
    linear-gradient(135deg, #3e1f0d 0%, #5a2d16 25%, #4a2512 50%, #6b3a20 75%, #2c1810 100%);
  background-size: 800px 800px, 600px 600px, 900px 900px, 100% 100%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  position: relative;
  overflow: hidden;
  animation: contactBackgroundShift 20s ease-in-out infinite;
}

@keyframes contactBackgroundShift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 0%, 80% 20%, 0% 0%;
  }
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, 
      rgba(212, 165, 116, 0.1) 0%, 
      transparent 25%, 
      rgba(255, 107, 53, 0.08) 50%, 
      transparent 75%, 
      rgba(212, 165, 116, 0.06) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(212, 165, 116, 0.03) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(255, 107, 53, 0.02) 1px,
      transparent 2px,
      transparent 60px
    );
  pointer-events: none;
  animation: contactPatternMove 15s linear infinite;
}

@keyframes contactPatternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 60px);
  }
}

.contact-info-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(212, 165, 116, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(255, 107, 53, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 50% 85%, rgba(212, 165, 116, 0.06) 0%, transparent 20%);
  pointer-events: none;
  z-index: 1;
}

/* Contact Hero Content */
.contact-hero-content {
  text-align: center;
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 2;
}

.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ivory-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.contact-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--ivory-white);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.85));
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 2px solid rgba(212, 165, 116, 0.3);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--dawn-pink);
}

.contact-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(44, 24, 16, 0.7));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  color: var(--dawn-pink);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact-card:hover .contact-icon::before {
  transform: translateX(100%);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  border-color: var(--dawn-pink);
}

.contact-content h3 {
  color: var(--ivory-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-content p {
  color: var(--ivory-white);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.address-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dawn-pink);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 165, 116, 0.15);
  padding: 1.2rem;
  border-radius: 15px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.phone-item:hover {
  background: rgba(212, 165, 116, 0.25);
  border-color: var(--dawn-pink);
  transform: translateY(-2px);
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-call, .btn-whatsapp {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-call {
  background: linear-gradient(135deg, var(--sage-green), #7a8b5a);
  color: var(--ivory-white);
}

.btn-call:hover {
  background: linear-gradient(135deg, var(--dark-bg), #2a2d3a);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--ivory-white);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-instagram, .btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--ivory-white);
  border-color: transparent;
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
}

.btn-email {
  background: linear-gradient(135deg, var(--dark-bg), #2a2d3a);
  color: var(--ivory-white);
  border-color: var(--dawn-pink);
}

.btn-email:hover {
  background: linear-gradient(135deg, var(--dawn-pink), #ff6b9d);
  color: var(--ivory-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 182, 193, 0.4);
}

/* Hours Display Styling */
.hours-display {
  margin-top: 1.5rem;
}

.hours-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(255, 107, 53, 0.15));
  border: 2px solid rgba(212, 165, 116, 0.4);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hours-badge:hover {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(255, 107, 53, 0.25));
  border-color: var(--dawn-pink);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.hours-badge i {
  font-size: 1.8rem;
  color: var(--dawn-pink);
  background: linear-gradient(135deg, var(--dawn-pink), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hours-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-text strong {
  font-size: 1.1rem;
  color: var(--ivory-white);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hours-time {
  font-size: 0.95rem;
  color: var(--dawn-pink);
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.business-hours-section {
  padding: 2rem 0 4rem;
}

.hours-card {
  background: linear-gradient(135deg, rgba(45, 49, 66, 0.95), rgba(45, 49, 66, 0.85));
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(163, 177, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(163, 177, 138, 0.1), transparent);
  transition: left 0.6s ease;
}

.hours-card:hover::before {
  left: 100%;
}

.hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--dawn-pink);
}

.hours-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(45, 49, 66, 0.9), rgba(45, 49, 66, 0.7));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--dawn-pink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 182, 193, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hours-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 182, 193, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hours-card:hover .hours-icon::before {
  transform: translateX(100%);
}

.hours-card:hover .hours-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 18px 40px rgba(255, 182, 193, 0.4);
  border-color: var(--dawn-pink);
}

.hours-content h3 {
  color: var(--ivory-white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(163, 177, 138, 0.3);
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: rgba(163, 177, 138, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin: 0 -1rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  color: var(--ivory-white);
  font-weight: 500;
  opacity: 0.9;
}

.time {
  color: var(--dawn-pink);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero .hero-content p {
    font-size: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .phone-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .phone-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 250px;
  }
  
  .contact-hero .hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .contact-content h3 {
    font-size: 1.3rem;
  }
  
  .btn-instagram, .btn-email {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Card Container System */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 300px;
  max-width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #3e1f0d 0%, #5a2d16 50%, #4a2512 100%);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  position: relative;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.7) contrast(1.2) saturate(1.1);
  display: block;
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.3) saturate(1.3);
}

/* Gallery overlay specifically for cards */
.card .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%, 
    rgba(0, 0, 0, 0.3) 30%, 
    rgba(44, 24, 16, 0.9) 70%, 
    rgba(0, 0, 0, 0.95) 100%
  );
  padding: 3rem 2rem 2rem;
  color: var(--ivory-white);
  z-index: 2;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.card .gallery-overlay span {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dawn-pink);
  text-shadow: 
    0 0 10px rgba(255, 107, 53, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
}

.card .gallery-overlay span::before {
  content: attr(data-icon);
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

.card:hover .gallery-overlay span::before {
  opacity: 1;
  left: -2rem;
}

/* Responsive Card Container */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
  }
  
  /* Mobile: Show overlay on touch/tap */
  .card .gallery-overlay {
    transform: translateY(100%);
    opacity: 0;
  }
  
  .card:active .gallery-overlay,
  .card:focus .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
  }
  
  .card .gallery-overlay span {
    font-size: 1.2rem;
  }
  
  .card .gallery-overlay span::before {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card-container {
    gap: 1.5rem;
  }
  
  .card {
    width: calc(50% - 1rem);
    min-width: 280px;
  }
}

@media (min-width: 1025px) {
  .card-container {
    gap: 2rem;
  }
  
  .card {
    width: 300px;
    flex: 0 0 auto;
  }
}

/* Optional: Horizontal scroll for smaller containers */
.card-container.scroll-horizontal {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 165, 116, 0.5) transparent;
}

.card-container.scroll-horizontal::-webkit-scrollbar {
  height: 6px;
}

.card-container.scroll-horizontal::-webkit-scrollbar-track {
  background: transparent;
}

.card-container.scroll-horizontal::-webkit-scrollbar-thumb {
  background: rgba(212, 165, 116, 0.5);
  border-radius: 3px;
}

.card-container.scroll-horizontal::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 165, 116, 0.7);
}

/* Scroll Indicator Styles */
.scroll-indicator {
  position: fixed;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

.scroll-text {
  font-size: 0.9rem;
  color: var(--ivory-white);
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  position: relative;
}

.arrow-down {
  width: 24px;
  height: 24px;
  border: 2px solid var(--dawn-pink);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: arrowFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

/* Scroll Animations */
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes arrowFloat {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 0.7;
  }
}

/* Responsive scroll indicator */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 3rem;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    width: 20px;
    height: 20px;
  }
  
  .arrow-down {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 2rem;
  }
  
  .scroll-text {
    font-size: 0.7rem;
  }
  
  .scroll-arrow {
    width: 18px;
    height: 18px;
  }
  
  .arrow-down {
    width: 18px;
    height: 18px;
  }
  
  /* Contact Hero Content Mobile */
  .contact-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .contact-hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }
  
  .contact-hero-content {
    padding: 2rem 0 3rem;
  }
}

/* Contact Responsive for Tablet */
@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 3rem;
  }
  
  .contact-hero-content p {
    font-size: 1.15rem;
    padding: 0 2rem;
  }
}

/* Site Footer */
.site-footer {
  background: 
    linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(62, 31, 13, 0.9)),
    radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
  background-size: 100% 100%, 400px 400px, 300px 300px;
  background-position: 0% 0%, 0% 50%, 100% 50%;
  padding: 1.5rem 0 1rem;
  text-align: center;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 165, 116, 0.2) 20%, 
    rgba(255, 107, 53, 0.3) 50%, 
    rgba(212, 165, 116, 0.2) 80%, 
    transparent 100%) 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(212, 165, 116, 0.02) 1px,
      transparent 2px,
      transparent 60px
    );
  pointer-events: none;
}

.footer-content {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(44, 24, 16, 0.2);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(212, 165, 116, 0.15);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-content:hover {
  background: rgba(44, 24, 16, 0.3);
  border-color: rgba(212, 165, 116, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.footer-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(249, 246, 238, 0.7);
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
}

.footer-content p:first-child {
  font-size: 0.65rem;
  color: rgba(212, 165, 116, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.footer-names {
  font-weight: 600;
  color: var(--ivory-white);
  font-size: 0.75rem;
  margin: 0.1rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--dawn-pink), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 107, 53, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0.1rem 0;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
  transition: left 0.4s ease;
}

.footer-link:hover::before {
  left: 100%;
}

.footer-link:hover {
  color: var(--ivory-white);
  background: linear-gradient(135deg, var(--dawn-pink), #ff6b9d);
  border-color: var(--dawn-pink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.footer-year {
  font-size: 0.65rem;
  color: rgba(249, 246, 238, 0.5);
  margin-top: 0.2rem;
  font-weight: 400;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 1.2rem 0 0.8rem;
  }
  
  .footer-content {
    max-width: 85%;
    padding: 0.8rem;
  }
  
  .footer-content p {
    font-size: 0.7rem;
  }
  
  .footer-names {
    font-size: 0.75rem;
  }
  
  .footer-link {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 1rem 0 0.5rem;
  }
  
  .footer-content {
    padding: 0.6rem;
    border-radius: 8px;
    max-width: 90%;
  }
  
  .footer-content p,
  .footer-link {
    font-size: 0.65rem;
  }
  
  .footer-names {
    font-size: 0.7rem;
    margin: 0.4rem 0;
  }
  
  .footer-link {
    padding: 0.2rem 0.4rem;
    margin-top: 0.2rem;
  }
}
