:root {
  --gold: #C8921A;
  --gold-light: #F0B429;
  --gold-pale: #FFF3D6;
  --dark: #1A0F00;
  --dark-brown: #2D1B00;
  --mid-brown: #5C3B1E;
  --cream: #FAF5EC;
  --white: #FFFFFF;
  --text-dark: #1A0F00;
  --text-mid: #5C3B1E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .6s, visibility .6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: pulse-logo 1.5s ease-in-out infinite;
  border-radius: 12px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(200, 146, 26, .2);
  border-radius: 2px;
  margin-top: 30px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: load-fill 2s ease forwards;
}

@keyframes pulse-logo {

  0%,
  100% {
    opacity: .6;
    transform: scale(.95)
  }

  50% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes load-fill {
  to {
    width: 100%
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: all .4s;
  background: transparent;
}

nav.scrolled {
  background: rgba(26, 15, 0, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 26, .3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
  height: 75px;
}

.nav-logo-img {
  height: 90px;
  transition: all .3s;
  border-radius: 8px;
  padding: 4px;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: color .3s;
  letter-spacing: .05em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold-light);
  transition: .3s;
}

/* HERO */
.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 15, 0, .88), rgba(45, 27, 0, .75), rgba(26, 15, 0, .88));
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  animation: hero-rise 1.2s ease-out;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(200, 146, 26, .5);
  color: var(--gold-light);
  font-size: .75rem;
  letter-spacing: .25em;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-logo {
  width: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 30px rgba(200, 146, 26, .4));
  animation: float-logo 4s ease-in-out infinite;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
}

@keyframes float-logo {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.hero-name-ar {
  font-family: 'Amiri', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(120deg, #fff 30%, #F0B429 50%, #fff 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
}

.hero-name-ar span {
  -webkit-text-fill-color: var(--gold-light);
  display: block;
  font-size: .6em;
}

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

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

.hero-name-en {
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: .3em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: 'Amiri', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, .65);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 14px 36px;
  border: none;
  border-radius: 3px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  letter-spacing: .05em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 146, 26, .4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 3px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(200, 146, 26, .1);
}

/* ORNAMENT */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* MARQUEE */
.marquee-section {
  background: var(--dark);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 146, 26, .2);
  border-bottom: 1px solid rgba(200, 146, 26, .2);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SECTIONS COMMON */
section {
  padding: 100px 40px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .3em;
  font-weight: 700;
  margin-bottom: 12px;
  border-right: 3px solid var(--gold);
  padding-right: 12px;
}

.section-title {
  font-family: 'Amiri', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 600px;
}

/* ABOUT */
.about-section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-radius: 4px;
}

.about-box {
  background: linear-gradient(135deg, var(--dark-brown), var(--dark));
  border-radius: 4px;
  padding: 60px 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: '﷽';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 14rem;
  color: rgba(200, 146, 26, .04);
  font-family: 'Amiri', serif;
  line-height: 1;
  pointer-events: none;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(200, 146, 26, .1);
  border: 1px solid rgba(200, 146, 26, .2);
  border-radius: 3px;
  transition: transform .3s, box-shadow .3s;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200, 146, 26, .15);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  letter-spacing: .05em;
}

/* PRODUCTS */
.products-section {
  background: var(--dark);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 146, 26, .06), transparent);
}

.products-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.filter-btn {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 146, 26, .25);
  color: rgba(255, 255, 255, .7);
  padding: 8px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  transition: all .3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  group: true;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s, filter .3s;
}

.product-card:hover img {
  transform: scale(1.1);
  filter: brightness(.7);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 0, .9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s;
}

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

.product-name {
  font-family: 'Amiri', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform .4s;
}

.product-card:hover .product-name {
  transform: translateY(0);
}

.product-origin {
  font-size: .8rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  transform: translateY(10px);
  transition: transform .4s .1s;
}

.product-card:hover .product-origin {
  transform: translateY(0);
}

.product-card.large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* SERVICES */
.services-section {
  background: var(--cream);
  padding: 100px 40px;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(200, 146, 26, .15);
  border-radius: 4px;
  padding: 40px 32px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s;
}

.service-card:hover {
  transform: perspective(1000px) rotateY(-3deg) translateY(-8px);
  box-shadow: 0 25px 60px rgba(200, 146, 26, .15);
  border-color: rgba(200, 146, 26, .4);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: transform .3s;
}

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

.service-name {
  font-family: 'Amiri', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.8;
}

/* WHY US */
.why-section {
  background: var(--white);
  padding: 100px 40px;
}

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

.why-list {
  list-style: none;
  margin-top: 32px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 146, 26, .1);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-text p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  background: linear-gradient(135deg, var(--dark-brown), #3D2800);
  border-radius: 6px;
  padding: 28px 32px;
  color: white;
  border: 1px solid rgba(200, 146, 26, .2);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .3s;
}

.why-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 10px 30px rgba(200, 146, 26, .2);
  border-color: rgba(200, 146, 26, .5);
}

.why-card-num {
  font-family: 'Amiri', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  min-width: 50px;
  text-align: center;
}

.why-card-text {
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-brown));
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 146, 26, .08), transparent);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

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

.testimonials-slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 146, 26, .2);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Amiri', serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .5;
}

.testimonial-text {
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .85);
  line-height: 2;
  margin-bottom: 24px;
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-role {
  font-size: .85rem;
  color: var(--gold);
  margin-top: 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 146, 26, .3);
  cursor: pointer;
  transition: all .3s;
  border: none;
}

.slider-dot.active {
  background: var(--gold-light);
  box-shadow: 0 0 15px rgba(240, 180, 41, .5);
  transform: scale(1.2);
}

/* CONTACT V2 */
.contact-section-v2 {
  position: relative;
  padding: 100px 40px;
  background: var(--dark);
  overflow: hidden;
}

.contact-v2-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  opacity: 0.15;
  filter: grayscale(100%);
  pointer-events: none;
}

.contact-v2-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-v2-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-v2-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-v2-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 146, 26, 0.2);
  border-radius: 12px;
  padding: 24px 32px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.contact-v2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.contact-v2-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 146, 26, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-v2-card:hover::before {
  opacity: 1;
}

.contact-v2-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 146, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-left: 24px;
  flex-shrink: 0;
  transition: transform 0.4s;
}

.contact-v2-card:hover .contact-v2-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}

.contact-v2-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact-v2-value {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  direction: ltr;
  text-align: right;
}

.contact-v2-arrow {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  transition: all 0.4s;
}

.contact-v2-card:hover .contact-v2-arrow {
  color: var(--gold-light);
  transform: translateX(-10px);
}

.contact-v2-whatsapp {
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-v2-whatsapp:hover {
  border-color: #25D366;
}

.contact-v2-whatsapp::before {
  background: #25D366;
}

.contact-v2-whatsapp .contact-v2-icon {
  color: white;
}

/* FOOTER */
footer {
  background: #0D0800;
  padding: 40px;
  border-top: 1px solid rgba(200, 146, 26, .15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  height: 150px;
  border-radius: 6px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 26, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  transition: all .3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 146, 26, .1);
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all .3s;
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .6);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .7)
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px) {

  .about,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card.large {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px;
    gap: 24px;
    transition: right .4s;
    box-shadow: -5px 0 30px rgba(0, 0, 0, .5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 60px 20px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .products-section,
  .services-section,
  .testimonials-section,
  .why-section,
  .contact-section {
    padding: 60px 20px;
  }
}