/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
  --primary-color: #ba9349;
  --secondary-color: #8b7335;
  --accent-color: #d4af6a;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f5f0;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --text-muted: #666666;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  --gradient-dark: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  --shadow-sm: 0 2px 8px rgba(186, 147, 73, 0.1);
  --shadow-md: 0 4px 16px rgba(186, 147, 73, 0.15);
  --shadow-lg: 0 8px 32px rgba(186, 147, 73, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   Global Styles & Reset
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Skip to content link for accessibility & SEO */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100000;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-container:hover .logo {
  transform: scale(1.05) rotate(2deg);
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 2px 10px rgba(186, 147, 73, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition-smooth);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

#threejs-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 1.5s forwards;
  opacity: 0;
}

.scroll-indicator span {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(-45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(10px);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
  color: var(--text-light);
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
  color: var(--accent-color);
  letter-spacing: 2px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(186, 147, 73, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(186, 147, 73, 0.6);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(186, 147, 73, 0.4);
}

.btn-small {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* ========================================
   Scroll Indicator
   ======================================== */
.scroll-indicator {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

.scroll-indicator span {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}

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

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

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 6rem 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--gradient-primary);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.about-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

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

.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.about-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

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

.product-image {
  position: relative;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(186, 147, 73, 0.95),
    rgba(139, 115, 53, 0.95)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 2rem;
}

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

.product-overlay .btn-small {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-overlay .btn-small:hover {
  background: var(--primary-color);
  color: white;
  border-color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.product-overlay .btn-small::before {
  background: rgba(186, 147, 73, 0.2);
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.product-info p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
  background: var(--light-bg);
  padding: 6rem 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

/* Subcategory filter buttons - slightly smaller */
.sub-filter-btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: scale(1);
  cursor: pointer;
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.8);
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

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

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.gallery-overlay p {
  color: white;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ========================================
   Lightbox Modal
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(186, 147, 73, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

#lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  text-align: center;
  color: white;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.lightbox-caption p {
  color: white;
  font-size: 1rem;
  opacity: 0.9;
}

.lightbox-counter {
  position: absolute;
  top: -50px;
  left: 0;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(26, 26, 26, 0.7);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

/* ========================================
   CEO Story Section
   ======================================== */
.ceo-section {
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  position: relative;
}

.ceo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.ceo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ceo-subtitle {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-style: italic;
  margin-top: 1rem;
}

/* CEO Photo Section */
.ceo-photo-container {
  max-width: 900px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.ceo-photo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ceo-photo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.photo-frame {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 20px;
  z-index: -1;
  animation: rotateBorder 3s linear infinite;
}

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

.ceo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
  border-radius: 18px;
}

.photo-frame:hover .ceo-photo {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(186, 147, 73, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.ceo-info-badge {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.ceo-info-badge h3 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.ceo-info-badge p {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.ceo-year {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-intro {
  margin-bottom: 3rem;
}

.story-lead {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-dark);
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.story-chapter {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.story-chapter::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 80px;
  bottom: -30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.story-chapter:last-of-type::before {
  display: none;
}

.story-chapter:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.story-chapter.highlight {
  background: linear-gradient(
    135deg,
    rgba(186, 147, 73, 0.05) 0%,
    rgba(186, 147, 73, 0.02) 100%
  );
  border: 2px solid var(--primary-color);
}

.chapter-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.timeline-year {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.chapter-content h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.chapter-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.story-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(186, 147, 73, 0.1) 0%,
    rgba(186, 147, 73, 0.05) 100%
  );
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.milestones {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(186, 147, 73, 0.05);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.milestone:hover {
  background: rgba(186, 147, 73, 0.1);
  transform: translateX(10px);
}

.milestone-year {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  min-width: 80px;
  text-align: center;
}

.milestone p {
  margin: 0;
  font-size: 1.05rem;
}

.story-conclusion {
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-color);
  text-align: center;
}

.story-conclusion p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.story-closing {
  font-style: italic;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 2rem;
}

.signature {
  margin-top: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
  background: var(--dark-bg);
  color: var(--text-light);
}

.contact-section .section-label {
  color: var(--accent-color);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  color: var(--text-light);
  opacity: 0.9;
}

.info-item a {
  color: var(--text-light);
  opacity: 0.9;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186, 147, 73, 0.2);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(186, 147, 73, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(186, 147, 73, 0.1);
}

/* reCAPTCHA Styling */
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.g-recaptcha > div {
  margin: 0 auto;
}

#formMessage {
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  animation: fadeIn 0.3s ease-out;
}

#formMessage.success {
  background: rgba(76, 175, 80, 0.2);
  border: 2px solid #4caf50;
  color: #4caf50;
}

#formMessage.error {
  background: rgba(244, 67, 54, 0.2);
  border: 2px solid #f44336;
  color: #f44336;
}

#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-link {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Map Container */
.map-container {
  margin-top: 4rem;
  text-align: center;
}

.map-container h3 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-color);
  background: rgba(186, 147, 73, 0.1);
  padding: 0.5rem;
}

.location-map {
  border-radius: 15px;
  display: block;
  filter: grayscale(20%) contrast(1.1);
  transition: var(--transition-smooth);
}

.location-map:hover {
  filter: grayscale(0%) contrast(1.2);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s infinite;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--dark-bg);
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent var(--dark-bg);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 80px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7),
      0 0 0 15px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* ========================================
   Map Floating Button
   ======================================== */
.map-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 110px;
  right: 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(186, 147, 73, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  animation: pulse-map 2s infinite;
  cursor: pointer;
  text-decoration: none;
}

.map-float svg {
  width: 35px;
  height: 35px;
  stroke: white;
}

.map-float:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 6px 30px rgba(186, 147, 73, 0.6);
}

.map-tooltip {
  position: absolute;
  right: 75px;
  background: var(--dark-bg);
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

.map-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent var(--dark-bg);
}

.map-float:hover .map-tooltip {
  opacity: 1;
  right: 80px;
}

@keyframes pulse-map {
  0% {
    box-shadow: 0 4px 20px rgba(186, 147, 73, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(186, 147, 73, 0.7),
      0 0 0 15px rgba(186, 147, 73, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(186, 147, 73, 0.4);
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #0f0f0f;
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

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

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(186, 147, 73, 0.2);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .ceo-photo-wrapper {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }

  .photo-frame {
    width: 220px;
    height: 220px;
  }

  .ceo-info-badge h3 {
    font-size: 2rem;
  }

  .story-chapter {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-chapter::before {
    display: none;
  }

  .chapter-timeline {
    justify-content: flex-start;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center;
  }

  #formMessage {
    font-size: 0.9rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .map-float {
    width: 55px;
    height: 55px;
    bottom: 85px;
    right: 20px;
  }

  .map-float svg {
    width: 30px;
    height: 30px;
  }

  .map-tooltip {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .gallery-filters {
    gap: 0.8rem;
  }

  .filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Even smaller subcategory buttons on mobile */
  .sub-filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 0.8rem 1rem;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: -40px;
    font-size: 2.5rem;
  }

  #lightbox-img {
    max-height: 60vh;
  }

  .lightbox-counter {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }

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

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ========================================
   Animations & Utilities
   ======================================== */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

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

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

/* Mobile Extra Small Screens */
@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.75);
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}
