/* ============================================================
   QualityLink Global — Professional Stylesheet
   Rajasthan Sourcing & Quality Control Specialist
   ============================================================ */

:root {
  --navy: #0A2A3F;
  --navy-dark: #061A29;
  --navy-light: #123A55;
  --gold: #C88F2A;
  --gold-light: #E8B84B;
  --gold-dark: #A0721E;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --gray-bg: #F3F0EC;
  --gray-light: #E5E0DA;
  --gray: #7A7368;
  --gray-dark: #3D3830;
  --text: #1A1714;
  --text-light: #5C554C;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --cream: #F3EEE7;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-gold-outline { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }
.btn-gold-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 42, 63, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.navbar.scrolled { background: rgba(6, 26, 41, 0.98); box-shadow: var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 86px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; letter-spacing: 0.2px; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold-light); transition: width var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--navy-dark); flex-direction: column; justify-content: center; gap: 28px; transition: right var(--transition); box-shadow: var(--shadow-lg); }
  .nav-links.active { right: 0; }
}

/* --- Hero --- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: var(--navy); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,42,63,0.92) 0%, rgba(6,26,41,0.78) 100%); }
.hero .container { position: relative; z-index: 1; max-width: 780px; padding-top: 60px; }
.hero-badge { display: inline-block; background: rgba(200,143,42,0.12); border: 1px solid rgba(200,143,42,0.35); color: var(--gold-light); padding: 7px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { color: var(--white); font-size: clamp(2.8rem, 6.5vw, 5rem); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.1; }
.hero h1 span { display: block; color: var(--gold-light); font-size: 0.5em; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; margin-top: 8px; }
.hero-lead { color: rgba(255,255,255,0.85); font-size: clamp(0.95rem, 1.5vw, 1.15rem); line-height: 1.7; max-width: 600px; margin-bottom: 36px; }
.hero .btn { margin-right: 12px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }
.hero-scroll a { display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; animation: bounce 2s infinite; }
.hero-scroll svg { width: 18px; height: 18px; opacity: 0.6; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { display: inline-block; color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { letter-spacing: -0.5px; }
.section-header p { color: var(--text-light); max-width: 620px; margin: 14px auto 0; font-size: 1.05rem; }

/* --- Product Category Cards --- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  background: var(--white); border: 1px solid var(--gray-light);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card-img { width: 100%; height: 240px; object-fit: cover; }
.cat-card-body { padding: 24px; }
.cat-card-body h4 { color: var(--navy); font-size: 1rem; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 8px; }
.cat-card-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.cat-card-body ul { margin-top: 12px; }
.cat-card-body ul li { font-size: 0.85rem; color: var(--text-light); padding: 3px 0 3px 18px; position: relative; }
.cat-card-body ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: 1fr; } }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--gray-light); transition: all var(--transition); text-align: left;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; color: var(--gold-dark); }
.service-card h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.2px; margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* --- Two Column --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.two-col-text h2 { margin-bottom: 20px; letter-spacing: -0.3px; }
.two-col-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }
.two-col-text ul { margin: 12px 0 20px; }
.two-col-text ul li { padding: 6px 0 6px 24px; position: relative; color: var(--text-light); }
.two-col-text ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* --- Stats --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 16px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); transition: all var(--transition); }
.stat-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.stat-label { color: var(--text-light); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* --- Location Cards --- */
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all var(--transition); }
.loc-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.loc-card .loc-icon { font-size: 28px; margin-bottom: 10px; }
.loc-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.loc-card p { color: var(--text-light); font-size: 0.8rem; margin-top: 4px; }

@media (max-width: 768px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- CTA --- */
.cta { position: relative; background: var(--navy); text-align: center; padding: 120px 28px; overflow: hidden; }
.cta .container { position: relative; z-index: 1; max-width: 650px; }
.cta h2 { color: var(--white); letter-spacing: -0.3px; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }

/* --- Page Header --- */
.page-header { background: var(--navy); padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,42,63,0.96) 0%, rgba(6,26,41,0.85) 100%); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); letter-spacing: -0.5px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.08rem; margin-top: 14px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; align-items: flex-start; color: rgba(255,255,255,0.55); }
.footer-contact li span:first-child { color: var(--gold-light); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-left: auto; }
.footer-legal a { color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: color var(--transition); }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--gold-light); }
.legal-page { background: var(--off-white); }
.legal-content { max-width: 860px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-sm); }
.legal-content h2 { font-size: 1.45rem; margin: 32px 0 10px; }
.legal-content p { color: var(--text-light); margin-bottom: 14px; }
.legal-content a, .sitemap-page a { color: var(--gold-dark); font-weight: 600; }
.sitemap-page { background: var(--off-white); }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sitemap-group { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: 30px; }
.sitemap-group h2, .sitemap-blog-link h2 { font-size: 1.35rem; margin-bottom: 16px; }
.sitemap-group li { padding: 7px 0; border-bottom: 1px solid var(--gray-light); }
.sitemap-group li:last-child { border-bottom: 0; }
.sitemap-blog-link { margin-top: 24px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: 30px; }
.sitemap-blog-link p { color: var(--text-light); }
@media (max-width: 640px) { .footer-bottom { align-items: flex-start; flex-direction: column; } .footer-legal { width: 100%; justify-content: flex-end; margin-left: 0; } .legal-content { padding: 28px 22px; } .sitemap-grid { grid-template-columns: 1fr; } }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); transition: all var(--transition); font-size: 15px; }
.footer-social a:hover { background: var(--gold); color: var(--white); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--navy); }
.contact-item h4 { margin-bottom: 2px; font-size: 1rem; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: 0.95rem; }
.contact-form { background: var(--off-white); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--gray-light); }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-light); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; transition: border-color var(--transition); background: var(--white); color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,42,63,0.08); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* --- Service Detail --- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }
.service-detail-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.service-detail-text h3 { margin-bottom: 14px; letter-spacing: -0.3px; }
.service-detail-text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.service-detail-text ul { margin: 12px 0 18px; }
.service-detail-text ul li { padding: 6px 0 6px 24px; position: relative; color: var(--text-light); }
.service-detail-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 768px) { .service-detail { grid-template-columns: 1fr; gap: 32px; } }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Back to Top --- */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 990; box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* --- WhatsApp Float --- */
.whatsapp-float { position: fixed; bottom: 82px; right: 28px; width: 52px; height: 52px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; z-index: 990; box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: all var(--transition); }
.whatsapp-float:hover { transform: scale(1.08); }

/* --- Trust bar --- */
.trust-bar { background: var(--navy-light); padding: 16px 0; }
.trust-bar .container { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 600px) {
  .trust-bar .container { gap: 24px; }
  .trust-item { font-size: 11px; }
}

/* --- Breadcrumb --- */
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }
/* --- Shared detail-page components --- */
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.two-col-image { position: relative; }
.two-col-image::before { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(200,143,42,0.12), transparent); pointer-events: none; }
.two-col-image .floating-badge { position: absolute; right: 20px; bottom: 20px; z-index: 2; padding: 14px 24px; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; color: var(--white); background: rgba(10,42,63,0.92); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.floating-badge .num { color: var(--gold-light); font-size: 1.45rem; font-weight: 800; line-height: 1.15; }
.floating-badge .label { color: rgba(255,255,255,0.72); font-size: 0.75rem; }

.stats-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.stats-section::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.6) 1px, transparent 0); background-size: 30px 30px; }
.stats-section .container { position: relative; z-index: 1; }
.stats-section .section-header h2 { color: var(--white); }
.stats-section .section-label { color: var(--gold-light); }
.stats-grid { position: relative; z-index: 1; }
.stat-card { padding: 34px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.stat-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(232,184,75,0.45); }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stats-section .stat-number { font-size: 1.7rem; color: var(--gold-light); }
.stats-section .stat-label { color: rgba(255,255,255,0.62); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 32px 24px; text-align: center; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); transition: all var(--transition); }
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border-radius: 18px; background: rgba(200,143,42,0.1); color: var(--gold-dark); font-size: 28px; font-weight: 700; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* --- Sports Goods Full-Width Strip --- */
.sports-strip { border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.sports-strip-inner { display: flex; align-items: stretch; width: 100%; }
.sports-strip-img-wrap { flex: 0 0 60%; max-width: 60%; position: relative; overflow: hidden; }
.sports-strip-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,42,63,0.55) 0%, rgba(6,26,41,0.3) 60%, transparent 100%); z-index: 1; pointer-events: none; }
.sports-strip-img-wrap img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; display: block; }
.sports-strip-body { flex: 1; padding: 48px 56px; display: flex; flex-direction: column; justify-content: center; }
.sports-strip-body .section-label { color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.sports-strip-body h2 { color: var(--navy); font-size: 1.8rem; letter-spacing: -0.5px; margin-bottom: 16px; }
.sports-strip-body p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 8px; }
.sports-strip-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.sports-tag { display: inline-block; padding: 8px 20px; border: 1px solid var(--gray-light); border-radius: 100px; color: var(--navy); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: all var(--transition); }
.sports-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
@media (max-width: 768px) {
  .sports-strip-inner { flex-direction: column; }
  .sports-strip-img-wrap { flex: none; max-width: 100%; }
  .sports-strip-img-wrap img { min-height: 260px; max-height: 320px; }
  .sports-strip-body { padding: 32px 24px; }
}

/* --- FAQ --- */
details summary::-webkit-details-marker { display: none; }
details[open] summary span { transform: rotate(45deg); }

/* --- Scroll Progress --- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; z-index: 9999; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); width: 0%; transition: width 0.1s linear; }

/* --- Hero Extras --- */
.hero-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.5) 1px, transparent 0); background-size: 40px 40px; }
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.06; animation: float 20s ease-in-out infinite; }
.shape-1 { width: 400px; height: 400px; background: var(--gold); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--gold); bottom: -50px; left: -80px; animation-delay: -7s; }
.shape-3 { width: 200px; height: 200px; background: rgba(255,255,255,0.3); top: 40%; right: 20%; animation-delay: -14s; }
@keyframes float { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(30px,-30px) rotate(5deg); } 65% { transform: translate(-20px,20px) rotate(-3deg); } }
.hero h1 .highlight { background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero h1 .subtitle { display: block; font-size: 0.35em; font-weight: 400; letter-spacing: 6px; text-transform: uppercase; margin-top: 12px; color: rgba(255,255,255,0.5); -webkit-text-fill-color: initial; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.hero-stat-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* --- Floating Tags --- */
.floating-tags { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.float-tag { position: absolute; background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); padding: 8px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; animation: floatTag 15s ease-in-out infinite; }
.float-tag:nth-child(1) { top: 15%; right: 5%; }
.float-tag:nth-child(2) { top: 35%; right: 15%; animation-delay: -3s; font-size: 0.7rem; }
.float-tag:nth-child(3) { bottom: 25%; right: 8%; animation-delay: -6s; }
.float-tag:nth-child(4) { top: 20%; right: 22%; animation-delay: -9s; font-size: 0.7rem; }
@keyframes floatTag { 0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.6; } 50% { transform: translateY(-15px) rotate(2deg); opacity: 1; } }

/* --- Gradient Text --- */
.gradient-text { background: linear-gradient(135deg, var(--gold-light), #fff, var(--gold), var(--gold-light)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientShift 6s ease-in-out infinite; }
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* --- Marquee --- */
.marquee-section { background: var(--off-white); padding: 18px 0; overflow: hidden; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.marquee-track { display: flex; gap: 48px; animation: marqueeScroll 30s linear infinite; width: max-content; }
.marquee-item { color: var(--gray); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 8px; opacity: 0.5; transition: opacity 0.3s; }
.marquee-item:hover { opacity: 1; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Process Steps --- */
.process-section { background: var(--white); overflow: hidden; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 14%; right: 14%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: 900; color: var(--gold-light); border: 3px solid var(--gold); box-shadow: 0 0 0 8px rgba(212,149,47,0.1), var(--shadow); transition: all 0.4s ease; }
.process-step:hover .process-step-num { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(212,149,47,0.15), 0 8px 30px rgba(212,149,47,0.2); }
.process-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.process-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; max-width: 220px; margin: 0 auto; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } .process-steps::before { display: none; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* --- Testimonials --- */
.testimonial-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-xl); padding: 36px 28px; border: 1px solid var(--gray-light); transition: all 0.5s ease; position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testimonial-quote { font-size: 4rem; line-height: 1; color: var(--gold); opacity: 0.2; font-family: 'Playfair Display', serif; margin-bottom: -16px; }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text-light); font-style: italic; line-height: 1.85; font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; }
.testimonial-info .name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-info .role { font-size: 0.8rem; color: var(--gray); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* --- FAQ Section --- */
.faq-section { background: var(--off-white); }
.faq-item { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); margin-bottom: 12px; transition: all var(--transition); overflow: hidden; }
.faq-item:hover { border-color: var(--gold); }
.faq-item summary, .faq-question { font-weight: 600; font-size: 1.05rem; color: var(--navy); cursor: pointer; list-style: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; transition: all 0.2s; background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.faq-item summary:hover, .faq-question:hover { color: var(--gold-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.2s; flex-shrink: 0; }
.faq-item[open] .faq-icon, .faq-item[open] summary .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: var(--text-light); line-height: 1.85; font-size: 0.95rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding-top: 0; padding-bottom: 0; }
.faq-item.open .faq-answer { max-height: 2000px; padding: 0 24px 20px; }

/* --- FAQ Search & Categories --- */
.faq-search { position: relative; max-width: 480px; margin: 0 auto 32px; }
.faq-search input { width: 100%; padding: 14px 20px 14px 48px; border: 1px solid var(--gray-light); border-radius: 50px; font-family: inherit; font-size: 0.95rem; background: var(--white); color: var(--text); transition: border-color 0.2s; }
.faq-search input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,42,63,0.08); }
.faq-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; color: var(--gray); pointer-events: none; }
.faq-search-count { text-align: center; color: var(--gray); font-size: 0.85rem; margin-bottom: 24px; }
.faq-categories { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.faq-cat-btn { padding: 8px 20px; border: 1px solid var(--gray-light); border-radius: 50px; background: var(--white); color: var(--text-light); font-family: inherit; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.faq-cat-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.faq-cat-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-group { margin-bottom: 40px; }
.faq-group-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.faq-no-results { text-align: center; padding: 60px 20px; color: var(--gray); }
.faq-no-results h3 { color: var(--navy); margin-bottom: 8px; }
.count { font-size: 0.8rem; color: var(--gray); font-weight: 400; margin-left: 8px; }
.icon { font-size: 1.1rem; }

/* --- Newsletter --- */
.newsletter-section { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.5) 1px, transparent 0); background-size: 30px 30px; }
.newsletter-section h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-section p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; background: rgba(255,255,255,0.08); color: var(--white); font-family: inherit; font-size: 0.95rem; transition: all 0.2s; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); box-shadow: 0 0 0 3px rgba(212,149,47,0.2); }

/* --- Glowing CTA --- */
.btn-glow { animation: btnGlow 3s ease-in-out infinite; }
@keyframes btnGlow { 0%,100% { box-shadow: 0 4px 20px rgba(212,149,47,0.3); } 50% { box-shadow: 0 4px 40px rgba(212,149,47,0.5), 0 0 60px rgba(212,149,47,0.2); } }

/* --- Service Card Numbers --- */
.service-card-num { position: absolute; top: 16px; right: 20px; font-size: 3rem; font-weight: 900; color: rgba(0,0,0,0.04); font-family: 'Playfair Display', serif; line-height: 1; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.service-card:hover::before { transform: scaleX(1); }

/* --- Hero Badge Pulse --- */
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; display: inline-block; margin-right: 8px; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- Location Section --- */
.location-section { background: var(--off-white); }

/* --- CTA Glow --- */
.cta-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--gold); opacity: 0.06; filter: blur(100px); }
.cta-glow-1 { top: -100px; left: -100px; }
.cta-glow-2 { bottom: -100px; right: -100px; }

/* --- Cat Card Extras --- */
.cat-card-img-wrap { position: relative; height: 280px; overflow: hidden; }
.cat-card-img-wrap .cat-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,42,63,0.9) 100%); }
.cat-card-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(212, 149, 47, 0.9); color: var(--white); padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; backdrop-filter: blur(10px); }
.cat-card-body ul li a { color: inherit; display: block; text-decoration: none; }
.cat-card-body ul li a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* --- Hero Extras 2 --- */
.hero-badge-pulse { position: relative; }
.hero-badge-pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50px; border: 2px solid rgba(212, 149, 47, 0.3); animation: pulseRing 3s ease-in-out infinite; }
@keyframes pulseRing { 0%,100% { opacity: 0; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.02); } }
.hero-stat-item { text-align: left; }
.hero-scroll .arrow { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.2); border-radius: 12px; position: relative; }
.hero-scroll .arrow::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold-light); border-radius: 2px; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 100% { top: 24px; opacity: 0; } }
.process-step-icon { font-size: 2rem; margin-bottom: 12px; }

/* --- Region Labels --- */
.region-label { display: inline-flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; padding: 8px 20px; border-radius: 50px; }
.region-primary { color: var(--gold-dark); background: rgba(212, 149, 47, 0.1); border: 1px solid rgba(212, 149, 47, 0.2); }
.region-secondary { color: var(--navy-light); background: rgba(10, 42, 63, 0.08); border: 1px solid rgba(10, 42, 63, 0.12); }

/* --- CTA Phone --- */
.cta-phone { margin-top: 24px; font-size: 0.95rem; color: rgba(255,255,255,0.5); }
.cta-phone a { color: var(--gold-light); font-weight: 700; transition: color 0.3s; }
.cta-phone a:hover { color: var(--white); }

/* --- Emoji --- */
.emoji { font-size: 1.4rem; }
