/* ============================================================
   GG STICK – Main Stylesheet  |  RTL Arabic Layout
   Colors: Red #E8172B, White #FFF, Light Red #FFF0F1, Dark #1a0a0b
   ============================================================ */

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

:root {
  --red:        #E8172B;
  --red-dark:   #c4101f;
  --red-light:  #FFF0F1;
  --red-mid:    #ffd6da;
  --green:      #3a8a00;
  --white:      #ffffff;
  --dark:       #1a0308;
  --dark2:      #2d0610;
  --gray:       #6b7280;
  --light-gray: #f9fafb;
  --font:       'Cairo', sans-serif;
  --shadow:     0 4px 24px rgba(232,23,43,0.12);
  --shadow-lg:  0 12px 48px rgba(232,23,43,0.18);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

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

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-title .highlight { color: var(--red); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: 2.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(232,23,43,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,23,43,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 48px; font-size: 1.1rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  font-size: 1.4rem;
}
.logo-gg    { color: var(--red); }
.logo-stick { color: var(--dark); }
.logo-strawberry { font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--red-light);
  color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 100px 48px 80px;
  background: linear-gradient(135deg, #fff 0%, #fff6f7 60%, #ffe0e3 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  background: var(--red);
}
.shape-1 { width: 500px; height: 500px; top: -150px; left: -200px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; right: 30%; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: -80px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  animation: fadeInRight .9s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pulse 2.5s infinite;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}
.title-gg    { color: var(--red); display: block; }
.title-stick { color: var(--dark); display: block; letter-spacing: 4px; }

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--red-mid);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--red-mid);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  animation: fadeInLeft .9s .2s both;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(232,23,43,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(232,23,43,.2);
  animation: float 4s ease-in-out infinite;
}

/* ============================================================
   SCROLL BANNER
   ============================================================ */
.scroll-banner {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.scroll-track {
  display: inline-flex;
  gap: 0;
  animation: scrollLeft 20s linear infinite;
}
.scroll-track span {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.3);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  color: var(--red);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.about-img-badge i { color: var(--red); }

.about-text-col h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-text-col p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  border: 1px solid var(--red-mid);
}
.tag i { color: var(--green); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--red-light) 0%, var(--white) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid transparent;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  border-color: var(--red-mid);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.feature-icon i {
  font-size: 1.5rem;
  color: var(--red);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--red);
}
.feature-card:hover .feature-icon i { color: var(--white); }
.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--light-gray);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform .5s;
}
.gallery-large img { min-height: 460px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(232,23,43,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay p {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  transform: translateY(10px);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay p { transform: translateY(0); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-content p {
  color: var(--white);
  margin-top: 16px;
  font-weight: 600;
  font-size: 1rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.lightbox-close { top: 20px; left: 20px; }
.lightbox-prev  { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 20px; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--red); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--red-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: var(--transition);
  border: 2px solid transparent;
}
.testimonial-featured {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--dark);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
}
.testimonial-author span {
  font-size: .8rem;
  color: var(--gray);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -120px; left: -60px; }

.cta-content { position: relative; z-index: 1; }
.cta-emoji { font-size: 4rem; margin-bottom: 20px; display: block; }
.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-manager {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  margin-bottom: 32px;
}
.manager-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.4);
}
.manager-label {
  font-size: .8rem;
  opacity: .8;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.manager-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--light-gray);
  border: 2px solid transparent;
  transition: var(--transition);
  color: var(--dark);
}
.contact-channel:hover { border-color: var(--red-mid); box-shadow: var(--shadow); transform: translateX(-4px); }
.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.email-channel    .channel-icon { background: #e8f4fd; color: #1a73e8; }
.whatsapp-channel .channel-icon { background: #e8f8ef; color: #25d366; }
.facebook-channel .channel-icon { background: #e8edf8; color: #1877f2; }

.contact-channel:hover .channel-icon {
  transform: scale(1.1);
}
.channel-info { flex: 1; }
.channel-label { display: block; font-size: .78rem; color: var(--gray); font-weight: 600; }
.channel-value { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); }
.channel-arrow { font-size: .8rem; color: var(--gray); }

/* Form */
.contact-form {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.input-wrap {
  position: relative;
}
.input-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: .9rem;
}
.textarea-wrap i { top: 18px; transform: none; }
.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 14px 46px 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,23,43,.12);
}
.input-wrap textarea { resize: vertical; }

.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  display: none;
}
.form-msg.success {
  display: block;
  background: #e8f8ef;
  color: #166534;
  border: 1px solid #86efac;
}
.form-msg.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
  color: var(--white);
}
.social-btn.email    { background: #1a73e8; }
.social-btn.whatsapp { background: #25d366; }
.social-btn.facebook { background: #1877f2; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); opacity: .9; }

.footer-links h4,
.footer-contact h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 36px; height: 2px;
  background: var(--red);
}
.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--red);
  gap: 12px;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.footer-contact ul li i { color: var(--red); width: 16px; }
.footer-contact ul li a { color: rgba(255,255,255,.6); }
.footer-contact ul li a:hover { color: var(--red); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}
.footer-bottom strong { color: var(--red); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(232,23,43,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,23,43,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(232,23,43,0); }
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #hero { padding: 100px 32px 80px; gap: 32px; }
  .about-grid { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 70px;
    right: 0; left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  #hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 64px;
    min-height: auto;
  }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img { max-width: 100%; }
  .hero-image-wrap { order: -1; }
  .hero-glow { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame img { height: 300px; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: span 2; }

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

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

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }

  .back-to-top { left: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 60px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
  .gallery-large img { min-height: 260px; }
  .contact-form { padding: 24px; }
  .section-header { margin-bottom: 40px; }
}
