/* Custom CSS for House of Zakia */

:root {
  --primary-color: #3c3c54;
  --secondary-color: #f8f9fa;
  --accent-color: #d4a574;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #3c3c54 0%, #2c2c3e 100%);
  --gradient-accent: linear-gradient(135deg, #d4a574 0%, #c4956a 100%);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Artistic Navigation */
.artistic-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  margin-top: 20px;
  /* backdrop-filter: blur(10px); */
  transition: var(--transition);
  background: transparent !important;
}

.artistic-nav.scrolled {
  box-shadow: var(--shadow-soft);
}

/* Navigation Logo */
.nav-logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.nav-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(1.1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

/* Hamburger Button */
.hamburger-btn {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.2);
  border: 2px solid rgba(212, 165, 116, 0.4);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hamburger-btn:hover {
  background: rgba(212, 165, 116, 0.3);
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger-btn.active .line1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .line2 {
  opacity: 0;
}

.hamburger-btn.active .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient-primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

/* Menu Header */
.menu-header {
  margin-bottom: 3rem;
  animation: slideInDown 0.8s ease-out 0.2s both;
}

.menu-overlay.active .menu-header {
  animation: slideInDown 0.8s ease-out 0.2s both;
}

.menu-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(1.2) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.menu-tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
}

/* Menu Navigation */
.menu-nav {
  margin-bottom: 3rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-50px);
}

.menu-overlay.active .menu-item:nth-child(1) {
  animation: slideInLeft 0.6s ease-out 0.3s both;
}
.menu-overlay.active .menu-item:nth-child(2) {
  animation: slideInLeft 0.6s ease-out 0.4s both;
}
.menu-overlay.active .menu-item:nth-child(3) {
  animation: slideInLeft 0.6s ease-out 0.5s both;
}
.menu-overlay.active .menu-item:nth-child(4) {
  animation: slideInLeft 0.6s ease-out 0.6s both;
}
.menu-overlay.active .menu-item:nth-child(5) {
  animation: slideInLeft 0.6s ease-out 0.7s both;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition);
  z-index: -1;
}

.menu-link:hover::before {
  left: 0;
}

.menu-link:hover,
.menu-link.active {
  color: var(--white);
  transform: translateX(10px);
  border-color: var(--accent-color);
}

.menu-link.active::before {
  left: 0;
}

/* Body state when menu is open */
body.menu-open {
  overflow: hidden;
}

.menu-number {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  opacity: 0.6;
  font-weight: 300;
}

.menu-text {
  flex-grow: 1;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.menu-icon {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Menu Footer */
.menu-footer {
  opacity: 0;
  transform: translateY(30px);
}

.menu-overlay.active .menu-footer {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.menu-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu-social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.menu-social-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  transform: scale(1.1);
}

.menu-mission {
  font-style: italic;
  opacity: 0.7;
  margin: 0;
  font-size: 1rem;
}

/* Menu Background Elements */
.menu-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}

.menu-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  animation: float 8s ease-in-out infinite;
}

.menu-bg-circle.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.menu-bg-circle.circle-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.menu-pattern {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(212, 165, 116, 0.3);
  transform: rotate(45deg);
  animation: rotate 15s linear infinite;
}

.menu-pattern.pattern-1 {
  top: 30%;
  left: 20%;
}

.menu-pattern.pattern-2 {
  bottom: 40%;
  right: 25%;
  animation-delay: -7s;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated Background Elements */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

.floating-pattern {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(212, 165, 116, 0.2);
  transform: rotate(45deg);
  animation: rotate 20s linear infinite;
}

.pattern-1 {
  top: 25%;
  left: 10%;
  animation-delay: -5s;
}

.pattern-2 {
  bottom: 30%;
  right: 20%;
  animation-delay: -10s;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

/* Logo Container */
.logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 280px;
  height: auto;
  filter: brightness(1.1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: logoFloat 1.2s ease-out;
  margin-bottom: 1rem;
}

/* Hero Badge - positioned with logo */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 165, 116, 0.25);
  backdrop-filter: blur(15px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(212, 165, 116, 0.4);
  animation: fadeInUp 1s ease-out 0.3s both;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-line {
  display: block;
  animation: slideInLeft 1s ease-out;
}

.title-line.highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 1s ease-out 0.2s both;
  position: relative;
}

.title-line.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: expandWidth 1s ease-out 0.8s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.6;
  max-width: 500px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Horizontal Features */
.hero-features-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(212, 165, 116, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.feature-tag:hover {
  background: rgba(212, 165, 116, 0.3);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.feature-tag i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Compact Call to Action */
.hero-cta-compact {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-buttons-compact {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.6);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover .btn-shine {
  left: 100%;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}

/* Horizontal Stats */
.hero-stats-horizontal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 1s both;
  width: fit-content;
}

.stat-item-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-item-horizontal strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-item-horizontal span {
  font-size: 0.8rem;
  opacity: 0.8;
  color: var(--white);
  line-height: 1;
}

.stat-divider {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0.6;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.main-showcase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.showcase-frame {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  transition: var(--transition);
}

.showcase-frame:hover {
  transform: rotate(0deg) scale(1.05);
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  animation: pulse 2s infinite;
}

.frame-decoration::after {
  content: '✨';
}

/* Floating Gallery */
.floating-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.gallery-card {
  position: absolute;
  width: 120px;
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-card:hover {
  transform: scale(1.1);
  z-index: 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.card-overlay i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* Front layer cards - more prominent */
.front-layer {
  z-index: 3;
}

.card-1 {
  top: 15%;
  right: 8%;
  animation: float 4s ease-in-out infinite;
}

.card-2 {
  bottom: 25%;
  left: 3%;
  animation: float 4s ease-in-out infinite 1s;
}

.card-3 {
  top: 55%;
  right: 20%;
  animation: float 4s ease-in-out infinite 2s;
}

/* Background layer cards - more visible */
.back-layer {
  z-index: 1;
  opacity: 0.8;
  width: 100px;
  height: 140px;
}

.card-4 {
  top: 10%;
  left: 15%;
  animation: float 5s ease-in-out infinite 0.5s;
}

.card-5 {
  bottom: 15%;
  right: 35%;
  animation: float 5s ease-in-out infinite 3s;
}

.card-6 {
  top: 40%;
  left: 8%;
  animation: float 5s ease-in-out infinite 4s;
}

.back-layer:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Hero Decorations */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.decoration {
  position: absolute;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 50%;
}

.deco-1 {
  width: 40px;
  height: 40px;
  top: 10%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}

.deco-2 {
  width: 25px;
  height: 25px;
  top: 70%;
  right: 15%;
  animation: float 5s ease-in-out infinite 2s;
}

.deco-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 30%;
  animation: float 5s ease-in-out infinite 4s;
}

/* Scroll Indicator - Positioned on the right */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: center;
  color: var(--white);
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-line {
  width: 2px;
  height: 30px;
  background: var(--gradient-accent);
  margin: 0 auto 10px;
  border-radius: 2px;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 5px;
  opacity: 0.8;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounceArrow 2s infinite;
}

.btn {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: var(--gradient-accent);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Collection Section */
.collection-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 60, 84, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.8);
  transition: var(--transition);
}

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

.featured-item {
  max-width: 500px;
  margin: 2rem auto 0;
}

.featured-item img {
  height: 400px;
}

/* Load More Button */
.load-more-button {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  min-width: 280px;
}

.load-more-button:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.load-more-button:active {
  transform: translateY(0);
}

.load-more-text {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.btn-progress {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}

.progress-count {
  font-weight: 700;
  color: var(--gold);
}

.load-more-button:hover .progress-count {
  color: var(--navy);
}

/* Load more items animation */
.load-more-item {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Story Section */
.story-section {
  padding: 80px 0;
  background: var(--white);
}

.story-content {
  padding-right: 2rem;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-text .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  background: rgba(212, 165, 116, 0.1);
  padding: 2rem;
  border-radius: 10px;
}

.story-stats .stat-item {
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}

.story-stats .stat-item:hover {
  transform: translateY(-5px);
}

.story-stats h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.story-image {
  position: relative;
}

.image-collage img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.author-info h6 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Enhanced Contact Section */
.contact-section {
  background: #2a2a3e 50%;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 165, 116, 0.1) 0%,
    transparent 70%
  );
  animation: contactGlow 20s linear infinite;
}

@keyframes contactGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-title::after {
  background: var(--gradient-accent);
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.contact-form-title {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.contact-form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-style: italic;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  z-index: 3;
  font-size: 1.1rem;
}

.form-icon.message-icon {
  top: 1rem;
  transform: none;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 3rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
  color: white;
}

.contact-form textarea.form-control {
  padding-top: 1rem;
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  background: linear-gradient(45deg, var(--gold), #e6c58a);
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-submit:hover {
  background: linear-gradient(45deg, #e6c58a, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-submit:hover .btn-shine {
  left: 100%;
}

/* Contact Information */
.contact-info-modern {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.contact-header {
  margin-bottom: 2.5rem;
}

.contact-header h4 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Contact Methods */
.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.email-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
}

.location-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.method-content h6 {
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.method-content p {
  color: white;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.method-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-style: italic;
}

/* Social Media */
.social-connect {
  margin: 2.5rem 0;
}

.social-connect h6 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.social-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-item i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.social-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.social-item.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  transform: translateY(-2px);
}

.social-item.tiktok:hover {
  background: linear-gradient(45deg, #ff0050, #00f2ea);
  transform: translateY(-2px);
}

.social-item.whatsapp:hover {
  background: linear-gradient(45deg, #25d366, #128c7e);
  transform: translateY(-2px);
}

/* Contact CTA */
.contact-cta {
  margin-top: 2rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--gold), #e6c58a);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  color: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: ctaShimmer 3s linear infinite;
}

@keyframes ctaShimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.cta-card h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.cta-card p {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-card .btn {
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.cta-card .btn:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    padding: 1rem;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Legacy styles for compatibility */
.contact-item {
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item h5 {
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.social-links {
  margin-top: 3rem;
}

.social-link {
  color: var(--white);
  margin: 0 1rem;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c2c3e 0%, #1a1a2e 100%);
  color: var(--white);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-accent);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}

.footer-mission {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.value-tag {
  background: rgba(212, 165, 116, 0.2);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.value-tag i {
  margin-right: 0.25rem;
}

.footer-heading {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--accent-color);
  width: 20px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.footer-copyright {
  font-weight: 500;
  margin: 0;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-heart {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.pulse-heart {
  animation: pulse 2s infinite;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  justify-content: end;
  flex-wrap: wrap;
}

.badge-item {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.badge-item i {
  margin-right: 0.25rem;
  color: var(--accent-color);
}

/* Modal */
.modal-content {
  /* background: rgba(60, 60, 84, 0.95); */
  border: none;
  border-radius: 15px;
}

.modal-body {
  padding: 0;
}

#modalImage {
  border-radius: 15px;
  max-height: 80vh;
  width: auto;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  color: var(--white);
}

.loading-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  position: relative;
}

.spinner-ring {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(212, 165, 116, 0.3);
  border-top: 3px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: 1.1rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out;
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes logoFloat {
  0% {
    opacity: 0;
    transform: translateY(-50px) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

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

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    max-width: 200px;
  }

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

  .story-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .cta-buttons-compact {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons-compact .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }

  .hero-features-horizontal {
    justify-content: center;
    gap: 0.75rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .hero-stats-horizontal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .stat-item-horizontal strong {
    font-size: 1rem;
  }

  .stat-item-horizontal span {
    font-size: 0.75rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }

  .showcase-frame {
    width: 200px;
    height: 280px;
  }

  .gallery-card {
    width: 80px;
    height: 120px;
  }

  .back-layer {
    width: 70px;
    height: 100px;
  }

  .scroll-indicator {
    right: 20px;
    bottom: 20px;
  }

  .scroll-text {
    font-size: 0.8rem;
  }

  .logo-container {
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  /* Menu Responsive */
  .nav-logo {
    left: 1rem;
  }

  .nav-logo-img {
    height: 40px;
  }

  .hamburger-btn {
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .hamburger-line {
    width: 18px;
  }

  .menu-content {
    padding: 1rem;
  }

  .menu-logo {
    max-width: 150px;
  }

  .menu-link {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }

  .menu-social {
    gap: 1rem;
  }

  .menu-social-link {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  /* Remove old feature styles - now using horizontal layout */

  .gallery-item img {
    height: 250px;
  }

  .featured-item img {
    height: 300px;
  }

  .circle-1 {
    width: 200px;
    height: 200px;
  }

  .circle-2 {
    width: 100px;
    height: 100px;
  }

  .footer-badges {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .value-tag {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .social-link {
    margin: 0 0.5rem;
  }

  .footer-logo-img {
    height: 60px;
  }

  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-heart {
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* Loading Animation */
.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
