*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --navy-dark: #111b30;
  --gold: #d4a017;
  --gold-light: #e8b930;
  --gold-pale: #fdf3d7;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --cream: #f5f0e8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 39, 68, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 39, 68, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.nav-logo-icon {
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  background: var(--gold-pale);
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  overflow: hidden;
  padding-top: 72px;
}

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

.geo-circle {
  position: absolute;
  border-radius: 50%;
}

.geo-circle--1 {
  width: 500px;
  height: 500px;
  background: var(--gold-pale);
  top: -100px;
  right: 10%;
  opacity: 0.6;
}

.geo-circle--2 {
  width: 200px;
  height: 200px;
  background: rgba(26, 39, 68, 0.05);
  bottom: 10%;
  left: 5%;
}

.geo-diamond {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.12;
  top: 20%;
  left: 45%;
}

.geo-diamond--1 {
  width: 60px;
  height: 60px;
  background: var(--navy);
  opacity: 0.06;
  bottom: 25%;
  right: 30%;
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--gold);
  opacity: 0.07;
  top: 15%;
  left: 8%;
  transform: rotate(-15deg);
}

.geo-dots {
  position: absolute;
  bottom: 15%;
  right: 5%;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 12px;
  opacity: 0.2;
}

.geo-dots span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--navy);
}

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

.text-outline {
  position: relative;
  display: inline;
}

.text-outline::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

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

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

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 39, 68, 0.15);
}

/* Hero Image */
.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  transform: rotate(15deg);
  z-index: -1;
  opacity: 0.3;
}

.hero-image-wrapper img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero-float-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.hero-float-card span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.hero-float--baking {
  bottom: 60px;
  left: -30px;
}

.hero-float--fresh {
  top: 60px;
  right: -20px;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-tag--light {
  color: var(--gold-light);
}

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

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

.section-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  margin-bottom: 60px;
}

.section-deco {
  position: absolute;
  pointer-events: none;
}

.deco-dots {
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 10px;
}

.deco-dots span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

.deco-circle {
  width: 150px;
  height: 150px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  opacity: 0.1;
}

/* ===== PRODUCTS ===== */
.products {
  position: relative;
  padding: 120px 0;
  background: var(--white);
}

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

.product-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.product-card--gold {
  background: var(--navy);
}

.product-card--gold .product-name,
.product-card--gold .product-desc {
  color: var(--white);
}

.product-card--gold .product-desc {
  color: rgba(255, 255, 255, 0.7);
}

.product-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--gold);
  opacity: 0.1;
  border-radius: 0 var(--radius-lg) 0 100%;
}

.product-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  margin: 28px 28px 0;
  box-shadow: var(--shadow-sm);
}

.product-icon--dark {
  background: rgba(255, 255, 255, 0.1);
}

.product-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 20px 28px 10px;
  color: var(--navy);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0 28px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-img {
  margin: 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
}

.about-shape--1 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: 0.15;
  top: -30px;
  left: -30px;
}

.about-shape--2 {
  width: 120px;
  height: 120px;
  background: var(--navy);
  opacity: 0.08;
  bottom: 40px;
  right: -20px;
}

.about-visual img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-exp-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.about-exp-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-exp-label {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

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

.value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== WHY US ===== */
.why-us {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
}

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

.why-circle-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(212, 160, 23, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.why-circle-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(212, 160, 23, 0.08);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.why-stripe {
  position: absolute;
  width: 300px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  bottom: 0;
  left: 10%;
  opacity: 0.3;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
}

.why-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--gold);
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-geo {
  position: absolute;
}

.cta-geo--circle {
  width: 200px;
  height: 200px;
  border: 3px solid rgba(26, 39, 68, 0.15);
  border-radius: 50%;
  top: -60px;
  left: 5%;
}

.cta-geo--diamond {
  width: 80px;
  height: 80px;
  background: rgba(26, 39, 68, 0.08);
  transform: rotate(45deg);
  bottom: 20px;
  right: 10%;
}

.cta-geo--dot {
  width: 12px;
  height: 12px;
  background: rgba(26, 39, 68, 0.15);
  border-radius: 50%;
  top: 30%;
  right: 25%;
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(26, 39, 68, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--white);
}

.visit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
}

.visit-detail p, .visit-detail a {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--gold);
}

.visit-map {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.visit-visual {
  position: relative;
}

.visit-shape-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--gold);
  opacity: 0.12;
  border-radius: var(--radius-lg);
  top: -20px;
  right: -20px;
  transform: rotate(10deg);
}

.visit-shape-2 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--navy);
  opacity: 0.06;
  border-radius: 50%;
  bottom: 40px;
  left: -10px;
}

.visit-visual img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}

.contact-deco {
  position: absolute;
  pointer-events: none;
}

.contact-deco-circle {
  width: 300px;
  height: 300px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.06;
  top: -80px;
  right: -80px;
}

.contact-deco-dots {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 10px;
  opacity: 0.2;
}

.contact-deco-dots span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-method:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.contact-method-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid rgba(26, 39, 68, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.form-success.active {
  display: flex;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col li a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-image-wrapper img {
    height: 560px;
  }

  .about-container,
  .visit-container,
  .contact-layout {
    gap: 48px;
  }

  .about-visual img,
  .visit-visual img {
    height: 500px;
  }

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

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(26, 39, 68, 0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

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

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

  .hero-right {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-image-wrapper img {
    height: 420px;
  }

  .hero-float-card {
    display: none;
  }

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

  .about-container,
  .visit-container,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-visual img,
  .visit-visual img {
    height: 400px;
  }

  .about-exp-badge {
    left: 10px;
    bottom: 20px;
  }

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

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

  .contact-form-wrapper {
    padding: 32px 24px;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

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