/* ==========================================================================
   SHREY CUSTOM SPORTSWEAR REDESIGN - STYLE SHEET (LIQUID GLASS LIGHT UI)
   ========================================================================== */

/* Design Tokens & Variables (Strictly following Shrey Brand Guidelines) */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f6f8f5; /* Astra theme light gray/greenish tint */
    --brand-gold: #99734c; /* Signature Shrey Gold */
    --brand-gold-glow: rgba(153, 115, 76, 0.06);
    --brand-gold-hover: #7d5e3e;
    --text-white: #000000; /* Main text is black */
    --text-muted: #40464d; /* Charcoal for descriptions */
    --text-dark: #121217;
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-hover: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-glow: rgba(153, 115, 76, 0.3);
    --glass-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.05);
    --glass-blur: blur(24px) saturate(180%);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-forum: 'Bebas Neue', sans-serif; /* Signature serif display font from Shrey */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Core Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-primary);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400; /* Bebas Neue default weight */
    letter-spacing: 0.06em; /* Added tracking for premium athletic layout */
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.15;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glowing Background Blobs (Softened for Light Theme) */
.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: multiply;
    animation: float-blobs 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-gold) 0%, rgba(153, 115, 76, 0) 70%);
    top: -100px;
    right: -100px;
    animation-duration: 25s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ddd6fe 0%, rgba(221, 214, 254, 0) 70%);
    top: 30%;
    left: -200px;
    animation-duration: 35s;
    opacity: 0.2;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--brand-gold) 0%, rgba(153, 115, 76, 0) 70%);
    bottom: 10%;
    right: -150px;
    animation-duration: 20s;
}

@keyframes float-blobs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -20px) scale(1.08); }
    100% { transform: translate(-20px, 30px) scale(0.97); }
}

/* Liquid Glass Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Premium Buttons styling */
.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.glass-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.glass-btn:hover::after {
    left: 100%;
}

.primary-btn {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #ffffff; /* Contrast fix: white text is highly legible on brand-gold */
}

.primary-btn:hover {
    background: var(--brand-gold-hover);
    box-shadow: 0 8px 24px rgba(153, 115, 76, 0.25);
    border-color: var(--brand-gold-hover);
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--glass-border);
    color: var(--text-dark);
}

.secondary-btn:hover {
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.15rem; /* Slightly larger text for Bebas Neue readability */
    border-radius: 12px;
    letter-spacing: 0.08em; /* Added tracking for clean legibility */
}

/* Section Header Shared Utility */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag-gold {
    display: inline-block;
    color: var(--brand-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* 1. STICKY HEADER STYLING */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1240px;
    height: 72px; /* Compact height for maximum elegance */
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px; /* Refined compact logo sizing */
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    gap: 36px;
}

.nav-link-item {
    font-family: var(--font-body); /* Montserrat is way more elegant for small inline items than Bebas */
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--brand-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-trigger-btn {
    font-family: var(--font-body) !important; /* Montserrat button text */
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 10px 24px !important;
    border-radius: 30px !important; /* Rounded capsule button */
    background: var(--brand-gold) !important;
    border-color: var(--brand-gold) !important;
    color: #ffffff !important; /* Highly elegant white text for contrast */
    box-shadow: 0 4px 15px rgba(153, 115, 76, 0.25) !important;
}

.quote-trigger-btn:hover {
    background: var(--brand-gold-hover) !important;
    border-color: var(--brand-gold-hover) !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(153, 115, 76, 0.35) !important;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-smooth);
}

/* Open states for menu icon */
.hamburger-menu.active .line-1 {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .line-2 {
    opacity: 0;
}

.hamburger-menu.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu slide-out overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-nav-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-nav-item:hover {
    color: var(--brand-gold);
}

.mobile-quote-btn {
    margin-top: 16px;
    width: 200px;
}

/* 2. HERO SECTION STYLING */
.hero-section {
    padding-top: 110px;
    padding-bottom: 40px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Form Styling (Right Column Sidebar Form) */
.hero-form-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.hero-form-title-group {
    margin-bottom: 10px;
    text-align: center;
}

.hero-form-title {
    font-size: 1.5rem !important;
    margin-bottom: 2px !important;
    color: var(--text-dark);
}

.hero-form-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 8px;
    margin-bottom: 5px;
}

.hero-form-grid .form-group {
    margin-bottom: 0;
    gap: 2px;
}

.hero-form-grid .form-group:nth-child(1),
.hero-form-grid .form-group:nth-child(2) {
    grid-column: span 2;
}

.hero-form-card .hero-msg-group {
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-form-actions {
    display: flex;
    justify-content: center;
}

.hero-form-actions .glass-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Tighter fields inside hero form */
.hero-form-card .form-input {
    padding: 8px 12px;
    height: 36px;
    font-size: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
}

.hero-form-card .form-textarea {
    height: 50px;
    padding: 8px 12px;
    resize: none;
}

.hero-form-card label {
    font-size: 0.65rem;
    margin-bottom: 0; /* Let flex gap handle it */
    letter-spacing: 0.03em;
    font-weight: 600;
}

.hero-form-card .error-msg {
    font-size: 0.6rem;
    margin-top: 2px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--brand-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Floating Hero visual card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual-card {
    width: 100%;
    max-width: 420px;
    padding: 20px 24px;
}

.visual-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--brand-gold-glow) 0%, rgba(153,115,76,0) 70%);
    top: -40px;
    right: -40px;
    opacity: 0.5;
    pointer-events: none;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.visual-dot.red { background: #ff5f56; }
.visual-dot.yellow { background: #ffbd2e; }
.visual-dot.green { background: #27c93f; }

.visual-title {
    margin-left: auto;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.visual-body h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.visual-tag {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(153, 115, 76, 0.1);
    border: 1px solid rgba(153, 115, 76, 0.25);
    border-radius: 4px;
    color: var(--brand-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.jersey-mockup-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.glowing-accent-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--brand-gold-glow) 0%, rgba(153,115,76,0) 70%);
    opacity: 0.5;
    animation: pulse 3s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0.6; }
}

.visual-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 16px;
    font-weight: 500;
}

/* 3. LEAD CAPTURE FORM SECTION STYLING */
.lead-form-section {
    padding: 100px 0;
    position: relative;
}

.form-header-area {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.form-glass-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 48px;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msg-group {
    margin-bottom: 30px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--brand-gold);
}

.form-input {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: rgba(153, 115, 76, 0.5);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(153, 115, 76, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23121217' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    cursor: pointer;
}

.form-select option {
    background-color: #ffffff;
    color: var(--text-dark);
}

.form-textarea {
    resize: vertical;
}

.error-msg {
    font-size: 0.78rem;
    color: #ef4444;
    height: 16px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

/* Submission Loader Animation styling */
.submit-loader {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loader-ring {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top: 2px solid #000000;
    border-radius: 50%;
    animation: spin-loader 0.8s linear infinite;
}

@keyframes spin-loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Overlay inside form card */
.form-feedback-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-feedback-card.active {
    opacity: 1;
    pointer-events: auto;
}

.feedback-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.success-card .feedback-icon {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgb(34, 197, 94);
    color: rgb(34, 197, 94);
}

.error-card .feedback-icon {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgb(239, 68, 68);
    color: rgb(239, 68, 68);
}

.form-feedback-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-feedback-card p {
    font-size: 1.05rem;
    max-width: 500px;
    margin-bottom: 30px;
}

/* 4. 3D INTERACTIVE SECTION STYLING */
.three-d-section {
    padding: 100px 0;
    position: relative;
}

.three-d-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.three-d-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.three-d-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.control-dot {
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-dot::after {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.control-dot.mouse::after { content: '✥'; }
.control-dot.zoom::after { content: '✛'; }

.three-d-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.jersey-feature h4 {
    font-size: 1.05rem;
    color: var(--brand-gold);
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.jersey-feature p {
    font-size: 0.88rem;
}

.three-d-viewport-wrapper {
    width: 100%;
}

.viewport-card {
    height: 480px;
    width: 100%;
    position: relative;
    padding: 10px;
}

.canvas-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--brand-gold-glow) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.canvas-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ThreeJS Loader */
.canvas-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    transition: var(--transition-smooth);
}

.loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--brand-gold);
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
}

/* 5. HOW IT WORKS STYLING */
.how-it-works {
    padding: 100px 0;
}

.steps-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, var(--brand-gold) 0%, rgba(0,0,0,0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid rgba(153, 115, 76, 0.25);
    width: 100%;
    padding-bottom: 8px;
}

.step-card h3 {
    font-size: 1.35rem;
}

/* 6. BRAND INTRODUCTION STYLING */
.brand-intro {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 170px);
    gap: 12px;
    width: 100%;
}

.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-smooth);
}

.bento-card:hover .bento-img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 75%);
    z-index: 1;
    pointer-events: none;
}

.bento-text {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    color: #ffffff;
    line-height: 1.25;
}

.bento-text h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.bento-text span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

/* Bento Card Grid Positioning */
.bento-cricket {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-rugby {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-football {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-hockey {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-training {
    grid-column: span 1;
    grid-row: span 1;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-gold);
}

.stat-lbl {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* 7. PRODUCT BENEFITS STYLING */
.product-benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    font-size: 2.2rem;
    background: rgba(0, 0, 0, 0.02);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.benefit-card h3 {
    font-size: 1.45rem;
}

/* 8. CLIENT LOGOS MARQUEE */
.client-logos-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.client-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 36px;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(246,248,245,0) 100%);
}

.marquee-wrapper::after {
    top: 0;
    right: 0;
    background: linear-gradient(-90deg, var(--bg-secondary) 0%, rgba(246,248,245,0) 100%);
}

.marquee {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    min-width: 100%;
    animation: marquee-scroll 24s linear infinite;
    padding: 10px 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.client-logo-item {
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.client-logo-item:hover {
    opacity: 0.95;
    filter: grayscale(0%);
}

/* 9. DELIVERY PROCESS STYLING */
.delivery-process {
    padding: 100px 0;
}

.delivery-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.delivery-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.d-step {
    display: flex;
    gap: 20px;
}

.d-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.d-step h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.d-step p {
    font-size: 0.9rem;
}

.map-glass-card {
    padding: 30px;
    position: relative;
}

.map-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-gold-glow) 0%, rgba(0,0,0,0) 70%);
    bottom: -50px;
    left: -50px;
    pointer-events: none;
}

.world-map-svg {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.world-map-svg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/world-map.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
}

.world-map-svg svg {
    position: relative;
    z-index: 2;
}

.ping-circle {
    transform-origin: 100px 120px;
    animation: map-ping 2s infinite ease-out;
}

@keyframes map-ping {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* 10. FAQs ACCORDION STYLING */
.faqs-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 12px;
    padding: 24px 30px;
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--brand-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    padding-top: 16px;
    font-size: 0.95rem;
}

/* 11. ABOUT SHREY STYLING */
.about-shrey {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-desc {
    font-size: 1.15rem;
    margin-bottom: 36px;
}

.about-quote {
    padding: 30px;
    border-left: 3px solid var(--brand-gold);
}

.about-quote p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    font-weight: 700;
}

.about-glass-card {
    padding: 0;
    overflow: hidden;
}

.about-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    line-height: 0;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.about-glass-card:hover .about-img {
    transform: scale(1.04);
}

.about-spec-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 14px;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.spec-val {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
    color: var(--text-dark);
}

/* 12. BRAND ADVANTAGES STYLING */
.brand-advantages {
    padding: 100px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.adv-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adv-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.adv-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--glass-border);
    padding: 4px 10px;
    border-radius: 30px;
    width: fit-content;
}

.adv-badge.font-gold {
    color: var(--brand-gold);
    border-color: rgba(153, 115, 76, 0.3);
}

.adv-card h3 {
    font-size: 1.35rem;
}

/* 13. ASSISTANCE SECTION STYLING */
.assistance-section {
    padding: 80px 0;
}

.assistance-card {
    padding: 60px 40px;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.assistance-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--brand-gold-glow) 0%, rgba(0,0,0,0) 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.assistance-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.assist-method-item {
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.assist-method-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.method-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(153, 115, 76, 0.1);
    color: var(--brand-gold);
    border: 1px solid rgba(153, 115, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.assist-method-item h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.assist-method-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* 14. STORE CTA SECTION STYLING */
.store-cta-section {
    padding: 60px 0 100px;
}

.store-card {
    padding: 50px 60px;
    position: relative;
}

.store-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-gold-glow) 0%, rgba(0,0,0,0) 70%);
    top: -40px;
    right: -40px;
    pointer-events: none;
}

.store-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.store-content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.store-content-wrapper p {
    font-size: 1.15rem;
    max-width: 600px;
}

/* Floating Quick Request CTA button styling */
.floating-cta-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.floating-cta-wrapper.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border-glow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-gold);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-cta-btn:hover {
    background: var(--brand-gold);
    color: #000000;
    border-color: var(--brand-gold);
    transform: scale(1.05);
}

.cta-pulse {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 30px;
    border: 1.5px solid var(--brand-gold);
    animation: cta-ripple 2.5s infinite;
    pointer-events: none;
}

@keyframes cta-ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.18); opacity: 0; }
}

.cta-icon {
    font-size: 1.1rem;
}

/* 15. FOOTER STYLING */
.main-footer {
    background: #0a0a0c; /* High contrast dark footer */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.7);
}

.main-footer h4 {
    color: var(--brand-gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.main-footer p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
    filter: invert(1) brightness(2.5); /* Convert black logo to white for dark footer */
}
    
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.05rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--brand-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-links a:hover {
    color: var(--brand-gold);
}


/* ==========================================================================
   INTERACTIVE SPORTS SHOWCASE STYLING
   ========================================================================== */
.showcase-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    justify-content: center;
}

.showcase-tab-btn {
    flex: 1 1 auto;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-tab-btn:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
}

.showcase-tab-btn.active {
    color: #ffffff;
    background: var(--brand-gold);
    box-shadow: 0 4px 12px rgba(153, 115, 76, 0.25);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
    background: #eef2f7;
}

.showcase-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-image-wrapper:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-details h3 {
    font-size: 1.4rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE FIRST & RESPONSIVENESS)
   ========================================================================== */

/* Ultra-wide Screen Adaptations */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

/* Notebook / Small Laptop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .intro-container,
    .delivery-container,
    .about-container {
        gap: 40px;
    }
}

/* Tablet (Portrait & Landscape) */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .three-d-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .three-d-info {
        text-align: center;
    }
    
    .three-d-features {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .intro-container,
    .delivery-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .intro-content,
    .delivery-content {
        align-items: center;
        text-align: center;
    }
    
    .stats-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .delivery-steps {
        max-width: 500px;
        margin: 40px auto 0;
        text-align: left;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-quote {
        border-left: none;
        border-top: 3px solid var(--brand-gold);
        text-align: center;
    }
    
    .steps-stepper {
        grid-template-columns: 1fr 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .intro-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 160px);
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-glass-card {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .assistance-methods {
        grid-template-columns: 1fr;
    }
    
    .store-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
        gap: 10px;
        max-width: 500px;
        margin: 0 auto;
    }
    .bento-cricket {
        grid-column: span 2;
        grid-row: span 2;
    }
    .bento-rugby, .bento-football, .bento-hockey, .bento-training {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .glass-btn {
        width: 100%;
    }
    
    .steps-stepper {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cta-wrapper {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: calc(100% - 40px);
        display: flex;
    }
    
    .floating-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .viewport-card {
        height: 380px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .intro-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 170px);
        gap: 12px;
    }
    .bento-cricket, .bento-rugby, .bento-football, .bento-hockey, .bento-training {
        grid-column: span 1;
        grid-row: span 1;
    }
}
