/* ==========================================================================
   D M ALLU BHANDAR — PREMIUM BUSINESS STYLESHEET
   Agricultural Commission Agent & Wholesale Potato & Onion Merchant
   Established 2020 | Mandvi, Kutch, Gujarat
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS & IMPORTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   2. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-green: #0F3D1E;
  --primary-green-rgb: 15, 61, 30;
  --dark-green: #07220E;
  --mid-green: #1F5F31;
  --light-green: #4CAF50;
  --pale-green: #F4F8F5;
  --accent-gold: #C5A059;
  --accent-gold-rgb: 197, 160, 89;
  --accent-gold-light: #DFC287;
  --accent-gold-dark: #9E7C37;
  
  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-cream: #FAFBF9;
  --bg-glass-light: rgba(255, 255, 255, 0.72);
  --bg-glass-dark: rgba(15, 61, 30, 0.82);
  
  /* Text */
  --text-dark: #1A2E20;
  --text-muted: #566D5E;
  --text-light: #EAF2EC;
  
  /* Borders */
  --border-soft: rgba(15, 61, 30, 0.08);
  --border-glass: rgba(255, 255, 255, 0.25);
  
  /* Typography */
  --font-family: 'Poppins', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  
  /* Layout Metrics */
  --container-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 32px;
  
  /* Shadows & Transitions */
  --shadow-soft: 0 12px 30px rgba(15, 61, 30, 0.06);
  --shadow-strong: 0 24px 60px rgba(15, 61, 30, 0.12);
  --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.25);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   3. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: var(--font-family);
  font-size: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.25;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   4. LAYOUT COMPONENTS & UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.bg-white-section {
  background-color: var(--bg-white);
}

.bg-cream-section {
  background-color: var(--bg-cream);
}

.bg-green-section {
  background-color: var(--primary-green);
  color: var(--text-light);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 24px;
}

.section-header .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-header h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.bg-green-section .section-header h2 {
  color: var(--bg-white);
}

.bg-green-section .section-header p {
  color: var(--text-light);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Primary Button (Gold Accent) */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.35);
}

/* Secondary Button (Outline Gold) */
.btn-outline {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-outline::after {
  background: var(--accent-gold);
}

.btn-outline:hover {
  color: var(--bg-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Dark Green Button */
.btn-dark {
  background: var(--primary-green);
  color: var(--bg-white);
}

.btn-dark::after {
  background: var(--accent-gold);
}

.btn-dark:hover {
  color: var(--bg-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 24px 0;
}

.site-header.scrolled {
  background: var(--bg-glass-light);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

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

/* Scroll Progress Bar */
.scroll-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
}

.scroll-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
  transition: width 0.1s ease-out;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(15, 61, 30, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-green);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent-gold);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

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

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

/* Header Call Action */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 61, 30, 0.05);
  border: 1px solid rgba(15, 61, 30, 0.08);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  transition: var(--transition);
}

.call-cta svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  transition: var(--transition);
}

.call-cta:hover {
  background: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
}

.call-cta:hover svg {
  fill: var(--bg-white);
  transform: rotate(15deg);
}

/* Mobile Toggle Hamburger */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 1010;
}

.nav-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-green);
  border-radius: 2px;
  transition: var(--transition);
}

/* --------------------------------------------------------------------------
   7. HERO SECTION (HOME)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: var(--space-lg);
  overflow: hidden;
  background-color: var(--dark-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 34, 14, 0.95) 0%, rgba(15, 61, 30, 0.75) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  color: var(--bg-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.12);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  margin-bottom: var(--space-sm);
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero-content p.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: var(--space-md);
  max-width: 580px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Glass Feature Card in Hero */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge-title {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hero-feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.hero-feature-text h4 {
  color: var(--bg-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-feature-text p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Scroll Down Mouse Indicator */
.hero-scroll-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bg-white);
  opacity: 0.6;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 4;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid var(--bg-white);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.6s ease-in-out infinite;
}

@keyframes wheelScroll {
  0% { top: 6px; opacity: 1; }
  50% { top: 16px; opacity: 0; }
  100% { top: 6px; opacity: 1; }
}

/* --------------------------------------------------------------------------
   8. ABOUT PREVIEW SECTION & STORY
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  padding: 20px;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

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

.about-images-wrapper:hover .about-main-img img {
  transform: scale(1.05);
}

.about-img-frame {
  position: absolute;
  inset: 0px 0px 40px 40px;
  border: 3px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--primary-green);
  border: 6px solid var(--bg-white);
  color: var(--bg-white);
  padding: 22px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  text-align: center;
  z-index: 3;
}

.about-badge .number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.about-badge .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.about-content-text .lead {
  font-size: 1.1rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.about-content-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.about-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: var(--pale-green);
  padding: 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-gold);
}

.about-feat-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.about-feat-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.about-feat-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.why-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.why-card:hover {
  transform: translateY(-10px);
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-strong);
}

.why-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pale-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: var(--transition);
}

.why-card:hover .why-icon-container {
  background: rgba(255, 255, 255, 0.1);
}

.why-icon-container svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold);
  transition: var(--transition);
}

.why-card:hover .why-icon-container svg {
  fill: var(--accent-gold-light);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: var(--transition);
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.5;
}

.why-card:hover h3 {
  color: var(--bg-white);
}

.why-card:hover p {
  color: var(--text-light);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   10. BUSINESS HIGHLIGHTS & STATS
   -------------------------------------------------------------------------- */
.stats-section {
  position: relative;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   11. COMMODITIES / PRODUCTS Grid
   -------------------------------------------------------------------------- */
.commodities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.commodity-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: var(--transition);
}

.commodity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(197, 160, 89, 0.2);
}

.commodity-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.commodity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.commodity-card:hover .commodity-media img {
  transform: scale(1.08);
}

.commodity-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}

.commodity-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.commodity-info h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.commodity-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.commodity-features {
  margin-bottom: 24px;
}

.commodity-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 6px;
}

.commodity-feat svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.commodity-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold-dark);
}

.commodity-cta svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold-dark);
  transition: var(--transition-fast);
}

.commodity-cta:hover {
  color: var(--primary-green);
}

.commodity-cta:hover svg {
  transform: translateX(4px);
  fill: var(--primary-green);
}

/* --------------------------------------------------------------------------
   12. GALLERY PREVIEW
   -------------------------------------------------------------------------- */
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.gallery-preview-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 30, 0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-preview-overlay span {
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   13. CTA BAND SECTION
   -------------------------------------------------------------------------- */
.cta-wrapper {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-text h3 {
  font-size: 2rem;
  color: var(--bg-white);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cta-text p {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 580px;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. PAGE HEADER & BREADCRUMBS (INNER PAGES)
   -------------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding: 180px 0 var(--space-lg);
  background-color: var(--primary-green);
  color: var(--bg-white);
  overflow: hidden;
  text-align: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/page-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 34, 14, 0.95), rgba(15, 61, 30, 0.82));
  z-index: 2;
}

.page-header-container {
  position: relative;
  z-index: 3;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0.85;
}

.breadcrumbs a {
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.breadcrumbs span.separator {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   15. TIMELINE & MILESTONES (ABOUT PAGE)
   -------------------------------------------------------------------------- */
.timeline-section {
  padding: var(--space-xl) 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--pale-green);
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  z-index: 2;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 28px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid var(--accent-gold);
  z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(197, 160, 89, 0.25);
}

.timeline-year {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   16. GALLERY PAGE (MASONRY & LIGHTBOX)
   -------------------------------------------------------------------------- */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-soft);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 30, 0.8), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.masonry-info h3 {
  color: var(--bg-white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.masonry-info p {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.78rem;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 34, 14, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

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

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: var(--bg-white);
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--bg-white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2005;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bg-white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
  z-index: 2005;
}

.lightbox-nav:hover {
  color: var(--accent-gold);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* --------------------------------------------------------------------------
   17. CONTACT PAGE LAYOUT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-card {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.contact-card::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-card h3 {
  color: var(--bg-white);
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
  font-weight: 800;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold-light);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.contact-item h4 {
  color: var(--bg-white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.85;
}

.contact-item a:hover {
  color: var(--accent-gold-light);
}

/* Map Card */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.map-card iframe {
  width: 100%;
  height: 280px;
  display: block;
}

/* Contact Form Card */
.form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.form-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-soft);
  background-color: var(--pale-green);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status-msg {
  margin-top: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

.form-status-msg.error {
  display: block;
  color: #D32F2F;
}

.form-status-msg.success {
  display: block;
  color: var(--primary-green);
}

/* --------------------------------------------------------------------------
   18. PRIVACY POLICY PAGE LAYOUT
   -------------------------------------------------------------------------- */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--pale-green);
  padding-bottom: 8px;
}

.policy-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: 18px;
  padding-left: 20px;
}

.policy-content li {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
  position: relative;
  list-style-type: square;
}

/* --------------------------------------------------------------------------
   19. FOOTER SECTION
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--dark-green);
  color: var(--bg-white);
  padding: var(--space-xl) 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info .logo-icon {
  background: linear-gradient(135deg, var(--bg-white), var(--accent-gold));
  color: var(--primary-green);
}

.footer-info .logo-name {
  color: var(--bg-white);
}

.footer-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.75;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
  opacity: 0.75;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
  opacity: 1;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.75;
}

.footer-contact-item a:hover {
  color: var(--accent-gold);
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.6;
}

.footer-bottom a {
  font-size: 0.8rem;
  color: var(--accent-gold-light);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: var(--bg-white);
  transition: var(--transition-fast);
}

.back-to-top:hover {
  background-color: var(--primary-green);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   20. TRANSITIONS & SCROLL REVEAL (AOS-LIKE)
   -------------------------------------------------------------------------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}

[data-aos].aos-animate {
  transform: translate(0) scale(1);
}
