/* ==========================================================================
   SHANZY SPORTS - MASTER STYLESHEET
   Sialkot, Pakistan | Custom Sportswear, Streetwear & Gym Wear Manufacturer
   ========================================================================== */

:root {
  /* Curated Sportswear / Manufacturing Palette */
  --primary-dark: #111827;
  --deep-navy: #0B1220;
  --primary-blue: #1D4ED8;
  --electric-blue: #2563EB;
  --light-grey: #F3F4F6;
  --soft-blue-grey: #E9EEF7;
  --white: #FFFFFF;
  --main-text: #151B26;
  --muted-text: #4B5563;
  --accent-orange: #F97316;
  --accent-orange-hover: #EA580C;
  --border-color: #E2E8F0;
  
  /* Fonts */
  --font-heading: 'Oswald', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 25px -5px rgba(11, 18, 32, 0.08);
  --shadow-hover: 0 20px 30px -10px rgba(29, 78, 216, 0.15);
  
  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--main-text);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 72px; /* Space for mobile sticky bottom CTA bar */
  }
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
  line-height: 1.15;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--electric-blue);
}

.bg-dark-navy {
  background-color: var(--deep-navy) !important;
}

.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}

.bg-light-grey {
  background-color: var(--light-grey) !important;
}

.bg-soft-blue-grey {
  background-color: var(--soft-blue-grey) !important;
}

.text-accent {
  color: var(--electric-blue) !important;
}

.text-accent-orange {
  color: var(--accent-orange) !important;
}

/* --------------------------------------------------------------------------
   TOP BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--deep-navy);
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-tagline {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.top-bar-contact {
  color: #CBD5E1;
  text-decoration: none;
  font-weight: 600;
}

.top-bar-contact:hover {
  color: var(--white);
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.2);
}

.social-icons-top a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.social-icons-top a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   STICKY HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--primary-dark);
  border-bottom: 2px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1030;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(8px);
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #E2E8F0 !important;
  padding: 1.25rem 0.9rem !important;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 3px;
  background-color: var(--electric-blue);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-menu-dark {
  background-color: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  margin-top: 0;
}

.dropdown-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: #CBD5E1;
  transition: var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Header Action Button */
.btn-quote-header {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: var(--accent-orange);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-quote-header:hover {
  background-color: var(--accent-orange-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* --------------------------------------------------------------------------
   PRIMARY BUTTONS & CTA STYLES
   -------------------------------------------------------------------------- */
.btn-primary-custom {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--primary-blue);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-custom:hover {
  background-color: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-accent-custom {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: var(--accent-orange);
  color: var(--white);
  border: 1px solid var(--accent-orange);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-accent-custom:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.btn-outline-custom {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-dark-custom {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-outline-dark-custom:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 580px;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.92) 0%, rgba(17, 24, 39, 0.85) 100%), 
              url('../images/hero/hero-banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--electric-blue);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-title .highlight-blue {
  color: #60A5FA;
}

.hero-title .highlight-orange {
  color: var(--accent-orange);
}

.hero-description {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Trust Points Bar */
.trust-points-bar {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  color: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--electric-blue);
}

.trust-item .trust-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: var(--white);
}

.trust-item .trust-sub {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   SECTION HEADINGS & BADGES
   -------------------------------------------------------------------------- */
.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background-color: var(--soft-blue-grey);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.section-badge-dark {
  color: #60A5FA;
  background-color: rgba(37, 99, 235, 0.15);
  border-left: 3px solid var(--electric-blue);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted-text);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   CATEGORY CARDS
   -------------------------------------------------------------------------- */
.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.4) 60%, rgba(11, 18, 32, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.92rem;
  color: #CBD5E1;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   PRODUCT CARDS (NO PRICES, NO ADD TO CART)
   -------------------------------------------------------------------------- */
.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #BFDBFE;
}

.product-thumb {
  position: relative;
  background-color: #F8FAFC;
  overflow: hidden;
  padding-top: 100%; /* 1:1 Aspect ratio */
}

.product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-badge-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--deep-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.product-name a {
  color: var(--primary-dark);
}

.product-name a:hover {
  color: var(--primary-blue);
}

.product-excerpt {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-actions {
  display: flex;
  gap: 8px;
  padding-top: 0.75rem;
  border-top: 1px solid #F1F5F9;
}

.btn-view-details {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--light-grey);
  color: var(--primary-dark);
  transition: var(--transition-fast);
}

.btn-view-details:hover {
  background-color: #E2E8F0;
  color: var(--primary-dark);
}

.btn-request-quote {
  flex: 1.2;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  transition: var(--transition-fast);
}

.btn-request-quote:hover {
  background-color: var(--electric-blue);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   EDITORIAL SPLIT FEATURES (HOODIES & TRACKSUITS)
   -------------------------------------------------------------------------- */
.editorial-feature {
  padding: 5rem 0;
  background-color: var(--white);
}

.editorial-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.editorial-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.editorial-tag {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.editorial-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.editorial-feature-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.editorial-feature-list i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   MANUFACTURING PROCESS & STEPS
   -------------------------------------------------------------------------- */
.process-step-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-card);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--electric-blue);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   WHO WE WORK WITH ICONS
   -------------------------------------------------------------------------- */
.client-type-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.client-type-card:hover {
  border-color: var(--primary-blue);
  background-color: var(--soft-blue-grey);
  transform: translateY(-3px);
}

.client-type-card i {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  display: block;
}

.client-type-card h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   GALLERY MASONRY & FILTER TABS
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-btn {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--muted-text);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-btn:hover,
.gallery-btn.active {
  background-color: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.gallery-item-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.gallery-item-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-wrap:hover img {
  transform: scale(1.05);
}

.gallery-hover-info {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  text-align: center;
  padding: 1rem;
}

.gallery-item-wrap:hover .gallery-hover-info {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--deep-navy);
  font-size: 0.92rem;
}

.footer-title {
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background-color: var(--electric-blue);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94A3B8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.social-icons-footer .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: var(--transition-fast);
}

.social-icons-footer .social-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   MOBILE BOTTOM CTA BAR
   -------------------------------------------------------------------------- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
  z-index: 1040;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 100%;
  border: none;
  background: transparent;
}

.mobile-bar-btn i {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.mobile-bar-btn.btn-call {
  color: #E2E8F0;
}

.mobile-bar-btn.btn-call:hover {
  color: var(--white);
}

.mobile-bar-btn.btn-whatsapp {
  color: #22C55E;
}

.mobile-bar-btn.btn-quote {
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 6px 4px;
}

/* --------------------------------------------------------------------------
   FORMS & INPUTS
   -------------------------------------------------------------------------- */
.form-control, .form-select {
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: var(--main-text);
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
  outline: none;
}

/* Flash Messages */
.alert-custom-success {
  background-color: #ECFDF5;
  border-left: 4px solid #10B981;
  color: #065F46;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.alert-custom-error {
  background-color: #FEF2F2;
  border-left: 4px solid #EF4444;
  color: #991B1B;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
