/* ==========================================================================
   Big Sports Asia - Global Design System & Styles
   ========================================================================== */

/* Web font import for Adumu */
@font-face {
    font-family: 'Adumu';
    src: url('https://db.onlinewebfonts.com/t/6be8b78f5eaa571c3fbf3a1908515cf6.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/6be8b78f5eaa571c3fbf3a1908515cf6.woff') format('woff'),
         url('https://db.onlinewebfonts.com/t/6be8b78f5eaa571c3fbf3a1908515cf6.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 1. CSS VARIABLES & RESET */
:root {
    --primary: #FF7A00;
    --primary-hover: #E06900;
    --dark: #111111;
    --dark-grey: #333333;
    --light-grey: #666666;
    --border-color: rgba(0, 0, 0, 0.08);
    --bg-light: #FFFFFF;
    --bg-alt: #F9F9F9;
    --transition-speed: 0.3s;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-logo: 'Adumu', 'Anton', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 75px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. REUSABLE COMPONENTS (BLOBS, UTILITIES)
   ========================================================================== */

/* Organic SVG-like Blobs using CSS border-radius */
.logo-blob {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 56% 44% 62% 38% / 43% 54% 46% 57%;
    color: var(--dark);
    user-select: none;
    transition: transform 0.3s ease;
}

.logo-text-stacked {
    font-family: var(--font-logo);
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    font-weight: normal;
    color: #000000;
}

/* Section Header Structure */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Product Tag */
.product-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

/* Button */
.submit-btn {
    background-color: var(--primary);
    color: var(--bg-light);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color var(--transition-speed), transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   3. STICKY HEADER / TASKBAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.4s, border-bottom 0.4s, backdrop-filter 0.4s, height 0.4s;
}

.main-header.sticky-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Header container */
.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* When the header is scrolled, style as sticky taskbar */
.main-header.scrolled-bar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    height: 75px;
}

/* Target Header Logo on the Left */
.nav-logo-target {
    display: inline-block;
    opacity: 1;
}

.nav-logo-blob {
    background-color: var(--primary);
    width: 90px;
    height: 80px;
    border-radius: 54% 46% 58% 42% / 45% 55% 45% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-text {
    font-family: var(--font-logo);
    font-size: 0.95rem;
    line-height: 0.85;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #000000;
}

/* Header Nav on the Right */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Nav links styling */
.nav-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-grey);
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color var(--transition-speed), background-color var(--transition-speed);
}

.nav-link-item:hover {
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0.02);
}

/* The circular icons in the nav item targets */
.nav-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Target nav items default layout */
#nav-target-bowls, #nav-target-boldr, #nav-target-contact, #nav-item-story {
    opacity: 1;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 40px 30px 40px;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Intro Welcome Screen Overlay */
/* Hero Background Video */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0; /* Full color welcome animation background */
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Central Huge Logo Blob */
.logo-blob-hero {
    background-color: var(--primary);
    width: 250px;
    height: 220px;
    border-radius: 58% 42% 64% 36% / 46% 56% 44% 54%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
}

.logo-text-hero {
    font-family: var(--font-logo);
    font-size: 2.8rem;
    line-height: 0.85;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-grey);
    max-width: 600px;
    font-weight: 400;
    margin-top: 10px;
}

/* Cards Grid Containers */
.hero-cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.2s ease-out;
    position: relative;
    z-index: 2;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Card Placeholders */
.card-placeholder {
    height: 240px;
    background-color: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    overflow: visible; /* elements can fly outside bounds during transition */
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
}

.card-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-inner {
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

/* Large Logo Card inside Card 1 */
.logo-blob-card {
    background-color: var(--primary);
    width: 160px;
    height: 140px;
    border-radius: 56% 44% 60% 40% / 44% 56% 44% 56%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-card {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    line-height: 0.85;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
}

/* Card Image Containers */
.card-image-box {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mascot is isolated on transparent card background */
.card-image-box.mascot-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-box.mascot-box img {
    object-fit: contain;
}

.card-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    letter-spacing: -0.01em;
}

/* ==========================================================================
   5. BRAND STORY SECTION
   ========================================================================== */
.brand-story-section {
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.brand-story-text {
    font-size: 1.15rem;
    color: var(--dark-grey);
    margin-bottom: 40px;
    max-width: 650px;
}

.brand-story-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.highlight-item p {
    color: var(--light-grey);
    font-size: 0.95rem;
}

/* Decorative Orange Pebble Blob on the Right */
.brand-story-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.brand-story-pebble {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: auto;
    max-height: 110%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 122, 0, 0.12));
    pointer-events: none;
}

/* ==========================================================================
   6. PRODUCT SECTIONS (PINS N BOWLS & BIG BOLDR)
   ========================================================================== */
.pins-bowls-section {
    background-color: var(--bg-light);
}

.big-boldr-section {
    background-color: var(--bg-alt);
}

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

.product-grid.reverse {
    direction: rtl;
}

/* Reset text direction inside reverse grid */
.product-grid.reverse .product-info-side {
    direction: ltr;
}

.product-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.03);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}

.product-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ==========================================================================
   7. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-container {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Testimonials Slider Styles */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.testimonial-slide {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Testimonials Slider Wrapper & Navigation Arrows */
.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 32px;
    position: relative;
    margin-bottom: 20px;
}

.slider-arrow {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
    color: var(--dark-grey);
    z-index: 10;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: #000000;
    border-color: var(--primary);
    transform: scale(1.05);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Initials Avatar fallback styling */
.testimonial-avatar-initials {
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    color: var(--dark);
    font-family: var(--font-logo);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.testimonial-card {
    background-color: var(--bg-light);
    max-width: 1060px;
    width: 100%;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 40px;
    align-items: center;
}

.testimonial-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 24px;
    line-height: 1.7;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.author-company {
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* Pagination Dots */
.testimonial-pagination {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-pagination .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* ==========================================================================
   8. CONTACT US SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--light-grey);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* Contact Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input, 
.form-group textarea {
    font-family: var(--font-body);
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    background-color: var(--bg-alt);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-light);
}

/* Contact Visual (Mascot & Details) */
.contact-visual-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: var(--bg-alt);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.mascot-wrapper {
    width: 220px;
    height: 220px;
    position: relative;
}

/* Mascot Hover Float & Wave Effect */
.mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: waveMascot 3s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes waveMascot {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
    75% { transform: translateY(-6px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Float & Wave Card interaction */
.card-placeholder:hover .mascot-box img {
    animation: waveMascot 2s ease-in-out infinite;
    transform-origin: bottom center;
}

.contact-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--light-grey);
    margin-bottom: 2px;
}

.detail-item p {
    font-weight: 600;
    color: var(--dark-grey);
    line-height: 1.5;
}

.detail-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.detail-item p a:hover {
    color: var(--primary);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--dark);
    color: #A0A0A0;
    padding: 80px 40px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links-side {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-links-column.address-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #A0A0A0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-links-column.address-column p i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.95rem;
}

.logo-blob-footer {
    background-color: var(--primary);
    width: 110px;
    height: 95px;
    border-radius: 54% 46% 58% 42% / 45% 55% 45% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-text-footer {
    font-family: var(--font-logo);
    font-size: 1.15rem;
    line-height: 0.85;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #000000;
}

.footer-links-column h4 {
    font-size: 1rem;
    color: var(--bg-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links-column a {
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   10. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .product-title {
        font-size: 2.6rem;
    }
    
    .product-grid {
        gap: 40px;
    }
    
    .brand-story-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .hero-section {
        min-height: auto;
        height: auto;
        aspect-ratio: 16 / 9;
        padding: 0;
    }

    .hero-video-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-video-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .section-container {
        padding: 60px 20px;
    }

    .header-nav {
        gap: 16px;
    }

    /* Hide text labels in sticky header on tablet/mobile to save space */
    .nav-link-text {
        display: none;
    }
    
    .nav-link-item {
        padding: 6px;
    }

    /* Keep 4 cards in one horizontal line but smaller sizes */
    .hero-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .card-placeholder {
        height: 180px;
    }

    .card-image-box {
        width: 75px;
        height: 75px;
    }
    
    .logo-box {
        width: 75px;
        height: 75px;
    }

    .card-label {
        font-size: 0.8rem;
    }
    
    .card-inner {
        padding: 12px;
        gap: 8px;
    }

    /* Stack section layouts */
    .brand-story-grid,
    .product-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-grid.reverse {
        direction: ltr;
    }
    
    .brand-story-visual {
        display: none; /* Hide overflow blob on smaller screens */
    }

    .testimonial-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 20px;
    }

    .testimonial-avatar {
        width: 110px;
        height: 110px;
    }

    .contact-visual-side {
        padding: 30px 20px;
        border-radius: 20px;
        gap: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-side {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-slider-wrapper {
        position: relative;
        display: block;
        width: 100%;
        max-width: 100%;
        padding-bottom: 60px;
        margin-bottom: 20px;
    }

    .testimonials-slider {
        width: 100%;
    }

    .slider-arrow {
        position: absolute;
        top: auto;
        bottom: 0;
        margin: 0;
        width: 40px;
        height: 40px;
        z-index: 10;
    }

    .prev-arrow {
        left: calc(50% - 50px);
    }

    .next-arrow {
        right: calc(50% - 50px);
    }

    .testimonial-pagination {
        margin-top: 20px;
    }

    .footer-concept-logos img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    /* Sticky Header mobile scaling down to 320px */
    .header-container {
        padding: 0 12px;
    }

    .nav-logo-image-wrapper {
        width: 45px;
        height: 45px;
    }

    .nav-icon-circle {
        width: 28px;
        height: 28px;
    }

    .nav-icon-circle i {
        font-size: 0.85rem;
    }

    .nav-link-item {
        padding: 4px;
        gap: 0;
    }

    .header-nav {
        gap: 8px;
    }

    /* Keep cards in one horizontal row even on mobile but very compact */
    .hero-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .card-placeholder {
        height: 120px;
        border-radius: 12px;
    }

    .card-image-box {
        width: 50px;
        height: 50px;
    }

    .logo-box {
        width: 50px;
        height: 50px;
    }

    .card-label {
        font-size: 0.6rem;
    }

    .card-inner {
        padding: 8px;
        gap: 6px;
    }

    .logo-img-hero {
        width: 250px;
        height: 250px;
    }

    .section-title,
    .product-title,
    .contact-title {
        font-size: 2.2rem;
    }
    
    /* Footer layout on mobile */
    .footer-links-side {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-concept-logos {
        justify-content: center;
        margin-top: 16px;
    }

    .footer-concept-logos img {
        height: 30px;
    }
}

/* ==========================================================================
   11. NEW IMAGE-BASED LOGO STYLES
   ========================================================================== */
.logo-img-hero {
    width: 40vh;
    height: 40vh;
    max-width: 450px;
    max-height: 450px;
    object-fit: contain;
}

.card-image-box.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-box.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo-image-wrapper {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-wrapper {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-concept-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.footer-concept-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.2s;
}

.footer-concept-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================================================
   12. PDF-INSPIRED DESIGN REPLACEMENTS
   ========================================================================== */
.brand-story-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

/* Tighten gaps by overriding generic section container paddings */
.brand-story-section .section-container {
    padding: 60px 40px 10px 40px;
}

.pins-bowls-section .section-container {
    padding: 20px 40px 20px 40px;
}

.big-boldr-section .section-container {
    padding: 20px 40px 40px 40px;
}

.brand-story-blob-wrapper {
    position: absolute;
    top: -120px;
    right: -130px;
    width: 48vw;
    max-width: 580px;
    pointer-events: none;
    z-index: 1;
}

.brand-story-bg-blob {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-story-pdf-content {
    max-width: 62%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 2;
}

.brand-story-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pdf-main-title {
    font-family: var(--font-logo);
    font-size: 3.8rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}

.pdf-section-title {
    font-family: var(--font-logo);
    font-size: 3.2rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0;
}

.pdf-body-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    font-weight: 400;
    margin: 0;
}

/* Product grid replacements */
.pins-bowls-section, .big-boldr-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.pdf-product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
    width: 100%;
}

.pdf-product-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.pdf-product-grid.reverse .pdf-product-image {
    order: 2;
}

.pdf-product-grid.reverse .pdf-product-info {
    order: 1;
}

.pdf-product-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.pdf-product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pdf-product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdf-product-title {
    font-family: var(--font-logo);
    font-size: 2.8rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .brand-story-pdf-content {
        max-width: 80%;
    }
    .pdf-main-title {
        font-size: 3.2rem;
    }
    .pdf-section-title {
        font-size: 2.6rem;
    }
    .pdf-product-title {
        font-size: 2.3rem;
    }
    .pdf-product-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .brand-story-section {
        padding: 0;
    }
    .brand-story-section .section-container {
        padding: 40px 24px 10px 24px;
    }
    .pins-bowls-section .section-container,
    .big-boldr-section .section-container {
        padding: 20px 24px;
    }
    .brand-story-pdf-content {
        max-width: 100%;
        gap: 30px;
    }
    .brand-story-blob-wrapper {
        width: 60vw;
        top: -60px;
        right: -60px;
        opacity: 0.25;
    }
    .pdf-product-grid, .pdf-product-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pdf-product-grid.reverse .pdf-product-image {
        order: 1;
    }
    .pdf-product-grid.reverse .pdf-product-info {
        order: 2;
    }
}

@media (max-width: 480px) {
    .brand-story-section .section-container {
        padding: 30px 16px 10px 16px;
    }
    .pins-bowls-section .section-container,
    .big-boldr-section .section-container {
        padding: 15px 16px;
    }
    .pdf-main-title {
        font-size: 2.4rem;
    }
    .pdf-section-title {
        font-size: 2.0rem;
    }
    .pdf-product-title {
        font-size: 1.8rem;
    }
    .brand-story-pdf-content {
        gap: 24px;
    }
}
