/* ============================================
   Wilkesboro ABC Store — Custom Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #3a0b18;
  background-color: #FFF9F5;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #3a0b18;
}

.title-accent {
  color: #b82848;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 40, 72, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(255, 249, 245, 0.95);
  box-shadow: 0 4px 30px rgba(184, 40, 72, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3a0b18;
}

.logo-icon {
  display: flex;
  align-items: center;
  color: #b82848;
}

.logo-accent {
  color: #b82848;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #7c1a35;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #b82848;
  background: rgba(184, 40, 72, 0.06);
}

.btn-nav {
  background: #b82848;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}

.btn-nav:hover {
  background: #971d3b;
  color: #fff !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #7c1a35;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 249, 245, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #3a0b18;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
  color: #b82848;
  background: rgba(184, 40, 72, 0.06);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(160deg, #FFF9F5 0%, #ffeff2 40%, #fdf2f4 70%, #FFF9F5 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 40, 72, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 40, 72, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 40, 72, 0.08);
  color: #b82848;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184, 40, 72, 0.12);
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #3a0b18;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #7c1a35;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 520px;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', system-ui, sans-serif;
}

.btn-primary {
  background: #b82848;
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 40, 72, 0.3);
}

.btn-primary:hover {
  background: #971d3b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 40, 72, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: #7c1a35;
  border: 1.5px solid rgba(184, 40, 72, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fff;
  border-color: #b82848;
  color: #b82848;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #b82848;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #ffeff2;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b82848;
}

.stat-label {
  font-size: 0.8rem;
  color: #7c1a35;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 40, 72, 0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(184, 40, 72, 0.15);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-img-main {
  width: 340px;
  height: 440px;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.hero-img-float {
  width: 220px;
  z-index: 3;
}

.hero-img-1 {
  bottom: 140px;
  left: 0;
}

.hero-img-2 {
  bottom: 20px;
  right: 0;
}

.hero-card {
  position: absolute;
  bottom: 200px;
  left: -20px;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 40px rgba(184, 40, 72, 0.12);
  animation: float 4s ease-in-out infinite;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffeff2, #fce7eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b82848;
  flex-shrink: 0;
}

.hero-card-text {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #3a0b18;
}

.hero-card-sub {
  display: block;
  font-size: 0.75rem;
  color: #7c1a35;
  opacity: 0.7;
}

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

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

/* --- Section Common --- */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b82848;
  background: rgba(184, 40, 72, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #7c1a35;
  opacity: 0.8;
  line-height: 1.7;
}

/* --- Products --- */
.products-section {
  background: #FFF9F5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(184, 40, 72, 0.06);
  border: 1px solid rgba(184, 40, 72, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(184, 40, 72, 0.12);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(184, 40, 72, 0.4), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.product-card-overlay svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 10px;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #3a0b18;
}

.product-card-desc {
  font-size: 0.9rem;
  color: #7c1a35;
  opacity: 0.75;
  line-height: 1.65;
}

/* --- About --- */
.about-section {
  background: linear-gradient(180deg, #FFF9F5 0%, #ffeff2 50%, #FFF9F5 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(184, 40, 72, 0.12);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(184, 40, 72, 0.15);
  border: 4px solid #fff;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #b82848;
  color: #fff;
  border-radius: 20px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(184, 40, 72, 0.3);
}

.exp-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1.025rem;
  color: #7c1a35;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ffeff2, #fce7eb);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b82848;
  flex-shrink: 0;
}

.feature-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3a0b18;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: #7c1a35;
  opacity: 0.75;
  line-height: 1.6;
}

/* --- Community --- */
.community-section {
  background: #FFF9F5;
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-content {
  max-width: 520px;
}

.community-text {
  font-size: 1.025rem;
  color: #7c1a35;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.community-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(184, 40, 72, 0.1);
  line-height: 1;
}

.value-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3a0b18;
}

.value-desc {
  font-size: 0.9rem;
  color: #7c1a35;
  opacity: 0.75;
  line-height: 1.6;
}

.community-visual {
  position: relative;
  height: 560px;
}

.community-img-grid {
  position: relative;
  height: 100%;
}

.c-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(184, 40, 72, 0.12);
}

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

.c-img-1 {
  width: 260px;
  height: 340px;
  top: 0;
  left: 0;
  z-index: 2;
}

.c-img-2 {
  width: 240px;
  height: 260px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* --- Visit --- */
.visit-section {
  background: linear-gradient(180deg, #FFF9F5 0%, #ffeff2 100%);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.visit-info {
  padding: 2rem 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffeff2, #fce7eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b82848;
  flex-shrink: 0;
}

.detail-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b82848;
  margin-bottom: 0.2rem;
}

.detail-value {
  display: block;
  font-size: 1rem;
  color: #3a0b18;
  line-height: 1.6;
}

.detail-link {
  color: #7c1a35;
  transition: color 0.3s ease;
}

.detail-link:hover {
  color: #b82848;
}

.btn-map {
  margin-top: 0.5rem;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 20px 50px rgba(184, 40, 72, 0.1);
}

/* --- Contact --- */
.contact-section {
  background: #FFF9F5;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: #7c1a35;
  opacity: 0.8;
  line-height: 1.7;
  margin-top: 1rem;
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(184, 40, 72, 0.07);
  border: 1px solid rgba(184, 40, 72, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7c1a35;
}

.form-input {
  padding: 0.875rem 1.125rem;
  border: 1.5px solid rgba(184, 40, 72, 0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #3a0b18;
  background: #FFF9F5;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(124, 26, 53, 0.35);
}

.form-input:focus {
  border-color: #b82848;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 40, 72, 0.08);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffeff2, #fce7eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #b82848;
}

.success-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.success-text {
  color: #7c1a35;
  opacity: 0.75;
  line-height: 1.7;
}

/* --- CTA --- */
.cta-section {
  background: linear-gradient(135deg, #b82848 0%, #971d3b 50%, #7c1a35 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: #3a0b18;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.logo-footer .logo-text {
  color: #fff;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 300px;
  opacity: 0.7;
}

.footer-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffc1d0;
  padding-left: 0.25rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffc1d0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .about-grid,
  .community-inner,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 400px;
    order: -1;
  }

  .about-img-main {
    height: 350px;
  }

  .community-visual {
    height: 400px;
    order: -1;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .section {
    padding: 4rem 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

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

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

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

  .community-img-1 {
    width: 200px;
    height: 260px;
  }

  .community-img-2 {
    width: 180px;
    height: 200px;
  }
}

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

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

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
