/* ===================================
   Global Industrial Supplies - Styles
   =================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Primary Colors */
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E85A2A;
    --primary-orange-light: #FF8B5C;

    /* Secondary Colors */
    --navy-dark: #0F172A;
    --navy: #1E293B;
    --navy-light: #334155;

    /* Accent Colors */
    --steel-grey: #64748B;
    --steel-light: #94A3B8;
    --steel-lighter: #CBD5E1;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-grey: #E2E8F0;

    /* Functional Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, #FF8C42 100%);
    --gradient-dark: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: var(--section-padding);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--steel-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 6px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy-dark);
    border: 2px solid var(--light-grey);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-catalogue {
    background: var(--navy);
    color: var(--white);
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    font-size: 0.95rem;
}

.btn-catalogue:hover:not(.disabled) {
    background: var(--primary-orange);
}

/* Price List Button - Purple/Violet theme to distinguish from catalogue */
.btn-pricelist {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    color: var(--white);
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    font-size: 0.95rem;
}

.btn-pricelist:hover:not(.disabled) {
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-pricelist.disabled,
.btn-catalogue.disabled {
    background: var(--white);
    color: var(--steel-grey);
    border: 2px solid var(--light-grey);
    cursor: not-allowed;
    opacity: 1;
}

/* ===================================
   Navigation - Standard Fixed Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px 0 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    color: var(--steel-lighter);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--primary-orange);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--steel-light);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* Hero Brands Carousel */
.hero-brands {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-brands-label {
    text-align: center;
    color: var(--steel-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-brands-carousel {
    overflow: hidden;
    padding: 10px 0;
}

.hero-brands-track {
    display: flex;
    gap: 20px;
    animation: heroScroll 30s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.hero-brand-card {
    flex-shrink: 0;
    width: 130px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.hero-brand-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-brand-card img {
    max-height: 35px;
    max-width: 80px;
    object-fit: contain;
}

.hero-brand-card span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

.hero-brand-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-brand-text .brand-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.hero-brand-text span:last-child {
    color: var(--steel-light);
}

@keyframes heroScroll {
    0% {
        transform: translateX(0) translateZ(0);
    }

    100% {
        transform: translateX(calc(-150px * 10)) translateZ(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.hero-scroll a:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* ===================================
   Brands Strip (Below Hero) - Compact Version
   =================================== */
.section-compact {
    padding: 50px 0 60px;
}

.section-header-compact {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-compact {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-top: 15px;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--off-white);
}

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

.about-content h3 {
    font-size: 1.75rem;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.about-content>p {
    color: var(--steel-grey);
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--steel-grey);
}

.about-image {
    position: relative;
}

.image-card {
    background: var(--gradient-dark);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}

.image-card i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    position: relative;
}

.image-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
}

.image-card p {
    color: var(--steel-light);
    position: relative;
}

/* ===================================
   Products Section
   =================================== */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-grey);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--primary-orange);
    transition: var(--transition-base);
    overflow: hidden;
}

.product-icon i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-grey) 100%);
    border-radius: var(--radius-full);
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-full);
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-card:hover .product-icon i {
    background: var(--gradient-primary);
    color: var(--white);
}

.product-card h3 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.product-card p {
    color: var(--steel-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
}

.product-link:hover {
    gap: 12px;
}

/* ===================================
   Brands Section
   =================================== */
.brands {
    background: var(--navy-dark);
    overflow: hidden;
}

.brands .section-tag {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--primary-orange);
}

.brands .section-title {
    color: var(--white);
}

.brands .section-subtitle {
    color: var(--steel-light);
}

.brands-carousel {
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.brand-card {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    transition: var(--transition-base);
}

.brand-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.brand-card img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
}

.brand-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* Text-based brand cards (for brands without logo images) */
.brand-card.brand-text-only {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
}

.brand-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalogue-brand-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.catalogue-brand-text span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

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

    100% {
        transform: translateX(calc(-220px * 11));
    }
}

/* ===================================
   Catalogue Section
   =================================== */
.catalogue {
    background: var(--off-white);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.catalogue-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--light-grey);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.catalogue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.catalogue-brand {
    width: 100px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 15px;
}

.catalogue-brand img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.catalogue-card h3 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.catalogue-card p {
    color: var(--steel-grey);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    min-height: 40px;
}

.catalogue-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--navy);
}

.catalogue-note i {
    color: var(--primary-orange);
    font-size: 1.25rem;
}

/* Catalogue Dropdown System */
.catalogue-dropdown {
    overflow: visible;
}

.catalogue-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.catalogue-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.catalogue-dropdown-menu {
    display: none;
    background: var(--off-white);
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-md);
    margin-top: 12px;
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
}

.catalogue-dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.25s ease;
}

.catalogue-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--light-grey);
    transition: var(--transition-base);
    background: var(--white);
}

.catalogue-dropdown-menu a:last-child {
    border-bottom: none;
}

.catalogue-dropdown-menu a:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.catalogue-dropdown-menu a i {
    color: var(--primary-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.catalogue-dropdown-menu a:hover i {
    color: var(--white);
}

/* Custom scrollbar for dropdown */
.catalogue-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.catalogue-dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 3px;
}

.catalogue-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--steel-grey);
    border-radius: 3px;
}

.catalogue-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.info-card {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--steel-grey);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.info-content a {
    color: var(--steel-grey);
}

.info-content a:hover {
    color: var(--primary-orange);
}

.whatsapp-card {
    background: #25D366;
    padding: 0;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-card:hover {
    background: #20BA5C;
    transform: translateX(5px);
}

.map-container {
    background: var(--off-white);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    border-radius: var(--radius-sm);
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.map-link:hover {
    background: var(--primary-orange);
}

.map-placeholder {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-sm);
    color: var(--white);
    margin-bottom: 12px;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.map-placeholder h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--steel-light);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--steel-grey);
    margin-top: 10px;
}

.form-note i {
    color: var(--primary-orange);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--primary-orange);
}

.footer-brand p {
    color: var(--steel-light);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    color: var(--steel-light);
    font-size: 0.95rem;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--steel-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-orange);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--navy-light);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--steel-grey);
    font-size: 0.9rem;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(15, 23, 42, 0.9);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 25px 30px;
        gap: 15px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-base);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 25px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle span {
        background: var(--white);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 90px 0 30px;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-badge {
        padding: 8px 15px;
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Hero Brands Carousel Mobile */
    .hero-brands {
        margin-top: 10px;
        padding: 0;
        overflow: hidden;
    }

    .hero-brands-label {
        font-size: 0.7rem;
        margin-bottom: 12px;
        padding: 0 20px;
    }

    .hero-brands-carousel {
        overflow: hidden;
        width: 100%;
    }

    .hero-brand-card {
        width: 90px;
        height: 65px;
        padding: 8px;
        flex-shrink: 0;
    }

    .hero-brand-card img {
        max-height: 25px;
        max-width: 55px;
    }

    .hero-brand-card span {
        font-size: 0.6rem;
    }

    .hero-brands-track {
        gap: 10px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Brands Strip Mobile */
    .brands-strip {
        padding: 12px 0;
    }

    .brands-strip-container {
        flex-direction: column;
        gap: 10px;
    }

    .brands-strip-label {
        font-size: 0.75rem;
    }

    .strip-brand {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* About Mobile */
    .about-content h3 {
        font-size: 1.35rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    .image-card {
        padding: 40px 25px;
    }

    .image-card i {
        font-size: 3rem;
    }

    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    /* Brands Section Mobile */
    .brands {
        padding: 60px 0;
    }

    .brands-track {
        gap: 15px;
    }

    .brand-card {
        width: 130px;
        height: 90px;
        padding: 15px;
    }

    .brand-card img {
        max-height: 40px;
    }

    .brand-card span {
        font-size: 0.75rem;
    }

    .brand-logo-text {
        font-size: 0.9rem;
    }

    /* Catalogue Mobile */
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .catalogue-card {
        padding: 20px 15px;
    }

    .catalogue-brand {
        width: 70px;
        height: 60px;
        margin-bottom: 15px;
    }

    .catalogue-card h3 {
        font-size: 1rem;
    }

    .catalogue-card p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .btn-catalogue {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    /* Dropdown menu mobile styles */
    .catalogue-dropdown-menu {
        margin-top: 10px;
        max-height: 200px;
    }

    .catalogue-dropdown-menu a {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .catalogue-note {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 0.85rem;
    }

    /* Contact Mobile */
    .contact-grid {
        gap: 30px;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .info-content h4 {
        font-size: 0.9rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .map-container {
        padding: 12px;
    }

    .map-container iframe {
        height: 180px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-contact p {
        justify-content: center;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Back to Top Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        font-size: 0.9rem;
    }

    .nav-logo i {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    /* Catalogue 1 column on very small screens */
    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-card {
        padding: 25px 20px;
    }

    .catalogue-brand {
        width: 80px;
        height: 65px;
    }

    /* Footer stacked */
    .footer-links ul {
        gap: 10px;
    }
}