/* ========================================
   HOME ELEGANT - NEW HOMEPAGE STYLESHEET
   Art & Elegant Photography Studio
   ======================================== */

/* ========== CSS VARIABLES ==========*/
:root {
  /* Primary Colors - Natural & Elegant */
  --color-primary: #d4a574;
  --color-primary-dark: #b8956a;
  --color-primary-light: #ddb892;
  
  /* Dark Green Accent */
  --color-darkgreen: #2d5a4a;
  --color-darkgreen-light: #3d7a5f;
  
  /* Neutral Colors - Soft & Sophisticated */
  --color-white: #ffffff;
  --color-light-cream: #faf7f2;
  --color-light-gray: #f5f3f0;
  --color-gray: #8b8680;
  --color-dark-gray: #4a4a48;
  --color-dark: #2a2a28;
  
  /* Accent Colors */
  --color-accent: #d4a574;
  --color-accent-light: #e8d4c4;
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Lora', serif;
  --font-tertiary: 'Montserrat', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;
  
  /* Premium Spacing - For sections & grids */
  --spacing-section: 7.5rem; /* 120px */
  --spacing-grid: 2.5rem;   /* 40px */
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ========== RESET & DEFAULTS ==========*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 110px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-family: var(--font-tertiary);
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  padding-top: 0;
}

/* ========== TYPOGRAPHY ==========*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  letter-spacing: -0.3px;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.8;
}

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

/* ========== CONTAINER ==========*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

.hero .container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ========== BUTTONS ==========*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-tertiary);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary.alt-color {
  background-color: var(--color-darkgreen);
}

.btn-primary.alt-color:hover {
  background-color: var(--color-darkgreen-light);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-light {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-light:hover {
  background-color: var(--color-light-cream);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-large {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: 1.1rem;
}

.btn i {
  font-size: 0.85em;
  transition: transform 0.3s ease;
}

/* Button Mobile Optimization */
@media (max-width: 768px) {
  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
  }

  .btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
  }
}

.btn:hover i {
  transform: translateX(3px);
}

/* ========== NAVIGATION ==========*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0);
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: translateY(-2px);
}

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

.logo-title {
  font-size: 2rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.95);
  margin: 0;
  letter-spacing: -1px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  text-shadow: none;
  transition: all 0.3s ease;
}

.home .logo-title {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .logo-title {
  color: rgba(0, 0, 0, 0.95);
  text-shadow: none;
}

.home .navbar.scrolled .logo-title {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-line {
  display: block;
  white-space: nowrap;
}

.logo-dot {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.logo-tagline {
  font-size: 0.7rem;
  font-family: var(--font-tertiary);
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 2px 0 0 0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.home .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-tagline {
  color: rgba(0, 0, 0, 0.7);
  text-shadow: none;
}

.home .navbar.scrolled .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-tagline span {
  display: inline;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-tertiary);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  position: relative;
  padding: var(--spacing-xs) 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
  text-decoration: none;
  text-shadow: none;
}

.navbar.scrolled .nav-link {
  color: rgba(0, 0, 0, 0.85);
  text-shadow: none;
}

.home .nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.home .navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.navbar.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.85);
  padding: 10px 22px;
  border-radius: 25px;
  font-family: var(--font-tertiary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-shadow: none;
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
  color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.25);
  border: none;
  text-shadow: none;
}

.home .nav-cta {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.home .navbar.scrolled .nav-cta {
  color: var(--color-white);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.35);
}

.nav-cta i {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.6);
  padding: 8px 10px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home .nav-toggle {
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar.scrolled .nav-toggle {
  border-color: rgba(212, 165, 116, 0.8);
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.8);
}

.home .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.home .nav-toggle span {
  background-color: rgba(255, 255, 255, 0.75);
}

.navbar.scrolled .nav-toggle span {
  background-color: var(--color-primary);
}


.nav-toggle.active {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--color-primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transition-delay: 0s;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    box-shadow: none;
    position: fixed;
  }

  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .navbar-content {
    padding: 0.5rem 0;
  }

  .logo-title {
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.95) !important;
    text-shadow: none;
  }

  .home .logo-title {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  }

  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 1.2px;
    color: rgba(0, 0, 0, 0.75);
    text-shadow: none;
  }

  .home .logo-tagline {
    color: rgba(255, 255, 255, 0.75) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-lg) 0;
    animation: mobileMenuSlide 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-top: 1px solid rgba(212, 165, 116, 0.08);
    transition: all 0.3s ease;
  }

  .nav-menu li:first-child {
    border-top: none;
  }

  .nav-link {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .nav-link::before,
  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    padding-left: calc(var(--spacing-lg) + 8px);
  }

  .nav-cta {
    margin: var(--spacing-md) var(--spacing-lg);
    width: calc(100% - 2 * var(--spacing-lg));
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .nav-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    padding-left: var(--spacing-lg) !important;
  }

  .nav-cta i {
    margin-right: 8px;
  }

  .nav-toggle {
    display: flex;
    border-color: rgba(0, 0, 0, 0.6);
  }

  .home .nav-toggle {
    border-color: rgba(255, 255, 255, 0.6);
  }

  .nav-toggle span {
    background-color: rgba(0, 0, 0, 0.75);
  }

  .home .nav-toggle span {
    background-color: rgba(255, 255, 255, 0.75);
  }

  .nav-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.8);
  }

  .home .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 768px) {
  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.15) 100%);
  }
}

/* ========== HERO SECTION - IMAGE FOCUSED ==========*/
.hero {
  width: 100%;
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0;
  margin: 0;
  margin-top: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 4;
  pointer-events: none;
}

.hero-header {
  width: 100%;
  text-align: center;
  z-index: 10;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeInHero 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease-out;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-label {
  display: inline-block;
  font-family: var(--font-tertiary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease-out 0.1s forwards;
  opacity: 0;
}

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

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-white);
  margin: 0.8rem 0;
  letter-spacing: -2px;
  animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease-out 0.2s forwards;
  opacity: 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-secondary);
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
  animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease-out 0.3s forwards;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Hero Gallery Grid */
.hero-gallery {
  display: none;
  width: 100%;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
  margin: 1.5rem auto 3rem;
  overflow: hidden;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
}

.hero-grid {
  display: none;
  width: 100%;
  max-width: 1200px;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  animation: fadeInGallery 0.8s ease-out;
}

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

.hero-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-gallery img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0) 0%, rgba(212, 165, 116, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-gallery img:hover::before {
  opacity: 1;
}

/* Varied grid layouts */
.hero-gallery img:nth-child(1) {
  grid-column: span 1;
  height: 400px;
}

.hero-gallery img:nth-child(2) {
  grid-column: span 1;
  height: 350px;
}

.hero-gallery img:nth-child(3) {
  grid-column: span 1;
  height: 380px;
}

.hero-gallery img:nth-child(4) {
  grid-column: span 1;
  height: 350px;
}

.hero-gallery img:nth-child(5) {
  grid-column: span 1;
  height: 360px;
}

.hero-gallery img:nth-child(6) {
  grid-column: span 1;
  height: 340px;
}

/* Hero Carousel (Swiper) */
.hero-carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-sizing: border-box;
  z-index: 1;
}

.hero-carousel .swiper-container,
.hero-carousel .swiper-wrapper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-carousel .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  max-width: 100%;
  filter: brightness(0.8) contrast(1.05);
}

.hero-carousel .swiper-slide:hover img {
  transform: scale(1.02);
  filter: brightness(0.85) contrast(1.1);
}

.hero-carousel .swiper-pagination {
  bottom: var(--spacing-2xl);
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  z-index: 10;
}

.hero-carousel .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-carousel .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
  color: var(--color-primary);
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 20;
  position: absolute;
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-carousel .swiper-button-prev {
  left: 20px;
}

.hero-carousel .swiper-button-next {
  right: 20px;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
  background: rgba(212, 165, 116, 0.9);
  color: white;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 32px rgba(212, 165, 116, 0.5);
  border-color: var(--color-primary);
}

.hero-carousel .swiper-button-next::after,
.hero-carousel .swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
}

/* Hero Footer with CTA */
.hero-footer {
  text-align: center;
  padding: var(--spacing-2xl) 0;
  z-index: 10;
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease-out 0.4s forwards;
  opacity: 0;
}

.hero-footer .btn-primary {
  font-size: 1.1rem;
  padding: 15px 40px;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite, slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease-out 0.5s forwards;
  z-index: 10;
  cursor: pointer;
  transition: color 0.3s ease;
  opacity: 0;
}

.hero-scroll:hover {
  color: var(--color-primary);
}

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

.hero-scroll i {
  font-size: 1.5rem;
}
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 0;
    padding-bottom: var(--spacing-2xl);
  }

  .hero-header {
    padding: 0 var(--spacing-md);
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-gallery {
    padding: 0 var(--spacing-md);
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .hero-gallery img {
    height: 300px;
  }

  .hero-carousel {
    margin: var(--spacing-2xl) auto;
    padding: 0 var(--spacing-md);
    max-width: calc(100% - 2 * var(--spacing-md));
  }

  .hero-carousel .swiper-slide img {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    width: 50px;
    height: 50px;
  }

  .hero-carousel .swiper-button-prev {
    left: 10px;
  }

  .hero-carousel .swiper-button-next {
    right: 10px;
  }

  .hero-carousel .swiper-button-next::after,
  .hero-carousel .swiper-button-prev::after {
    font-size: 18px;
  }

  .hero-carousel .swiper-pagination {
    bottom: -50px;
    gap: 10px;
  }

  .hero-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100dvh;
    padding: 0;
  }

  .hero-header {
    padding: 0 var(--spacing-md);
    width: 100%;
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    padding: 0 var(--spacing-md);
  }

  .hero-scroll {
    font-size: 0.85rem;
    display: none;
  }

  .hero-carousel {
    height: 100dvh;
  }

  .hero-carousel .swiper-slide img {
    height: 100dvh;
    object-fit: cover;
  }

  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    width: 48px;
    height: 48px;
  }

  .hero-carousel .swiper-button-prev {
    left: 12px;
  }

  .hero-carousel .swiper-button-next {
    right: 12px;
  }

  .hero-carousel .swiper-button-next::after,
  .hero-carousel .swiper-button-prev::after {
    font-size: 18px;
  }

  .hero-carousel .swiper-pagination {
    bottom: var(--spacing-xl);
    gap: 8px;
  }

  .hero-carousel .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 100vh;
    padding: 0;
  }

  .hero-header {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-top: 1rem;
  }

  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero-carousel .swiper-button-prev {
    left: 10px;
  }

  .hero-carousel .swiper-button-next {
    right: 10px;
  }

  .hero-carousel .swiper-button-next::after,
  .hero-carousel .swiper-button-prev::after {
    font-size: 16px;
  }

  .hero-carousel .swiper-pagination {
    bottom: var(--spacing-lg);
    gap: 6px;
  }

  .hero-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
  }

  .hero-carousel .swiper-slide img {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero-carousel .swiper-button-prev {
    left: 6px;
  }

  .hero-carousel .swiper-button-next {
    right: 6px;
  }

  .hero-carousel .swiper-button-next::after,
  .hero-carousel .swiper-button-prev::after {
    font-size: 14px;
  }

  .hero-carousel .swiper-pagination {
    bottom: -40px;
    gap: 6px;
  }

  .hero-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 70px;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

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

  .hero-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 var(--spacing-sm);
    margin-bottom: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr; /* Single column for better display */
    gap: 0.75rem;
    width: 100%;
    padding: 0;
  }

  .hero-gallery {
    width: 100%;
    margin: 1.25rem 0;
  }

  .hero-gallery img {
    height: 280px; /* Better height for mobile viewing */
    border-radius: 10px;
    width: 100%;
  }

  .hero-carousel .swiper-slide img {
    height: 280px;
  }

  .hero-carousel {
    width: 100%;
    margin: 1rem 0 2rem;
    padding: 0;
  }

  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    width: 38px;
    height: 38px;
    font-size: 16px;
    display: none;
  }

  .hero-carousel .swiper-button-next::after,
  .hero-carousel .swiper-button-prev::after {
    font-size: 14px;
  }

  .hero-carousel .swiper-button-next {
    right: 5px;
  }

  .hero-carousel .swiper-button-prev {
    left: 5px;
  }

  .hero-carousel .swiper-pagination {
    bottom: -35px;
    gap: 5px;
    margin-top: 1.5rem;
  }

  .hero-carousel .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 2px;
  }

  .hero-header {
    margin-bottom: 1rem;
  }

  .hero-scroll {
    bottom: var(--spacing-md);
    font-size: 0.8rem;
  }

  .hero-scroll i {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    display: flex;
    opacity: 0.7;
  }

  .hero-carousel .swiper-button-next:hover,
  .hero-carousel .swiper-button-prev:hover {
    opacity: 1;
  }
}

/* ========== SECTION HEADER ==========*/
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  padding: 0 var(--spacing-lg);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

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

.section-description {
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
  font-size: 1.1rem;
  color: var(--color-gray);
  line-height: 1.8;
}

/* Section Typography Mobile Optimization */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
  }

  .section-title::after {
    width: 50px;
    height: 2px;
    bottom: -8px;
  }

  .section-description {
    font-size: 1rem;
    margin: var(--spacing-md) auto 0;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.95rem;
    padding: 0 var(--spacing-sm);
  }
}

/* ========== FEATURED GALLERY SECTION ==========*/
.featured-gallery {
  padding: var(--spacing-section) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(212, 165, 116, 0.02) 100%);
  position: relative;
}

.gallery-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.gallery-title h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-dark);
  margin: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.gallery-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary) 50%, transparent);
  border-radius: 2px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  grid-auto-rows: 300px;
}

/* Masonry layout pattern */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: auto;
}

.gallery-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: auto;
}

.gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: auto;
}

.gallery-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: auto;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: auto;
}

.gallery-item:nth-child(n+7) {
  display: none;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

@media (max-width: 1024px) {
  .gallery-masonry {
    grid-auto-rows: 280px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .featured-gallery {
    padding: 5rem 0;
  }

  .gallery-title {
    margin-bottom: 3rem;
  }

  .gallery-title h2 {
    font-size: 1.8rem;
  }

  .gallery-masonry {
    grid-auto-rows: 250px;
    gap: 1.5rem;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .featured-gallery {
    padding: var(--spacing-xl) 0;
  }

  .gallery-title h2 {
    font-size: 1.5rem;
  }

  .gallery-title h2::after {
    width: 40px;
    bottom: -8px;
  }

  .gallery-title {
    margin-bottom: var(--spacing-lg);
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: var(--spacing-sm);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: var(--spacing-xs);
  }
}

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

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

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 90, 74, 0.5), rgba(212, 165, 116, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-slow);
  backdrop-filter: blur(3px);
}

.gallery-overlay span {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-primary);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(10px);
}

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

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

/* ========== CATEGORY GALLERY SECTIONS ==========*/
.category-gallery {
  padding: var(--spacing-section) 0;
}

.wedding-gallery {
  background-color: var(--color-light-gray);
}

.family-gallery {
  background: linear-gradient(135deg, rgba(245, 243, 240, 0.9), rgba(212, 165, 116, 0.05));
}

.makeup-gallery {
  background-color: var(--color-white);
}

.portrait-gallery {
  background: linear-gradient(135deg, rgba(245, 243, 240, 0.9), rgba(45, 90, 74, 0.05));
}

.documentary-gallery {
  background: linear-gradient(135deg, var(--color-light-cream), var(--color-light-gray));
}

.documentary-gallery .section-title {
  color: var(--color-darkgreen);
}

.documentary-gallery .section-title::after {
  background-color: var(--color-darkgreen);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-grid);
}

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

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

@media (max-width: 1024px) {
  .category-gallery {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .category-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .category-gallery {
    padding: 4rem 0;
  }

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

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .category-gallery {
    padding: 3rem 0;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .category-gallery {
    padding: 2.5rem 0;
  }

  .category-grid {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.gallery-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 200px;
}

@media (max-width: 480px) {
  .gallery-card {
    min-height: 180px;
    border-radius: 8px;
  }
}

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

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: var(--transition);
}

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

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

/* ========== PORTFOLIO CTA SECTION ==========*/
.portfolio-cta-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
}

.portfolio-cta-section .cta-content {
  text-align: center;
}

.portfolio-cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.portfolio-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  font-size: 1.15rem;
}

/* Portfolio CTA Mobile Optimization */
@media (max-width: 768px) {
  .portfolio-cta-section {
    padding: var(--spacing-2xl) 0;
  }

  .portfolio-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
  }

  .portfolio-cta-section p {
    font-size: 1rem;
    margin-bottom: var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  .portfolio-cta-section {
    padding: var(--spacing-xl) 0;
  }

  .portfolio-cta-section h2 {
    font-size: 1.5rem;
  }

  .portfolio-cta-section p {
    font-size: 0.95rem;
  }
}

/* ========== WHY US SECTION ==========*/
.why-us {
  padding: var(--spacing-section) 0;
  background-color: var(--color-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-grid);
  align-items: center;
}

@media (max-width: 968px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 5rem 0;
  }

  .why-us-grid {
    gap: 3rem;
  }

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

@media (max-width: 480px) {
  .why-us {
    padding: 3rem 0;
  }

  .why-us-item {
    gap: var(--spacing-md);
  }

  .why-us-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .why-us-text h3 {
    font-size: 1.1rem;
  }

  .why-us-text p {
    font-size: 0.95rem;
  }
}

.why-us-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.why-us-item {
  display: flex;
  gap: var(--spacing-lg);
}

.why-us-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.why-us-text h3 {
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.why-us-text p {
  color: var(--color-gray);
  margin: 0;
}

.why-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ========== TESTIMONIALS SECTION ==========*/
.testimonials {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--color-light-cream), var(--color-light-gray));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-grid);
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: var(--transition);
}

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

.stars {
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-xs);
}

.stars i {
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: var(--spacing-lg);
}

.testimonial-author h4 {
  color: var(--color-dark);
  margin-bottom: var(--spacing-xs);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
}

/* Testimonials Mobile Optimization */
@media (max-width: 768px) {
  .testimonials {
    padding: 5rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
  }
}

/* ========== PROCESS SECTION =========*/
.process {
  padding: var(--spacing-section) 0;
  background-color: var(--color-white);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 0;
  }
}

.process-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.process-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.process-item h3 {
  color: var(--color-dark);
}

.process-item p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.process-arrow {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
  animation: slideRight 0.6s ease infinite alternate;
}

@keyframes slideRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(8px);
  }
}

.mobile-hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hidden {
    display: flex;
  }
}

/* ========== ABOUT SECTION ==========*/
.about {
  padding: var(--spacing-section) 0;
  background-color: var(--color-light-gray);
  width: 100%;
  overflow-x: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about {
    padding: var(--spacing-2xl) 0;
  }

  .about-grid {
    gap: var(--spacing-2xl);
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .about-text-block {
    margin-bottom: var(--spacing-xl);
  }

  .about-body p {
    margin-bottom: var(--spacing-sm);
  }

  .about-ctas {
    margin-bottom: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .team-section {
    margin-top: 0;
    padding-top: var(--spacing-xl);
  }

  .team-section h3 {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-lg);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }

  .team-avatar {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: var(--spacing-xl) 0;
  }

  .about-intro {
    font-size: 1rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-ctas {
    flex-direction: column;
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    gap: var(--spacing-md);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-content .section-title {
  display: block;
  margin-bottom: var(--spacing-lg);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
  width: 100%;
  min-width: 0;
}

.about-text-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.about-text-block {
  margin-bottom: var(--spacing-2xl);
}

.about-intro {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.about-body {
  margin-bottom: var(--spacing-lg);
}

.about-body p {
  margin-bottom: var(--spacing-md);
  color: var(--color-gray);
  line-height: 1.7;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-content p {
  margin-bottom: var(--spacing-lg);
  color: var(--color-gray);
}

.about-ctas {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-accent-light);
}

@media (max-width: 640px) {
  .about-ctas {
    flex-direction: column;
  }
}

/* ========== TEAM SECTION ==========*/
.team-section {
  margin-top: 0;
  padding-top: var(--spacing-2xl);
  border-top: 1px solid var(--color-accent-light);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: visible;
  min-width: 0;
}

.team-section h3 {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(45, 90, 74, 0.1);
  transition: all 0.3s ease;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-member:hover .team-avatar {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 90, 74, 0.15);
}

.team-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .team-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .team-section h3 {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-lg);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .team-avatar {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .team-avatar {
    width: 65px;
    height: 65px;
  }

  .team-name {
    font-size: 0.75rem;
  }
}

/* ========== CTA SECTION ==========*/
.cta-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ========== CONTACT SECTION ==========*/
.contact {
  padding: 0;
  background-color: var(--color-white);
}

/* CTA Content within Contact Section */
.contact .cta-content {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  text-align: center;
}

.contact .cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.contact .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact > .container {
  padding: var(--spacing-section) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Centered Contact Grid (No Form) */
.contact-grid.contact-center {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: var(--spacing-lg);
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(250, 247, 242, 0.4);
  border: 1px solid rgba(212, 165, 116, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item:hover {
  background: rgba(250, 247, 242, 0.8);
  border-color: rgba(212, 165, 116, 0.15);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.08);
}

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.contact-text h3 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.contact-text p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.contact-text a {
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: var(--color-primary-dark);
}

.contact-social {
  margin-top: 0;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(212, 165, 116, 0.12);
  text-align: center;
}

.contact-social h3 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-dark);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #9d7458 100%);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.25);
}

/* Contact Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: var(--spacing-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-tertiary);
  font-size: 1rem;
  color: var(--color-dark);
  background-color: var(--color-light-gray);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-gray);
}

.contact-form button {
  margin-top: var(--spacing-md);
}

/* ========== FOOTER ==========*/
.footer {
  background: linear-gradient(135deg, rgba(58, 90, 64, 0.05) 0%, rgba(235, 149, 0, 0.02) 100%);
  border-top: 1px solid rgba(58, 90, 64, 0.08);
  color: var(--color-text);
  padding: var(--spacing-section) var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-grid);
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(58, 90, 64, 0.08);
}

.footer-section h3,
.footer-section h4 {
  color: var(--color-darkgreen);
  margin-bottom: var(--spacing-lg);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section h3 {
  font-size: 1rem;
  text-transform: none;
}

.footer-section p {
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  opacity: 0.75;
  line-height: 1.6;
  font-size: 0.9rem;
}

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

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--color-text);
  opacity: 0.7;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer-bottom p {
  color: var(--color-text);
  opacity: 0.6;
  margin: 0;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-2xl);
}

.footer-links a {
  color: var(--color-text);
  opacity: 0.6;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--color-primary);
  opacity: 1;
}

@media (max-width: 768px) {
  .footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }

  .footer-section {
    padding-bottom: var(--spacing-lg);
  }

  .footer-section h3,
  .footer-section h4 {
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .footer-links a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: var(--spacing-xl) 0;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-section a {
    font-size: 0.85rem;
  }
}

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

/* ========== RESPONSIVE ==========*/
@media (max-width: 640px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

  .hero {
    margin-top: 60px;
  }

  .process-timeline {
    gap: var(--spacing-xl);
  }
}

/* ========== UTILITY CLASSES ==========*/
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.opacity-70 {
  opacity: 0.7;
}
/* ========== GALLERY MANAGER STYLES ==========*/

/* Loading Skeleton */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

/* Gallery Item Card */
.gallery-item {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f3f0 0%, #faf7f2 100%);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-image.loaded {
  animation: fadeIn 0.6s ease-out;
}

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

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

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 90, 74, 0.7) 0%, rgba(45, 90, 74, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

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

.overlay-content h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.overlay-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.overlay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.overlay-icon:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}



/* Masonry Gallery */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
}

@media (max-width: 1200px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Album Card */
.album-card {
  transition: all var(--transition);
}

.album-card .gallery-item {
  height: 300px;
}

.album-card:hover {
  transform: translateY(-8px);
}

/* Featured Items */
.featured-item {
  height: 350px;
}

.featured-item:nth-child(1) {
  grid-column: span 1;
}

.featured-item:nth-child(3) {
  grid-column: span 1;
}

.featured-item:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .featured-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }

  .featured-item:nth-child(3) {
    grid-column: span 2;
    height: auto;
  }

  .featured-item:nth-child(5) {
    grid-row: span 2;
    height: auto;
  }
}

/* See All Button Container */
.see-all-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(212, 165, 116, 0.02) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 165, 116, 0.1);
  margin-top: var(--spacing-lg);
}

.see-all-btn {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.see-all-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.see-all-btn i {
  transition: transform 0.3s ease;
}

.see-all-btn:hover i {
  transform: translateX(5px);
}

/* Lazy Loading Placeholder */
.gallery-image[data-src] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========== CONTACT FORM STYLES ==========*/
.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(45, 90, 74, 0.03) 100%);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin: 0 0 3rem 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-tertiary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-tertiary);
  font-size: 0.95rem;
  color: var(--color-dark);
  background-color: var(--color-white);
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
  background-color: rgba(250, 247, 242, 0.5);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form button {
  grid-column: 1 / -1;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.25);
}

.form-notice {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--color-gray);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Contact Divider */
.contact-divider {
  text-align: center;
  margin: 3rem 0 2.5rem;
  font-size: 0.9rem;
  color: var(--color-gray);
  position: relative;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
}

.contact-divider::before {
  left: 0;
}

.contact-divider::after {
  right: 0;
}

/* Alternative Contact Methods */
.alternative-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2.5rem auto 4rem;
  align-items: center;
  justify-items: center;
}

.contact-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 160px;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 220px;
}

.contact-link-button.facebook {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.contact-link-button.facebook:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #9d7458 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.25);
}

.contact-link-button.phone {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.contact-link-button.phone:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #9d7458 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.25);
}

.contact-link-button.zalo {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.contact-link-button.zalo:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #9d7458 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.25);
}

.contact-link-button i {
  font-size: 1.25rem;
}

/* ========== ABOUT SECTION - NEW DESIGN ========== */
.about-new {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--color-light-cream) 0%, var(--color-light-gray) 100%);
  position: relative;
  overflow: hidden;
}

.about-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Story Cards Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-grid);
  margin: 3rem 0 4rem;
  position: relative;
  z-index: 1;
}

.about-story-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition-slow);
  border-top: 4px solid transparent;
}

.story-card-1 {
  border-top-color: var(--color-primary);
}

.story-card-2 {
  border-top-color: var(--color-darkgreen);
}

.story-card-3 {
  border-top-color: var(--color-primary-dark);
}

.about-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-story-card .story-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-story-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-story-card p {
  color: var(--color-gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Team Section */
.team-section-new {
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.team-header {
  margin-bottom: 3rem;
}

/* Team Grid - Responsive */
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Team Card Styling */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
}

.team-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(45, 90, 74, 0.3) 100%);
  opacity: 0;
  transition: var(--transition-slow);
}

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

.team-info {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.team-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
}

.team-desc {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* About Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-gray);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* About CTA */
.about-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 8px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-slow);
}

.btn-primary.btn-large {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-primary.btn-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary.btn-large {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
}

.btn-secondary.btn-large:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.3);
}

/* ========== RESPONSIVE ABOUT SECTION ========== */
@media (max-width: 1024px) {
  .team-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .team-image-wrapper {
    width: 110px;
    height: 110px;
  }

  .team-info {
    padding: 1.25rem 1rem;
  }

  .team-name {
    font-size: 1.05rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta {
    gap: 1rem;
  }

  .btn-large {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .about-new {
    padding: 4rem 0;
  }

  .about-story-grid {
    gap: 1.5rem;
    margin: 2rem 0 3rem;
  }

  .about-story-card {
    padding: 2rem 1.5rem;
  }

  .team-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .team-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .team-info {
    padding: 1rem 0.75rem;
  }

  .team-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }

  .team-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .team-role {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .team-desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .about-cta {
    gap: 1rem;
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    min-width: auto;
    padding: 1rem 1.5rem;
  }

  .team-section-new {
    margin-top: 3rem;
  }

  .team-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .about-new {
    padding: 3rem 0;
  }

  .about-story-grid {
    gap: 1rem;
    margin: 1.5rem 0 2rem;
  }

  .about-story-card {
    padding: 1.5rem 1rem;
  }

  .about-story-card .story-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .about-story-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .about-story-card p {
    font-size: 0.9rem;
  }

  .team-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-image-wrapper {
    width: 90px;
    height: 90px;
  }

  .team-info {
    padding: 0.9rem 0.6rem;
  }

  .team-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .team-name {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .team-role {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .team-desc {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-cta {
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .btn-large {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    min-width: auto;
  }

  .btn-large i {
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

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

  .section-description {
    font-size: 0.9rem;
  }
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .alternative-contact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem auto 3rem;
  }

  .contact-link-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
    max-width: 100%;
  }

  .contact-social h3 {
    font-size: 0.95rem;
  }

  .social-links {
    gap: 0.9rem;
  }

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

  .gallery-image-wrapper {
    height: 250px;
  }

  .gallery-item {
    height: 250px;
  }

  .overlay-content h3 {
    font-size: 1rem;
  }

  .see-all-container {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }

  .featured-item:nth-child(1),
  .featured-item:nth-child(3),
  .featured-item:nth-child(5) {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }

  /* ========== CONTACT FORM RESPONSIVE ==========*/
  .contact-form-wrapper {
    max-width: 100%;
    margin: 0 -1rem 3rem;
    padding: 2rem 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .alternative-contact {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 100%;
    margin: 1.5rem auto 2.5rem;
  }

  .contact-link-button {
    min-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    max-width: 100%;
  }

  .contact-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .contact-text p {
    font-size: 0.9rem;
  }

  .contact-social {
    padding-top: 2rem;
  }

  .contact-social h3 {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .social-links {
    gap: 0.8rem;
  }

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

/* ========== SCROLL NAVIGATION BUTTON ========== */
.scroll-nav {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.scroll-nav.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: white;
  color: var(--color-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.scroll-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
}

.scroll-btn:active {
  transform: translateY(-1px);
}

/* Hide top button when at top, hide bottom button when at bottom */
.scroll-top.hidden,
.scroll-bottom.hidden {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .scroll-nav {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.6rem;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .scroll-nav {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .scroll-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    border-width: 1.5px;
  }
}
