/* ===================================
   Design by Anjali - Wedding Boutique
   Complete Design System
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===================================
   CSS Custom Properties (Variables)
   =================================== */
:root {
  /* Primary Colors - Soft Pastels */
  --color-blush: #F8E8E8;
  --color-cream: #FDF6F0;
  --color-peach: #FFECD2;
  --color-rose: #F5D0D0;
  --color-lavender: #F0E6EF;

  /* Accent Colors */
  --color-gold: #D4AF37;
  --color-gold-light: #E8D48A;
  --color-gold-dark: #B8960C;
  --color-maroon: #800020;
  --color-maroon-light: #A0324F;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-off-white: #FAFAFA;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E5E5E5;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-black: #171717;

  /* Semantic Colors */
  --color-success: #4CAF50;
  --color-error: #E53935;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ===================================
   Accessibility - Skip Link
   =================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-maroon);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-700);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gray-800);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }

  h3 {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-6xl);
  }
}

.text-gold {
  color: var(--color-gold);
}

.text-maroon {
  color: var(--color-maroon);
}

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

/* ===================================
   Layout Components
   =================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-20) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }

  .features-section {
    padding: var(--space-12) 0 !important;

  }

  .section-lg {
    padding: var(--space-24) 0;
  }
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: var(--text-2xl);
  }

  .logo-tagline {
    font-size: var(--text-xs);
  }
}

/* Desktop Navigation */
.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-maroon));
  transition: width var(--transition-base);
}

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

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

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-maroon);
  transition: all var(--transition-base);
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-blush) 100%);
  padding: var(--space-20) var(--space-8);
  transition: right var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-gray-700);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-maroon);
  padding-left: var(--space-4);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

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

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

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

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

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

.btn-lg {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--space-8);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 50%, var(--color-peach) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Animated gradient orbs for modern look */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.hero-text {
  text-align: center;
  order: 2;
}

@media (min-width: 768px) {
  .hero-text {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-rating .stars {
  color: var(--color-gold);
  font-size: var(--text-base);
  letter-spacing: -2px;
}

@media (min-width: 768px) {
  .hero-rating .stars {
    font-size: var(--text-lg);
  }
}

.hero-rating .rating-text {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gray-700);
}

@media (min-width: 768px) {
  .hero-rating .rating-text {
    font-size: var(--text-sm);
  }
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-4);
  line-height: 1.15;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
  color: var(--color-maroon);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-gold-light), transparent);
  z-index: -1;
  border-radius: var(--radius-full);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-title .highlight::after {
    bottom: 4px;
    height: 8px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: var(--text-6xl);
  }

  .hero-title .highlight::after {
    bottom: 5px;
    height: 10px;
  }
}

.hero-subtitle {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    font-size: var(--text-lg);
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3);
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    gap: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

/* Mobile-optimized buttons */
.hero-buttons .btn {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 480px) {
  .hero-buttons .btn {
    width: auto;
    max-width: none;
  }
}

/* Hero Image - Now visible on all screen sizes */
.hero-image {
  position: relative;
  display: block;
  order: 1;
}

@media (min-width: 768px) {
  .hero-image {
    order: 2;
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  animation: fadeInScale 0.8s ease-out 0.2s both;
  max-width: 320px;
  margin: 0 auto;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    max-width: none;
  }
}

/* Decorative elements for image wrapper */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .hero-image-wrapper::before {
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
  }
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border: 3px solid var(--color-maroon);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .hero-image-wrapper::after {
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
  }
}

.hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

@media (min-width: 480px) {
  .hero-image img {
    height: 320px;
  }
}

@media (min-width: 768px) {
  .hero-image img {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .hero-image img {
    height: 500px;
  }
}

/* Floating Elements - Enhanced with cool effects */
.floating-badge {
  display: none;
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 0 20px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: float 4s ease-in-out infinite, pulse-glow-badge 3s ease-in-out infinite;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.floating-badge:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Shimmer effect overlay */
.floating-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}



@keyframes shimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes pulse-glow-badge {

  0%,
  100% {
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.12),
      0 0 20px rgba(212, 175, 55, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  50% {
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.12),
      0 0 30px rgba(212, 175, 55, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}

@media (min-width: 768px) {
  .floating-badge {
    display: flex;
    padding: var(--space-3) var(--space-5);
    gap: var(--space-3);
    border-radius: 12px;
  }
}

.floating-badge span:first-child {
  font-size: 1rem;
  animation: bounce-icon 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes bounce-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@media (min-width: 768px) {
  .floating-badge span:first-child {
    font-size: 1.5rem;
  }
}

.floating-badge.badge-1 {
  top: 8%;
  right: 5%;
  animation: float 4s ease-in-out infinite, pulse-glow-badge 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .floating-badge.badge-1 {
    top: 15%;
    right: -5%;
  }
}

@media (min-width: 1024px) {
  .floating-badge.badge-1 {
    top: 20%;
    right: -10%;
  }
}

.floating-badge.badge-2 {
  bottom: 8%;
  left: 5%;
  animation: float 4s ease-in-out infinite 1.5s, pulse-glow-badge 3s ease-in-out infinite 1s;
}

.floating-badge.badge-2::after {
  animation: shimmer 3s ease-in-out infinite 1.5s;
}

@media (min-width: 768px) {
  .floating-badge.badge-2 {
    bottom: 15%;
    left: -5%;
  }
}

@media (min-width: 1024px) {
  .floating-badge.badge-2 {
    bottom: 20%;
    left: -10%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  75% {
    transform: translateY(-6px) rotate(0.5deg);
  }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-4xl);
  }
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-maroon));
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
}

/* ===================================
   Feature Cards - Glassmorphism Style
   =================================== */

/* Features Section Background */
.features-section {
  position: relative;
  background: linear-gradient(135deg,
      #fff8f0 0%,
      #ffe4d4 25%,
      #ffd4c4 50%,
      #f8e8dc 75%,
      #fff5ee 100%);
  overflow: hidden;
}

/* Decorative Blur Shapes */
.features-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blur-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: floatShape 20s ease-in-out infinite;
}

.blur-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(255, 215, 0, 0.3));
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.blur-shape.shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.25), rgba(178, 102, 76, 0.2));
  bottom: -80px;
  right: -80px;
  animation-delay: -7s;
}

.blur-shape.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.4), rgba(255, 218, 185, 0.3));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

.blur-shape.shape-3 {
  animation-name: floatShapeCenter;
}

@keyframes floatShapeCenter {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    transform: translate(-45%, -55%) scale(1.1);
  }

  50% {
    transform: translate(-55%, -45%) scale(0.9);
  }

  75% {
    transform: translate(-48%, -52%) scale(1.05);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 248, 240, 0.4) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
}

/* Gradient border effect on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-maroon), var(--color-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Shimmer effect overlay */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.08) 50%,
      transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.3);
  border-color: transparent;
}

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

.feature-card:hover::after {
  left: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(145deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* Decorative ring around icon */
.feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 12px 32px rgba(212, 175, 55, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon::before {
  inset: -8px;
  border-color: rgba(212, 175, 55, 0.5);
  transform: rotate(-10deg);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-3);
  transition: color 0.3s ease;
  position: relative;
}

.feature-card:hover .feature-title {
  color: var(--color-maroon);
}

.feature-text {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.8;
  position: relative;
}

/* ===================================
   Collection Cards
   =================================== */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collection-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  group: collection;
}

.collection-card-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collection-card:hover .collection-card-image {
  transform: scale(1.05);
}

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
  padding-top: var(--space-16);
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0.5) 60%,
      transparent 100%);
  color: var(--color-white);
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1);
}

.collection-card-text {
  font-size: var(--text-sm);
  color: #ffffff;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 1);
}

.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold-light);
  transition: gap var(--transition-fast);
}

.collection-card:hover .collection-card-link {
  gap: var(--space-3);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-cream) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 248, 240, 0.15) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Gradient accent line on top */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-maroon), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

/* Shimmer effect */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.08) 50%,
      transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.testimonial-card:hover::after {
  left: 100%;
}

/* Quote decoration */
.testimonial-card .testimonial-content::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 100px;
  background: linear-gradient(135deg, var(--color-gold-light), rgba(212, 175, 55, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 60px;
  right: 20px;
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-content::before {
  opacity: 0.8;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-gray-800);
  font-size: var(--text-sm);
  margin: 0;
}

/* Testimonial Header with Avatar */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testimonial-date {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  font-weight: 400;
}

/* ===================================
   Contact Info Strip
   =================================== */
.contact-strip {
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-light) 100%);
  color: var(--color-white);
  padding: var(--space-6) 0;
}

.contact-strip-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-strip-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact-strip-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
}

.contact-strip-text {
  font-size: var(--text-sm);
}

.contact-strip-text strong {
  display: block;
  font-size: var(--text-base);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.status-badge.open {
  background: var(--color-success);
}

.status-badge.closed {
  background: var(--color-error);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===================================
   About Section
   =================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: var(--space-6);
}

.about-text p {
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.about-feature-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
}

/* ===================================
   Process Steps
   =================================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  display: none;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    display: block;
  }
}

.process-number {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.process-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: var(--space-2);
}

.process-text {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

/* ===================================
   Hours Table
   =================================== */
.hours-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .hours-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hours-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hours-card-header {
  background: linear-gradient(135deg, var(--color-maroon), var(--color-maroon-light));
  color: var(--color-white);
  padding: var(--space-5);
  text-align: center;
}

.hours-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
}

.hours-table {
  width: 100%;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-gray-100);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--color-gray-700);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-gray-500);
}

.hours-table tr.today {
  background: var(--color-peach);
}

.hours-table tr.today td {
  color: var(--color-maroon);
  font-weight: 600;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-section {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
}

.form-input,
.form-textarea {
  padding: var(--space-4);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  background: var(--color-off-white);
}

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

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

.form-note {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  font-style: italic;
  margin-top: var(--space-4);
}

/* ===================================
   Map Container
   =================================== */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: linear-gradient(180deg, var(--color-gray-800) 0%, var(--color-black) 100%);
  color: var(--color-gray-300);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-logo span {
  color: var(--color-gold);
}

.footer-description {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.footer-column h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.footer-contact-icon {
  color: var(--color-gold);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  text-align: center;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

.footer-copyright a {
  color: var(--color-gold);
}

/* ===================================
   Page Headers
   =================================== */
.page-header {
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-peach) 100%);
  padding: var(--space-24) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .page-title {
    font-size: var(--text-5xl);
  }
}

.page-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

.breadcrumb a {
  color: var(--color-gold);
}

.breadcrumb a:hover {
  color: var(--color-maroon);
}

/* ===================================
   Animations
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation delays for feature cards */
.feature-card.fade-in:nth-child(1) {
  transition-delay: 0s;
}

.feature-card.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.feature-card.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.feature-card.fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

.feature-card.fade-in:nth-child(5) {
  transition-delay: 0.4s;
}

.feature-card.fade-in:nth-child(6) {
  transition-delay: 0.5s;
}

/* Mobile-specific: reduce delays for faster perceived loading */
@media (max-width: 767px) {
  .feature-card.fade-in:nth-child(1) {
    transition-delay: 0s;
  }

  .feature-card.fade-in:nth-child(2) {
    transition-delay: 0.08s;
  }

  .feature-card.fade-in:nth-child(3) {
    transition-delay: 0.16s;
  }

  .feature-card.fade-in:nth-child(4) {
    transition-delay: 0.24s;
  }

  .feature-card.fade-in:nth-child(5) {
    transition-delay: 0.32s;
  }

  .feature-card.fade-in:nth-child(6) {
    transition-delay: 0.4s;
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================
   Utility Classes
   =================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: var(--space-4) !important;
}

.mb-8 {
  margin-bottom: var(--space-8) !important;
}

.mt-8 {
  margin-top: var(--space-8) !important;
}

.text-sm {
  font-size: var(--text-sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

/* Average Rating Display */
.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--color-peach), var(--color-blush));
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
}

.rating-number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--color-maroon);
  line-height: 1;
}

.rating-stars-large {
  font-size: var(--text-3xl);
  color: var(--color-gold);
}

.rating-label {
  font-size: var(--text-base);
  color: var(--color-gray-600);
}

/* Why Clients Love Us */
.why-love-us {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .why-love-us {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-item {
  text-align: center;
  padding: var(--space-5);
}

.why-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.why-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-light) 100%);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: var(--text-4xl);
  }
}

.cta-text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

/* ===================================
   Instagram Section
   =================================== */
.instagram-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-blush) 50%, var(--color-lavender) 100%);
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

@media (min-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

.instagram-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: var(--space-5);
  padding: var(--space-6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  overflow: hidden;
  text-decoration: none;
}

.instagram-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.instagram-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.instagram-card:hover .instagram-card-glow {
  opacity: 1;
}

.instagram-card-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

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

.instagram-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-white);
}

.instagram-card-content {
  position: relative;
  z-index: 1;
}

.instagram-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: var(--space-3);
}

.instagram-card-text {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.instagram-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-maroon);
  transition: gap var(--transition-fast);
}

.instagram-card:hover .instagram-card-link {
  gap: var(--space-3);
}

.instagram-card-link .arrow {
  transition: transform var(--transition-fast);
}

.instagram-card:hover .instagram-card-link .arrow {
  transform: translateX(4px);
}

/* Instagram Follow Button */
.instagram-follow {
  text-align: center;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(135deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background-size: 200% 200%;
  border-radius: var(--radius-full);
  box-shadow:
    0 4px 15px rgba(225, 48, 108, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(225, 48, 108, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.15);
  background-position: 100% 100%;
}

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

.btn-instagram .instagram-icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .btn-instagram {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
  }

  .btn-instagram .instagram-icon {
    width: 28px;
    height: 28px;
  }
}

/* Staggered animation for Instagram cards */
.instagram-card.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.instagram-card.fade-in:nth-child(2) {
  transition-delay: 0.25s;
}

/* ===================================
   Posts Grid (Collection Page)
   =================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  aspect-ratio: 4/5;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.post-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-card-media {
  transform: scale(1.05);
}

/* Lazy loading skeleton and animation */
.post-card-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      var(--color-gray-100) 0%,
      var(--color-gray-200) 50%,
      var(--color-gray-100) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite ease-in-out;
  z-index: 1;
}

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

  100% {
    background-position: -200% 0;
  }
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  position: relative;
  z-index: 2;
}

.lazy-image.loaded {
  opacity: 1;
}

.lazy-image.loaded+.post-card-skeleton,
.lazy-image.loaded~.post-card-skeleton {
  display: none;
}

/* Hide skeleton when image is loaded */
.post-card:has(.lazy-image.loaded) .post-card-skeleton {
  display: none;
}

.lazy-image.error {
  opacity: 1;
  background: var(--color-gray-200);
}

/* Video indicator badge */
.post-card-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  backdrop-filter: blur(4px);
}

.post-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.post-card-caption {
  color: var(--color-white);
  font-size: var(--text-sm);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal-content video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
}

.video-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-gray-800);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.video-modal-close:hover {
  background: var(--color-white);
  transform: scale(1.1);
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.image-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-gray-800);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.image-modal-close:hover {
  background: var(--color-white);
  transform: scale(1.1);
}

/* ===================================
   Category Filter Buttons
   =================================== */
.category-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.category-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.category-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.category-btn span {
  font-size: var(--text-base);
}

@media (max-width: 640px) {
  .category-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

  .category-btn span {
    font-size: var(--text-sm);
  }
}