/* ============================================
   DURGA MILL - E-COMMERCE DESIGN SYSTEM
   Modern, Vibrant, Mobile-First
   Mill-3 Design + Mill-4 Layout
   ============================================ */

/* ============ IMPORTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
    /* Primary Colors */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;

    /* Secondary Colors */
    --secondary: #1E3A8A;
    --secondary-dark: #152C6B;
    --secondary-light: #2E4A9A;

    /* Accent Colors */
    --accent: #10B981;
    --accent-dark: #059669;
    --accent-light: #34D399;

    /* Warm Colors */
    --warning: #F59E0B;
    --warning-light: #FCD34D;

    /* Neutrals */
    --dark: #1F2937;
    --gray-800: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F1F5F9;
    --light: #F8FAFC;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--warning) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #10B981 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--gray-800) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

    /* 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-color: 0 10px 40px rgba(255, 107, 53, 0.3);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 80px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ============ UTILITIES ============ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.grid {
    display: grid;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
    display: block;
}

.mobile-nav .dropdown-title {
    padding: 15px 0 5px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.mobile-nav .dropdown-links {
    padding-left: 1rem;
}

.mobile-nav .dropdown-links a {
    display: block;
    padding: 10px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #111827 0%, #1e3a8a 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Video Background */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(17 24 39 / 47%) 0%, rgb(30 58 138 / 47%) 100%);
    z-index: 1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    height: 100%;
}

/* Decorative Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: #f97316;
    border-radius: 50%;
    opacity: 0.9;
    animation: float 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 50%;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title span {
    display: block;
    color: #f97316;
    background: none;
    -webkit-text-fill-color: inherit;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background: #f97316;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.hero-buttons .btn-outline {
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: #0284c7;
}

/* Hero Image Side */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-product-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float-product 5s ease-in-out infinite;
}

@keyframes float-product {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: #f97316;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive hero */
@media (max-width: 992px) {
    .hero {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 0;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        text-align: center;
    }

    .hero-product-image {
        max-height: 280px;
    }

    .hero::before {
        width: 50px;
        height: 50px;
        top: 5%;
        left: 3%;
    }

    .hero::after {
        width: 35px;
        height: 35px;
    }

    .hero-image-wrapper::before {
        width: 250px;
        height: 250px;
    }

    .hero-image-wrapper::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ============ CATEGORIES SECTION ============ */
.categories {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .categories-grid { grid-template-columns: 1fr; }
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.8) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    padding: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: -40px;
    position: relative;
    box-shadow: var(--shadow-color);
}

.category-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.category-link:hover {
    gap: 0.8rem;
}

/* ============ PRODUCTS SECTION ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--primary);
}

.product-badge.featured {
    background: var(--warning);
    color: var(--dark);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 10px;
    font-size: 0.85rem;
}

/* ============ ABOUT SECTION ============ */
.about {
    background: var(--gradient-dark);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-title {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============ CTA / NEWSLETTER ============ */
.cta {
    background: var(--gradient-primary);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--dark);
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

/* ============ FOOTER (Pidilite Style) ============ */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand .logo,
.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.15);
}

.footer-brand p {
   
    line-height: 1.7;
    margin-top: 0.5rem;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
   
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--warning);
}

/* Footer Middle Section */
.footer-middle {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 0.85rem;
    opacity: 0.8;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--warning);
}

/* Footer Responsive */
@media (max-width: 1024px) {

    .footer-top,
    .footer-middle {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {

    .footer-top,
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .footer-top,
    .footer-middle {
        grid-template-columns: 1fr;
    }
}

/* ============ PAGE HEADERS ============ */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============ PRODUCT DETAIL ============ */
.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-info h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-info .product-category {
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-features h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.product-features ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.product-features ul li:last-child {
    border-bottom: none;
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.modal-close {
    width: 36px;
    height: 36px;
    background: var(--light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-body {
    padding: 1.5rem;
}

/* ============ FORMS ============ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--light);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* ============ MEDIA PAGE ============ */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.media-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.media-image {
    height: 200px;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.media-card:hover .media-image img {
    transform: scale(1.05);
}

.media-content {
    padding: 1.5rem;
}

.media-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.media-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============ FILTER TABS ============ */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-tab {
    padding: 10px 24px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============ LOGO (Mill-4 Layout) ============ */
.logo .logo-bold {
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo .logo-light {
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 4px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

/* ============ MEGA MENU ============ */
.mega-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-200);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: flex;
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--white);
}

.mega-sidebar {
    width: 320px;
    background: var(--light);
    padding: 3rem 2rem;
    border-right: 1px solid var(--gray-200);
}

.mega-info-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mega-info-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mega-content-area-new {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.mega-col-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-col-links li {
    margin-bottom: 0.75rem;
}

.mega-col-links a {
    font-size: 1rem;
    color: var(--gray-800);
    transition: color 0.2s ease;
    font-weight: 500;
}

.mega-col-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.mega-col-links a.see-more {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ============ FULLSCREEN HERO WITH BACKGROUND IMAGE ============ */
.hero-modern-clean {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/banner.webp') center/cover no-repeat;
}

.hero-modern-clean::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    z-index: 0;
}

.hero-modern-clean::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,58,138,0.75) 50%, rgba(255,107,53,0.3) 100%);
    z-index: 1;
}

.hero-modern-clean .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-modern-clean .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    width: fit-content;
    letter-spacing: 0.5px;
}

.hero-modern-clean .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-modern-clean .hero-title span {
    color: #ff8a50;
    display: inline;
}

.hero-modern-clean .hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero-modern-clean .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-modern-clean .hero-buttons .btn-primary {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}

.hero-modern-clean .hero-buttons .btn-outline {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.35) !important;
    color: var(--white) !important;
    background: transparent;
}

.hero-modern-clean .hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6) !important;
}

.hero-clean-brands {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    width: 100%;
    max-width: 700px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-clean-brands img {
    height: 32px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.92);
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.hero-clean-brands img:hover {
    opacity: 1;
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-modern-clean .container > * {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-modern-clean .container > *:nth-child(2) { animation-delay: 0.1s; }
.hero-modern-clean .container > *:nth-child(3) { animation-delay: 0.2s; }
.hero-modern-clean .container > *:nth-child(4) { animation-delay: 0.3s; }
.hero-modern-clean .container > *:nth-child(5) { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .hero-modern-clean { min-height: 55vh; padding: 100px 0 40px; }
    .hero-modern-clean .hero-title { font-size: 2.2rem; }
    .hero-modern-clean .hero-buttons { flex-direction: column; }
    .hero-clean-brands { flex-wrap: wrap; gap: 0.75rem; }
    .hero-clean-brands img { height: 26px; padding: 5px 10px; }
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    cursor: pointer;
    animation: float 2s ease-in-out infinite;
    z-index: 20;
}

/* ============ TRUST BADGES STRIP ============ */
.stats-bar {
    padding: 60px 0;
    background: var(--light);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-badges {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-badge span {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

/* ============ BRANDS SECTION (Homepage) ============ */
.brands-section {
    background: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Brand Image Card */
.brand-img-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.brand-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
}

.brand-img-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
    z-index: 2;
    pointer-events: none;
}

.brand-img-card:hover::before {
    left: 120%;
}

.brand-img-card .brand-img-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.brand-img-card .brand-img-wrap img {
    max-height: 120px;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brand-img-card:hover .brand-img-wrap img {
    transform: scale(1.08);
}

.brand-img-card .brand-img-info {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.brand-img-card .brand-img-info h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.brand-img-card .brand-img-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.brand-img-card .brand-img-info .brand-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ============ TRUSTED BRANDS SLIDER ============ */
.trusted-brands {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.brand-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.brand-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 40s linear infinite;
    gap: 4rem;
}

.brand-item {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); }
}

/* ============ CATEGORIES STRIP (Homepage) ============ */
.categories-strip {
    padding: 80px 0;
    background: var(--white);
}

.categories-strip-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories-strip-scroll::-webkit-scrollbar {
    display: none;
}

.cat-strip-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.cat-strip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.cat-strip-card .cat-strip-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.cat-strip-card .cat-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-strip-card:hover .cat-strip-img img {
    transform: scale(1.08);
}

.cat-strip-card .cat-strip-img .cat-strip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.85));
}

.cat-strip-card .cat-strip-img .cat-strip-overlay h3 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.cat-strip-card .cat-strip-info {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-strip-card .cat-strip-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.cat-strip-card .cat-strip-info .cat-strip-arrow {
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cat-strip-card:hover .cat-strip-info .cat-strip-arrow {
    transform: translateX(4px);
}

/* ============ STATS BAR GRID ============ */
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-bar-item .stats-bar-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stats-bar-item .stats-bar-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* ============ ICON BOXES ============ */
.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    position: relative;
    transition: all 0.4s ease;
}

.icon-box.teal {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent);
}

.icon-box.gold {
    background: rgba(245, 158, 11, 0.12);
    color: var(--warning);
}

.icon-box::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: inherit;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.icon-box:hover::after {
    opacity: 1;
}

/* ============ CATEGORY BRAND BADGE ============ */
.cat-brand-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 35px;
    background: var(--white);
    padding: 5px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.cat-brand-badge img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* ============ PRODUCT BRAND BADGE ============ */
.prod-brand-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 30px;
    background: var(--white);
    padding: 3px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.prod-brand-badge img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* ============ PRODUCT DETAIL HERO ============ */
.product-detail-hero {
    padding: 160px 0 100px;
    background: var(--gradient-dark);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.4) 100%);
    z-index: 1;
}

.product-detail-hero .container {
    position: relative;
    z-index: 2;
}

.product-detail-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.product-detail-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.product-detail-hero .hero-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
}

.detail-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.detail-stats .stat-item {
    text-align: left;
}

/* ============ BRAND STORY SECTION ============ */
.brand-story {
    padding: 80px 0;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-story-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.brand-story-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.brand-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.brand-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ============ HIGHLIGHTS GRID ============ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.highlight-card .highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.highlight-card h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============ PRODUCT RANGE GRID ============ */
.product-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-range-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.product-range-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-range-card .range-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--light);
}

.product-range-card .range-img img {
    max-height: 130px;
    object-fit: contain;
}

.product-range-card .range-info {
    padding: 1rem;
}

.product-range-card .range-info h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.product-range-card .range-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============ BRANDS PAGE LAYOUT ============ */
.brands-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.brands-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 12px 18px 12px 45px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--light);
    font-size: 0.95rem;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.filter-group-title {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.brand-grid-pidilite {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .brand-grid-pidilite { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .brand-grid-pidilite { grid-template-columns: 1fr; }
}

.brand-card-white {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: block;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 170px;
    padding-bottom: 3rem;
}

.brand-card-white:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.brand-logo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrap img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .brands-layout { grid-template-columns: 1fr; }
    .brands-sidebar { position: static; margin-bottom: 2rem; }
}

/* ============ BRANDS HERO ============ */
.brands-hero {
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.6) 100%);
    z-index: 1;
}

.brands-hero .container {
    position: relative;
    z-index: 2;
}

.brands-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.brands-hero h1 span {
    color: var(--primary-light);
}

.brands-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ BRAND DETAIL GRID ============ */
.brand-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.brand-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: block;
}

.brand-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.brand-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.brand-logo-large {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.brand-info h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.brand-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.brand-info p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about-grid,
    .product-detail-grid,
    .contact-grid,
    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top,
    .footer-middle {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px;
    }

    .nav-links,
    .header .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .categories-grid,
    .products-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .detail-stats {
        gap: 2rem;
    }

    .brand-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .brand-logo-large {
        margin: 0 auto;
    }

    .brand-detail-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .modal {
        width: 95%;
        margin: 20px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stats-bar-item .stats-bar-number {
        font-size: 2rem;
    }

    .footer-top,
    .footer-middle {
        grid-template-columns: 1fr;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease forwards;
}

/* Stagger animation delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ GRADIENT TEXT ============ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ GLASSMORPHISM ============ */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============ FEATURED PRODUCTS SECTION ============ */
.featured-products {
    padding: 80px 0;
    background: var(--white);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.featured-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.featured-product-card .fp-image {
    height: 200px;
    overflow: hidden;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.featured-product-card .fp-image img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.featured-product-card:hover .fp-image img {
    transform: scale(1.08);
}

.featured-product-card .fp-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-product-card .fp-content {
    padding: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.featured-product-card .fp-brand {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.featured-product-card .fp-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.featured-product-card .fp-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .featured-products-grid { grid-template-columns: 1fr; }
}

/* ============ CREATIVE TEXT LOGO ============ */
.logo-text {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
}

.logo-text .logo-d {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.logo-text .logo-main {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-text .logo-dot {
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 0;
    margin: 0 1px;
}

.logo-text .logo-sub {
    color: var(--gray-500);
    font-weight: 400;
    font-size: 0.65em;
    letter-spacing: 3px;
    margin-left: 4px;
}

.footer .logo-text .logo-main,
.footer .logo-text .logo-d,
.footer .logo-text .logo-sub {
    color: var(--white);
}

.footer .logo-text .logo-dot {
    color: var(--primary);
}

/* ============ INDUSTRIES SERVED SECTION ============ */
.industries-served {
    padding: 80px 0;
    background: var(--secondary);
    color: var(--white);
}

.industries-served .section-title {
    color: var(--white);
}

.industries-served .section-title span {
    color: #ff8a50;
}

.industries-served .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.industry-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--primary);
    transform: translateY(-6px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,53,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-light, #ff8a50);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--primary);
    color: var(--white);
}

.industry-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.industry-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .industries-grid { grid-template-columns: 1fr; }
}

/* ============ PRODUCT PORTFOLIO GRID ============ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-icon {
    background: var(--primary);
    color: var(--white);
}

.portfolio-card h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.portfolio-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* ============ ABOUT PAGE - SUPPLIERS GRID ============ */
.about-suppliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.supplier-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.supplier-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.supplier-card i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.supplier-card span {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-suppliers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .about-suppliers-grid { grid-template-columns: 1fr; }
}

/* ============ ABOUT PAGE - STRENGTHS GRID ============ */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.strength-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.strength-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.strength-item:hover .strength-icon {
    background: var(--primary);
    color: var(--white);
}

.strength-item h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.strength-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .strengths-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .strengths-grid { grid-template-columns: 1fr; }
}

/* ============ ABOUT PAGE - INFRASTRUCTURE GRID ============ */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.infra-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.infra-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.infra-card:hover .infra-icon {
    background: var(--primary);
    color: var(--white);
}

.infra-card h4 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.infra-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .infra-grid { grid-template-columns: 1fr; }
}

/* ============ ABOUT PAGE - TEAM GRID ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-role {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.team-role:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.team-role i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.team-role span {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ============ AWARDS SECTION ============ */
.awards-section {
    background: var(--light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.award-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.award-card:hover img {
    transform: scale(1.05);
}

.award-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-card:hover .award-overlay {
    opacity: 1;
}

.award-overlay i {
    font-size: 2rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .awards-grid { grid-template-columns: 1fr; }
}

/* ============ LIGHTBOX MODAL ============ */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============ INDUSTRIES CATEGORY TITLE ============ */
.industries-category {
    margin-bottom: 3rem;
}

.industries-category:last-child {
    margin-bottom: 0;
}

.industries-category-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.industries-category-title i {
    color: var(--primary);
}

.text-white .section-title,
.text-white .section-subtitle {
    color: var(--white);
}

.text-white .section-title span {
    color: var(--primary);
}