/* TLK Static Site - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --blue: #00BAFF;
  --blue-dark: #0a1628;
  --blue-navy: #1A237E;
  --lime: #B8E600;
  --lime-dark: #9BC300;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: #1e293b; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease-out forwards; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out forwards; }
.marquee-track { display: flex; animation: marquee 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

/* Scroll animations */
[data-animate] { opacity: 0; transform: translateY(25px); transition: all 0.7s ease-out; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate="left"] { transform: translateX(-25px); }
[data-animate="left"].visible { transform: translateX(0); }

/* Header */
.header { transition: all 0.3s ease; }
.header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-link { position: relative; transition: color 0.3s; }
.nav-link:hover { color: var(--blue); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: var(--lime); border-radius: 2px; }

/* Cards */
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,186,255,0.12); }

/* Buttons */
.btn-primary { background: var(--blue); color: white; padding: 12px 28px; border-radius: 50px; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; cursor: pointer; font-size: 15px; }
.btn-primary:hover { background: #009ee0; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,186,255,0.3); }
.btn-outline { border: 2px solid white; color: white; padding: 12px 28px; border-radius: 50px; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; background: transparent; cursor: pointer; font-size: 15px; }
.btn-outline:hover { background: white; color: var(--blue-dark); }
.btn-lime { background: var(--lime); color: var(--blue-dark); padding: 14px 32px; border-radius: 50px; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; cursor: pointer; font-size: 16px; }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,230,0,0.3); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* Badges */
.badge { display: inline-block; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.badge-blue { background: var(--blue); color: white; }
.badge-lime { background: var(--lime); color: var(--blue-dark); }
.badge-light { background: rgba(0,186,255,0.1); color: var(--blue); }

/* Stars */
.stars { color: var(--lime); display: flex; gap: 2px; }

/* Mobile menu */
.mobile-menu { transform: translateX(-100%); transition: transform 0.3s ease; }
.mobile-menu.open { transform: translateX(0); }

/* FAQ */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-chevron { transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu { opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s ease; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* Product grid */
.product-img { transition: transform 0.3s; }
.product-card:hover .product-img { transform: scale(1.05); }

/* Line clamp */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
