/* ========== CSS VARIABLES ========== */
:root {
  --orange-primary: #ff6600;
  --orange-dark: #e55a00;
  --orange-light: #ff8533;
  --orange-glow: rgba(255, 102, 0, 0.3);
  --white: #ffffff;
  --cream: #fff9f2;
  --light-bg: #f8f5f0;
  --text-dark: #222222;
  --text-mid: #555555;
  --text-light: #888888;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --container: 1200px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white)
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes travelLine {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

@keyframes travelFull {
  0% {
    left: -30%
  }

  100% {
    left: 100%
  }
}

@keyframes growLine {
  from {
    width: 0
  }

  to {
    width: 80px
  }
}

@keyframes growLineCenter {
  from {
    width: 0
  }

  to {
    width: 60px
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition)
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--orange-primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center
}

.top-bar-right a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--transition)
}

.top-bar-right a:hover {
  opacity: 0.8
}

.top-bar svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0
}

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), padding var(--transition)
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-primary)
}

.logo img {
  height: 40px;
  width: auto
}

.logo svg {
  width: 36px;
  height: 36px
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition)
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width var(--transition)
}

.nav-links a:hover {
  color: var(--orange-primary)
}

.nav-links a:hover::after {
  width: 100%
}

.btn-quote {
  background: var(--orange-primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--orange-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.btn-quote:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--orange-glow)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.btn-outline:hover {
  background: var(--white);
  color: var(--orange-primary);
  transform: translateY(-2px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition)
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px)
}

/* ========== HERO ========== */
.hero {
  background: url('assets/images/image4.png') center/cover no-repeat;
  background-size: cover;
  color: var(--white);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 830px
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.08) 70%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  gap: 40px
}

.hero-content {
  flex: 1;
  max-width: 890px
}

.hero-content h1 {
  font-size: 100px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
  text-transform: uppercase
}

.hero-content h1 .highlight {
  color: var(--white);
  display: block;
  font-size: 10rem
}

.hero-content .since {
  font-size: 1rem;
  letter-spacing: 6px;
  margin: 10px 0 28px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 12px
}

.hero-content .since::before,
.hero-content .since::after {
  content: '';
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6)
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-image {
  display: none
}

/* Geometric overlays
.geo-shape{position:absolute;border:2px solid rgba(255,255,255,0.1);border-radius:8px;pointer-events:none}
.geo-1{width:120px;height:120px;top:10%;right:30%;transform:rotate(20deg)}
.geo-2{width:80px;height:80px;bottom:15%;left:5%;transform:rotate(45deg)}
.geo-3{width:60px;height:60px;top:20%;left:15%;transform:rotate(-15deg);border-radius:50%} */

/* ========== SHIPPING ========== */
.shipping-section {
  margin-top: -45px;
  position: relative;
  z-index: 10;
  padding-bottom: 40px
}

.shipping-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative
}

.shipping-flags {
  flex: 1;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap
}

.shipping-label {
  text-align: center;
  min-width: 80px
}

.shipping-label .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1
}

.shipping-label small {
  font-size: 0.7rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px
}

.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 55px;
  transition: transform var(--transition)
}

.flag-item:hover {
  transform: translateY(-3px)
}

.flag-item .flag {
  width: 36px;
  height: 24px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15)
}

.flag-item span {
  font-size: 0.7rem;
  color: var(--text-mid);
  font-weight: 500
}

.shipping-cta {
  background: var(--orange-primary);
  color: var(--white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 160px;
  cursor: pointer;
  transition: background var(--transition)
}

.shipping-cta:hover {
  background: var(--orange-dark)
}

.shipping-cta svg {
  width: 28px;
  height: 28px;
  margin-bottom: 6px
}

.shipping-cta span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3
}

/* ========== FEATURES ========== */
.features-section {
  padding: 60px 0;
  background: var(--cream)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #f0ece6
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.feature-card::before,
.product-card::before,
.testimonial-card::before,
.shipping-container::before,
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
  animation: travelLine 4s infinite linear;
  z-index: 10
}

.feature-card:nth-child(2)::before {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3)::before {
  animation-delay: 1s;
}

.feature-card:nth-child(4)::before {
  animation-delay: 1.5s;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--orange-primary)
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark)
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5
}

/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  margin-bottom: 40px
}

.section-title h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 2px;
  overflow: hidden
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 2px;
  overflow: hidden
}

.section-title h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 2px;
  z-index: 1
}

/* Traveling Line Effect */
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.section-title h2::after {
  background: linear-gradient(90deg, transparent, var(--orange-primary), var(--orange-light), transparent);
  background-size: 200% 100%;
  animation: shimmerGradient 2s infinite linear;
}

@keyframes shimmerGradient {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animated-line {
  width: 100px;
  height: 4px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.animated-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange-primary), var(--orange-light), transparent);
  animation: travelLine 3s infinite ease-in-out;
}

.stat-item:nth-child(2) .animated-line::after {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) .animated-line::after {
  animation-delay: 0.4s;
}

.stat-item:nth-child(4) .animated-line::after {
  animation-delay: 0.6s;
}

.full-width-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 102, 0, 0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 0
}

.full-width-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange-primary), var(--orange-light), transparent);
  animation: travelFull 5s infinite linear
}

/* ========== PRODUCTS ========== */
.products-section {
  padding: 60px 0;
  background: var(--white)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 800px;
  margin: 0 auto
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #f0ece6;
  position: relative
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.product-image {
  height: 220px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden
}

.product-image img {
  max-height: 290px;
  width: auto;
  transition: transform var(--transition)
}

.product-card:hover .product-image img {
  transform: scale(1.05)
}

.product-info {
  padding: 24px;
  text-align: center
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 16px
}

.btn-view {
  background: var(--orange-primary);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block
}

.btn-view:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--orange-glow)
}

/* ========== HOW IT WORKS ========== */
.how-section {
  padding: 60px 0;
  background: var(--cream)
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.step-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  position: relative
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm)
}

.step-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--orange-primary)
}

.step-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px
}

.step-item p {
  font-size: 0.78rem;
  color: var(--text-mid)
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: var(--orange-light);
  font-size: 1.5rem;
  opacity: 0.5
}

.step-arrow svg {
  width: 28px;
  height: 28px;
  fill: var(--orange-light)
}

/* ========== STATS ========== */
.stats-section {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  padding: 50px 0;
  color: var(--white)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.stat-item .number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1
}

.stat-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-top: 4px
}

/* ========== TESTIMONIALS ========== */
/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 60px 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0ece6;
  border-top: 4px solid var(--orange-primary);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--orange-primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #ffb400;
  font-size: 0.85rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author .flag {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.author-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info small {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 60px 0;
  background: var(--cream)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start
}

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark)
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-item .icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white)
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-mid)
}

.contact-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid #f0ece6
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px
}

.form-group {
  margin-bottom: 14px
}

.form-group input,
.form-group textarea,
.form-group select,
.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0dcd6;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 0.9rem
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-row input:focus,
.form-row select:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px var(--orange-glow)
}

.form-group textarea {
  resize: vertical;
  min-height: 100px
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.btn-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 15px var(--orange-glow)
}

/* Intl-Tel-Input Overrides */
.iti {
  width: 100%;
  display: block;
}

.iti__country-list {
  color: var(--text-dark);
  z-index: 1001;
}

.iti__selected-flag {
  background-color: var(--cream);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.iti--allow-dropdown input {
  padding-left: 95px !important;
}

/* Submission Log Overlay */
#submissionLog {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.log-content {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 10px;
}

.log-header h4 {
  color: var(--orange-primary);
  font-size: 1.4rem;
}

.log-close {
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-light);
}

.log-item {
  border-bottom: 1px solid var(--cream);
  padding: 15px 0;
  font-size: 0.85rem;
}

.log-item:last-child {
  border: none;
}

.log-item strong {
  color: var(--text-dark);
  display: inline-block;
  width: 100px;
}

.log-item span {
  color: var(--text-mid);
}

.log-item .time {
  color: var(--orange-primary);
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: url('assets/images/hero-bg.png') center/cover no-repeat;
  color: var(--white);
  padding: 50px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white)
}

.footer-col p,
.footer-col a {
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.8
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline
}

.footer-col a {
  display: block
}

.footer-about .logo {
  margin-bottom: 12px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.footer-about p {
  font-size: 0.8rem;
  opacity: 0.90;
  line-height: 1.6
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition)
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px)
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--white)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  opacity: 0.90;
  color: var(--white)
}

.footer-bottom a {
  color: var(--white)
}

.footer-bottom a:hover {
  color: var(--white)
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition)
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5)
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white)
}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .hero {
    background: url('assets/images/mobile-image.png') center/cover no-repeat
  }

  .hero .container {
    padding: 0 18px
  }

  .hero-content h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.05
  }

  .hero-content h1 .highlight {
    font-size: 4.4rem;
    font-weight: 900
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 4px
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1000
  }

  .nav-links.active {
    display: flex
  }

  .nav-links a {
    font-size: 1.2rem
  }

  .hamburger {
    display: flex
  }

  .hero {
    background: url('assets/images/mobile-image.png') center/cover no-repeat
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    padding: 0 16px
  }

  .hero-content {
    max-width: 100%
  }

  .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.05
  }

  .hero-content h1 .highlight {
    font-size: 3.6rem;
    font-weight: 900
  }

  .hero-content .since {
    font-size: 0.95rem;
    letter-spacing: 4px;
    justify-content: center
  }

  .hero-buttons {
    justify-content: center
  }

  .hero-image {
    max-width: 300px
  }

  .shipping-container {
    flex-direction: column
  }

  .shipping-flags {
    justify-content: center
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px
  }

  .steps-grid {
    flex-direction: column;
    align-items: center
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}

@media(max-width:480px) {
  .hero {
    background: url('assets/images/mobile-image.png') center/cover no-repeat
  }

  .hero .container {
    padding: 0 14px
  }

  .hero-content h1 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.05
  }

  .hero-content h1 .highlight {
    font-size: 3rem;
    font-weight: 900
  }

  .hero-content .since {
    font-size: 0.85rem;
    letter-spacing: 3px;
    justify-content: center
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .stat-item .number {
    font-size: 2rem
  }
}