/* ================================================
   TADALA STATIONERY & ELECTRONICS — MAIN STYLES
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --blue:       #0d47a1;
  --blue-dark:  #08306e;
  --blue-mid:   #1565c0;
  --blue-light: #e8f0fe;
  --orange:     #ff8c00;
  --orange-lt:  #ffa733;
  --white:      #ffffff;
  --off-white:  #f5f7fb;
  --gray:       #6b7280;
  --gray-lt:    #e5e7eb;
  --dark:       #0d1117;
  --text:       #1e293b;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 12px 40px rgba(13,71,161,0.13);
  --shadow-lg:  0 24px 60px rgba(13,71,161,0.18);
  --trans:      all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--text); overflow-x: hidden; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }

.sec-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  background: rgba(255,140,0,0.1); border: 1px solid rgba(255,140,0,0.25);
  padding: 4px 14px; border-radius: 30px; margin-bottom: 14px;
}

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem; transition: var(--trans); cursor: pointer; border: none; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,140,0,0.35); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: var(--trans); }
.navbar.scrolled { background: var(--blue-dark); box-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--white); }
.nav-brand-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); }
.nav-brand-text { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--white); }
.nav-brand-text small { display: block; font-size: 0.58rem; font-weight: 400; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.9rem; transition: var(--trans); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--orange); transform: scaleX(0); transition: var(--trans); }
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav { background: var(--orange); color: var(--white) !important; padding: 8px 20px; border-radius: var(--radius); font-weight: 600; }
.btn-nav:hover { background: var(--orange-lt) !important; }
.btn-nav::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MARQUEE BRAND STRIP */
.brand-marquee { background: var(--blue-dark); overflow: hidden; border-bottom: 4px solid var(--orange); }
.brand-marquee-track { display: flex; width: max-content; animation: marqueeScroll 12s linear infinite; }
.brand-marquee-track:hover { animation-play-state: paused; }
.brand-marquee-item { display: inline-flex; align-items: center; gap: 20px; padding: 20px 64px; font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 4px; white-space: nowrap; }
.brand-marquee-item .dot { width: 16px; height: 16px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.brand-marquee-item .txt-orange { color: var(--orange); }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,48,110,0.96) 0%, rgba(13,71,161,0.88) 55%, rgba(21,101,192,0.7) 100%); }
.hero-shape { position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(255,140,0,0.08) 100%); z-index: 1; }
.hero-shape::after { content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 50%; background: rgba(255,140,0,0.05); clip-path: polygon(100% 0, 100% 100%, 0% 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 1160px; margin: 0 auto; padding: 120px 24px 80px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 30px; font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.hero-eyebrow i { color: var(--orange); }
.hero-left h1 { color: var(--white); margin-bottom: 8px; }
.hero-left h1 span { color: var(--orange); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin: 16px 0 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.hero-badge i { color: var(--orange); font-size: 1rem; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: 32px 28px; }
.hero-card h3 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 22px; }
.hc-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hc-item:last-of-type { border-bottom: none; margin-bottom: 20px; }
.hc-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.95rem; flex-shrink: 0; }
.hc-item h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.hc-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 2px; }
.hero-scroll i { display: block; margin-top: 6px; animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* TICKER */
.ticker-strip { background: var(--orange); padding: 12px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 0; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 40px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.ticker-item i { font-size: 0.8rem; opacity: 0.7; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* STATS */
.stats-bar { background: var(--blue-dark); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 10px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: 0 4px 24px rgba(13,71,161,0.07); border-top: 4px solid transparent; transition: var(--trans); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,71,161,0) 0%, rgba(13,71,161,0.03) 100%); opacity: 0; transition: var(--trans); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--orange); }
.service-card:hover::before { opacity: 1; }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--blue); margin-bottom: 20px; transition: var(--trans); }
.service-card:hover .svc-icon { background: var(--orange); color: var(--white); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.svc-list { margin-top: 14px; }
.svc-list li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray); margin-bottom: 7px; }
.svc-list li i { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }

/* PRICE LIST */
.price-section { background: var(--blue-dark); }
.price-section .sec-tag { color: var(--orange); }
.price-section .sec-header h2 { color: var(--white); }
.price-section .sec-header p { color: rgba(255,255,255,0.65); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-category { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--trans); }
.price-category:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.price-cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.price-cat-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); flex-shrink: 0; }
.price-cat-head h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.price-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 8px; }
.price-item:last-child { border-bottom: none; }
.price-item-name { font-size: 0.88rem; color: rgba(255,255,255,0.75); flex: 1; }
.price-item-cost { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--orange-lt); white-space: nowrap; }
.price-note { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; display: block; }

/* PRODUCTS */
.products-section { background: var(--blue-light); }
.products-filter { display: flex; gap: 10px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn { padding: 9px 24px; border-radius: 30px; border: 2px solid var(--gray-lt); background: var(--white); color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.87rem; cursor: pointer; transition: var(--trans); }
.filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(13,71,161,0.07); transition: var(--trans); cursor: pointer; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img { position: relative; }
.product-img img { height: 200px; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.product-body { padding: 18px; }
.product-body h4 { font-size: 0.95rem; margin-bottom: 4px; }
.product-body .price { color: var(--blue); font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; }
.product-body .price span { color: var(--gray); font-size: 0.82rem; font-weight: 400; text-decoration: line-through; margin-left: 6px; }
.add-btn { width: 100%; padding: 9px; border-radius: var(--radius); background: var(--blue-light); color: var(--blue); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer; transition: var(--trans); display: flex; align-items: center; justify-content: center; gap: 7px; }
.add-btn:hover { background: var(--blue); color: var(--white); }

/* WHY US */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual { position: relative; }
.why-visual img { height: 480px; border-radius: var(--radius-lg); }
.why-badge-overlay { position: absolute; bottom: 24px; left: 24px; background: var(--blue-dark); color: var(--white); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.why-badge-overlay .big-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.why-badge-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.why-list { margin-top: 30px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-lt); }
.why-item:last-child { border-bottom: none; }
.why-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue-light); line-height: 1; flex-shrink: 0; width: 44px; }
.why-item h4 { font-size: 1rem; margin-bottom: 5px; }
.why-item p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* TESTIMONIALS */
.testi-section { background: var(--off-white); overflow: hidden; }
.testi-slider { overflow: hidden; }
.testi-track { display: flex; gap: 22px; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.testi-card { min-width: calc(33.333% - 15px); background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: 0 4px 20px rgba(13,71,161,0.06); flex-shrink: 0; }
.testi-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 14px; }
.testi-text { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-author-name { font-weight: 700; font-size: 0.9rem; }
.testi-author-role { font-size: 0.78rem; color: var(--gray); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.testi-nav { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gray-lt); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text); transition: var(--trans); }
.testi-nav:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-lt); cursor: pointer; transition: var(--trans); }
.testi-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ORDER */
.order-section { background: var(--white); }
.order-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.order-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--gray-lt); }
.form-title { margin-bottom: 28px; }
.form-title .sec-tag { display: block; margin-bottom: 8px; }
.form-title h2 { font-size: 1.7rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-lt); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--off-white); transition: var(--trans); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(13,71,161,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; justify-content: center; margin-top: 6px; }
.order-success { display: none; text-align: center; padding: 20px; background: rgba(34,197,94,0.07); border: 1px solid #22c55e; border-radius: var(--radius); color: #16a34a; margin-top: 14px; }
.order-info { padding: 8px 0; }
.order-info h3 { margin-bottom: 20px; }
.order-channel { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--gray-lt); }
.order-channel:last-of-type { border-bottom: none; }
.oc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); flex-shrink: 0; }
.oc-wa { background: #25d366; }
.oc-call { background: var(--blue); }
.oc-fb { background: #1877f2; }
.oc-email { background: var(--orange); }
.order-channel h4 { font-size: 0.95rem; margin-bottom: 3px; }
.order-channel a { font-size: 0.88rem; color: var(--blue); font-weight: 500; }
.cart-toast { position: fixed; bottom: 100px; right: 28px; z-index: 9999; display: none; align-items: center; gap: 10px; background: var(--dark); color: var(--white); padding: 14px 20px; border-radius: var(--radius); box-shadow: 0 8px 30px rgba(0,0,0,0.3); font-size: 0.88rem; font-weight: 500; }
.cart-toast i { color: var(--orange); }

/* CONTACT */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { margin-bottom: 14px; }
.contact-info p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--blue); flex-shrink: 0; }
.contact-detail h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-detail a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius); font-weight: 600; font-size: 0.88rem; color: var(--white); transition: var(--trans); }
.social-btn:hover { transform: translateY(-2px); }
.social-btn-wa { background: #25d366; }
.social-btn-fb { background: #1877f2; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 340px; border: none; display: block; }
.map-label { padding: 14px 20px; background: var(--white); display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); font-weight: 500; }
.map-label i { color: var(--orange); }

/* FOOTER */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 50px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 14px 0 20px; max-width: 250px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--trans); }
.footer-social a:hover { background: var(--orange); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--trans); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-brand-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white); }
.footer-brand-name span { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* FLOATING */
.float-group { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: var(--trans); position: relative; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.float-fb { background: #1877f2; box-shadow: 0 4px 20px rgba(24,119,242,0.4); }
.float-tooltip { position: absolute; right: 68px; background: var(--dark); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--trans); }
.float-btn:hover .float-tooltip { opacity: 1; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.fade-left.vis { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(36px); transition: opacity .7s ease, transform .7s ease; }
.fade-right.vis { opacity: 1; transform: translateX(0); }
.sec-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-header .sec-tag { display: inline-block; margin-bottom: 12px; }
.sec-header p { color: var(--gray); margin-top: 10px; font-size: 1.02rem; }

/* RESPONSIVE */
@media(max-width:1100px) { .products-grid{grid-template-columns:repeat(3,1fr)} .footer-grid{grid-template-columns:1fr 1fr;gap:32px} .stats-grid{grid-template-columns:repeat(2,1fr)} .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.1)} .price-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:900px) { .hero-content{grid-template-columns:1fr;gap:40px;padding-top:110px} .hero-card{display:none} .services-grid{grid-template-columns:1fr} .products-grid{grid-template-columns:repeat(2,1fr)} .order-grid{grid-template-columns:1fr} .why-grid{grid-template-columns:1fr} .contact-grid{grid-template-columns:1fr} .testi-card{min-width:calc(50% - 11px)} .footer-grid{grid-template-columns:1fr} .price-grid{grid-template-columns:1fr} }
@media(max-width:768px) { .nav-links{position:fixed;top:70px;left:0;right:0;background:var(--blue-dark);flex-direction:column;gap:0;padding:12px 0;transform:translateY(-110%);transition:transform .4s cubic-bezier(.4,0,.2,1);box-shadow:0 20px 40px rgba(0,0,0,0.3)} .nav-links.open{transform:translateY(0)} .nav-links a{display:block;padding:13px 28px;border-bottom:1px solid rgba(255,255,255,0.05);font-size:1rem} .nav-links a::after{display:none} .hamburger{display:flex} .hero-btns{flex-direction:column} .hero-btns .btn{width:100%;justify-content:center} .form-row{grid-template-columns:1fr} .order-form-wrap{padding:28px 20px} }
@media(max-width:600px) { .products-grid{grid-template-columns:1fr} .testi-card{min-width:100%} .stats-grid{grid-template-columns:1fr 1fr} }
