/* ============================================
   BrandedUK 2 - Main Stylesheet
   Additional styles for brandeduk.com 2
   ============================================ */

/* === CSS Variables === */
:root {
    --purple: #6B21A8;
    --purple-dark: #581c87;
    --purple-light: #a855f7;
    --teal: #0D9488;
    --teal-dark: #0f766e;
    --green-whatsapp: #25D366;
    --navy: #1e3a5f;
    --orange: #ea580c;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
    --black: #000000;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    min-height: 100vh;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header.centered {
    justify-content: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.see-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    transition: color 0.2s;
}

.see-all-link:hover {
    color: var(--purple-dark);
}

/* ============================================
   HERO 2 - NEON BANNERS SECTION
   ============================================ */

.hero-banners-section {
    background: transparent;
    padding: 30px 40px;
    position: relative;
}

.hero-banners-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
    border-radius: 16px;
    overflow: hidden;
}

.hero-banner--active {
    transform: translateX(0);
    z-index: 1;
}

.hero-banner--exit {
    transform: translateX(-100%);
    z-index: 0;
}

/* Banner 2 - Neon Get in Touch */
#heroBanner2 {
    background: #000;
}

/* Banner 3 - Make Awesome */
#heroBanner3 {
    background: #fff;
}

/* Banner 4 - Branded Yellow/Black Bouncing */
#heroBanner4 {
    background: #f9ca24;
}

.hero-bounce-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9ca24;
}

.hero-bounce-headline {
    font-family: 'Lexend Deca', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 10vw, 160px);
    line-height: 1;
    color: #000;
}

.hero-bounce-char {
    display: inline-block;
    transform-origin: 100% 100%;
    animation: heroBrandedBounce 2.5s cubic-bezier(0, 0.56, 0.64, 1) infinite;
    animation-delay: calc(var(--char-index) * 0.15s);
    will-change: transform;
}

@keyframes heroBrandedBounce {
    0%,
    20% {
        transform: translateY(0) scaleY(1);
    }
    45% {
        transform: translateY(-20%) scaleY(1);
    }
    60% {
        transform: translateY(0) scaleY(0.95);
    }
    75% {
        transform: translateY(-35%) scaleY(1);
    }
    100% {
        transform: translateY(0) scaleY(1);
    }
}

/* Neon Font */
@font-face {
    font-family: 'Neon';
    src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/707108/neon.ttf') format('truetype');
}

/* Neon Container - Get in Touch */
.neon-container {
    text-align: center;
    cursor: pointer;
    padding: 20px 40px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.neon-container:hover {
    transform: scale(1.02);
}

.neon-text {
    font-family: 'Neon', 'Poppins', sans-serif;
    font-weight: 400;
    color: #FB4264;
    font-size: 120px;
    line-height: 1.1;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #F40A35, 0 0 20px #F40A35, 0 0 40px #F40A35, 0 0 80px #F40A35;
    animation: neonFlicker 1.5s ease-in-out infinite;
}

.flux-text {
    font-family: 'Neon', 'Poppins', sans-serif;
    font-weight: 400;
    color: #426DFB;
    font-size: 120px;
    line-height: 1.1;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #2356FF, 0 0 20px #2356FF, 0 0 40px #2356FF, 0 0 80px #2356FF;
    animation: fluxGlow 2s linear infinite;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914;
        color: #FED128;
    }
    50% {
        text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A;
        color: #806914;
    }
}

@keyframes fluxGlow {
    0%, 100% {
        text-shadow: 0 0 1vw #1041FF, 0 0 3vw #1041FF, 0 0 10vw #1041FF, 0 0 10vw #1041FF, 0 0 .4vw #8BFDFE, .5vw .5vw .1vw #147280;
        color: #28D7FE;
    }
    50% {
        text-shadow: 0 0 .5vw #082180, 0 0 1.5vw #082180, 0 0 5vw #082180, 0 0 5vw #082180, 0 0 .2vw #082180, .5vw .5vw .1vw #0A3940;
        color: #146C80;
    }
}

/* Hero Text Container - Make Awesome */
.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 40px;
    gap: 8px;
}

.hero-text-make,
.hero-text-awesome {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
}

.hero-flip-wrapper {
    position: relative;
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 400px;
}

.hero-flip-word {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-30px);
    animation: flipWordDrop 9s linear infinite;
}

.flip-work {
    background: #38bdf8;
    animation-delay: 0s;
}

.flip-lifestyle {
    background: #4ade80;
    animation-delay: 3s;
}

.flip-everything {
    background: #f87171;
    animation-delay: 6s;
}

/* Drop animation: entra dall'alto, esce verso il basso */
@keyframes flipWordDrop {
    0%, 3% {
        opacity: 0;
        transform: translateY(-30px);
    }
    8%, 28% {
        opacity: 1;
        transform: translateY(0);
    }
    33%, 100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Banner Dots Navigation */
.hero-banner-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 24px 0 0;
    position: relative;
    z-index: 5;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--purple);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot:hover {
    background: rgba(124, 58, 237, 0.15);
}

.banner-dot--active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--purple);
    border: 2px solid var(--purple);
    transform: scale(1.1);
}

/* ============================================
   QUICK ACTIONS - DESKTOP
   ============================================ */

.quick-actions-desktop {
    background: var(--gray-50);
    padding: 24px 40px;
}

.quick-actions-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.quick-actions-desktop .quick-action-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.quick-actions-desktop .quick-action-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.quick-actions-desktop .quick-action-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-actions-desktop .quick-action-icon svg {
    width: 24px;
    height: 24px;
}

.quick-actions-desktop .upload-card .quick-action-icon {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white);
}

.quick-actions-desktop .call-card .quick-action-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #14b8a6 100%);
    color: var(--white);
}

.quick-actions-desktop .quick-action-content {
    flex: 1;
}

.quick-actions-desktop .quick-action-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.quick-actions-desktop .quick-action-content p {
    font-size: 14px;
    color: var(--gray-500);
}

.quick-actions-desktop .action-arrow {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.quick-actions-desktop .quick-action-card:hover .action-arrow {
    transform: translateX(4px);
    color: var(--purple);
}

/* ============================================
   CATEGORIES SECTION - MARQUEE
   ============================================ */

.categories-section {
    padding: 60px 0 40px;
    background: var(--white);
    overflow: hidden;
}

.categories-section {
    padding: 60px 40px;
    background: var(--white);
    overflow: hidden;
}

.categories-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.categories-marquee {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    border-radius: 16px;
}

.categories-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollCategories 30s linear infinite;
    will-change: transform;
}

.categories-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCategories {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.categories-section .category-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-width: 120px;
}

.categories-section .category-card:hover {
    background: var(--white);
    border-color: var(--purple);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.categories-section .category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-section .category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.categories-section .category-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.categories-section .category-card:hover span {
    color: var(--purple);
}

/* ============================================
   BEST SELLERS / PRODUCTS
   ============================================ */

.bestsellers-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-100);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.product-badge.bestseller {
    background: var(--purple);
    color: var(--white);
}

.product-badge.new {
    background: var(--teal);
    color: var(--white);
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 12px;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: var(--purple);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.product-btn:hover {
    background: var(--purple-dark);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    background: var(--gray-50);
    padding: 0 40px;
    overflow: hidden;
}

.trust-truck-row {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.trust-truck-label-row {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 8px;
}

.trust-truck-label {
    background: rgba(255,255,255,0.95);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Speedy Truck Full Width Animation - Loop Wrapper */
.loop-wrapper {
    margin: 0 auto;
    position: relative;
    display: block;
    width: 100%;
    max-width: 1400px;
    height: 120px;
    overflow: hidden;
    border-bottom: 3px solid #fff;
    border-radius: 16px;
    background: linear-gradient(180deg, #7c3aed 0%, #6b21a8 100%);
    color: #fff;
}

.loop-wrapper .mountain {
    position: absolute;
    right: -900px;
    bottom: -20px;
    width: 2px;
    height: 2px;
    box-shadow: 
        0 0 0 50px #8b5cf6,
        60px 50px 0 70px #8b5cf6,
        90px 90px 0 50px #8b5cf6,
        250px 250px 0 50px #8b5cf6,
        290px 320px 0 50px #8b5cf6,
        320px 400px 0 50px #8b5cf6;
    transform: rotate(130deg);
    animation: mtn 20s linear infinite;
}

.loop-wrapper .hill {
    position: absolute;
    right: -900px;
    bottom: -50px;
    width: 400px;
    border-radius: 50%;
    height: 20px;
    box-shadow: 
        0 0 0 50px #8b5cf6,
        -20px 0 0 20px #8b5cf6,
        -90px 0 0 50px #8b5cf6,
        250px 0 0 50px #8b5cf6,
        290px 0 0 50px #8b5cf6,
        620px 0 0 50px #8b5cf6;
    animation: hill-anim 4s 2s linear infinite;
}

.loop-wrapper .tree,
.loop-wrapper .tree:nth-child(2),
.loop-wrapper .tree:nth-child(3) {
    position: absolute;
    height: 70px; 
    width: 25px;
    bottom: 0;
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/tree.svg) no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.loop-wrapper .rock {
    margin-top: -17%;
    height: 2%; 
    width: 2%;
    bottom: -2px;
    border-radius: 20px;
    position: absolute;
    background: #fff;
}

.loop-wrapper .truck,
.loop-wrapper .wheels {
    transition: all ease;
    width: 85px;
    margin-right: -42px;
    bottom: 0px;
    right: 50%;
    position: absolute;
}

.loop-wrapper .truck {
    background: url(../images/truck.svg) no-repeat;
    background-size: contain;
    height: 60px;
}

.loop-wrapper .truck::before {
    content: " ";
    position: absolute;
    width: 25px;
    box-shadow:
        -30px 28px 0 1.5px #fff,
        -35px 18px 0 1.5px #fff;
}

.loop-wrapper .wheels {
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/wheels.svg) no-repeat;
    background-size: contain;
    height: 15px;
    margin-bottom: 0;
}

.loop-wrapper .truck { animation: truck-anim 4s 0.080s ease infinite; }
.loop-wrapper .wheels { animation: truck-anim 4s 0.001s ease infinite; }
.loop-wrapper .truck::before { animation: wind-anim 1.5s 0.000s ease infinite; }

.loop-wrapper .tree { animation: tree-anim 3s 0.000s linear infinite; }
.loop-wrapper .tree:nth-child(2) { animation: tree2-anim 2s 0.150s linear infinite; }
.loop-wrapper .tree:nth-child(3) { animation: tree3-anim 8s 0.050s linear infinite; }
.loop-wrapper .rock { animation: rock-anim 4s -0.530s linear infinite; }

@keyframes tree-anim {
    0% { transform: translateX(1500px); }
    100% { transform: translateX(-50px); }
}
@keyframes tree2-anim {
    0% { transform: translateX(1000px); }
    100% { transform: translateX(-50px); }
}
@keyframes tree3-anim {
    0% { transform: translateX(2000px); }
    100% { transform: translateX(-50px); }
}
@keyframes rock-anim {
    0% { right: -50px; }
    100% { right: 101%; }
}
@keyframes truck-anim {
    0% { }
    6% { transform: translateY(0px); }
    7% { transform: translateY(-5px); }
    9% { transform: translateY(0px); }
    10% { transform: translateY(-1px); }
    11% { transform: translateY(0px); }
    100% { }
}
@keyframes wind-anim {
    0% { }
    50% { transform: translateY(3px); }
    100% { }
}
@keyframes mtn {
    100% { transform: translateX(-2000px) rotate(130deg); }
}
@keyframes hill-anim {
    100% { transform: translateX(-2000px); }
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    background: var(--purple);
    max-width: 1400px;
    margin: 20px auto 0;
    border-radius: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.trust-badge svg {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.trust-badge span {
    font-size: 15px;
    font-weight: 500;
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
    background: transparent;
    padding: 48px 40px;
}

.promo-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 48px 40px;
    border-radius: 16px;
}

.promo-banner h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.promo-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.promo-banner-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--teal-dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.promo-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */

.brands-section {
    padding: 60px 40px 40px;
    background: var(--white);
    overflow: hidden;
}

.brands-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brands-marquee {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 12px 0;
    border-radius: 12px;
}

.brands-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.brands-track-right {
    animation: scrollRight 40s linear infinite;
}

.brands-track-left {
    animation: scrollLeft 40s linear infinite;
}

@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.brands-section .brand-card {
    flex-shrink: 0;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brands-section .brand-card:hover {
    background: linear-gradient(135deg, #eef0f3 0%, #dfe3ea 100%);
    border-color: rgba(17, 24, 39, 0.14);
    color: var(--gray-800);
}

.brands-section .brand-card .brand-logo-img {
    display: block;
    height: 28px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) saturate(0) contrast(1.2) brightness(0.92);
    mix-blend-mode: multiply;
    opacity: 0.92;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.embroidery-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: var(--white);
}

.print-icon {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    color: var(--white);
}

.bulk-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: var(--white);
}

.design-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #14B8A6 100%);
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Category Squares - 3D style like mobile */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-square {
    min-width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    transition: all 0.2s ease;
}

.faq-square:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-square.active {
    border-color: var(--purple);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.faq-square img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.faq-square span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    transition: color 0.3s ease;
}

.faq-square.active span {
    color: var(--purple);
}

/* FAQ Content */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Panels - Accordion style */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-panel.open {
    max-height: 2000px;
}

/* FAQ Row - Accordion item */
.faq-row {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    padding: 20px 60px 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

.faq-row.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* Arrow Circle - Purple pointing DOWN when closed */
.faq-question::after {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #6b21a8;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b21a8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
        no-repeat center;
    transition: all 0.3s ease;
}

/* Grey pointing UP when open */
.faq-row.open .faq-question::after {
    border-color: #9ca3af;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E")
        no-repeat center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.contact-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-content p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

.contact-btn.phone {
    background: var(--purple);
    color: var(--white);
}

.contact-btn.phone:hover {
    background: var(--purple-light);
}

.contact-btn.whatsapp {
    background: var(--green-whatsapp);
    color: var(--white);
}

.contact-btn.whatsapp:hover {
    background: #20BD5C;
}

.contact-btn.email {
    background: var(--white);
    color: var(--gray-900);
}

.contact-btn.email:hover {
    background: var(--gray-100);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-about p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--purple);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.footer-contact strong {
    color: var(--gray-300);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.2s;
}

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

/* ============================================
   RESPONSIVE - Desktop specific
   ============================================ */

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges-row {
        flex-wrap: wrap;
        gap: 24px;
    }
}