/* ==========================================================================
   AJ Marketing - Premium Aesthetic Stylesheet (Pastel Corporate Redesign)
   Theme: Pastel Colors, Colorful Light Mode, Soft Alabaster, High-End Corporate
   Colors: Muted Steel Slate Blue (#4a5e73) & Accent Coral Terracotta (#d97a6c)
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Sophisticated Corporate Palette - Red (#b11e22) & Blue (#2b3083) */
    --primary-blue: #2b3083;
    --primary-red: #b11e22;
    --primary-blue-rgb: 43, 48, 131;
    --primary-red-rgb: 177, 30, 34;
    
    --secondary-blue: #1f2360;
    --secondary-red: #8f1518;
    
    --bg-white: #ffffff;
    --bg-light: #fbfbfd; /* Modern Clean White/Gray Background */
    --bg-light-blue: #f3f4fc; /* Soft Elegant Blue Pastel */
    --bg-light-red: #fdf2f2; /* Soft Elegant Red Pastel */
    
    --text-dark: #1a1e24; /* Clean Slate Dark Charcoal */
    --text-muted: #5e6672; /* Darker Muted Gray for optimal accessibility */
    --text-white: #ffffff;
    
    --border-color: #e5e7eb; /* Modern Soft borders */
    --border-color-hover: #d1d5db;
    
    /* Layout Variables */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Premium Depth Shadows - Styled with Brand Blue Tint */
    --shadow-sm: 0 4px 12px rgba(43, 48, 131, 0.04);
    --shadow: 0 12px 30px rgba(43, 48, 131, 0.08);
    --shadow-lg: 0 24px 50px rgba(43, 48, 131, 0.12);
    --shadow-red: 0 10px 25px rgba(177, 30, 34, 0.18);
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

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

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Buttons & Micro-interactions
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-display);
    gap: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 10px 20px -5px rgba(var(--primary-blue-rgb), 0.15);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(var(--primary-blue-rgb), 0.25);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-accent {
    background-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.btn-accent:hover {
    background-color: var(--secondary-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(var(--primary-red-rgb), 0.35);
}

.btn-accent:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--bg-light-blue);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--text-white);
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.25);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-weight: 900;
}

.section-title span {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(var(--primary-red-rgb), 0.15);
    z-index: -1;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.badge-blue {
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    border: 1px solid rgba(var(--primary-blue-rgb), 0.15);
}

.badge-red {
    background-color: var(--bg-light-red);
    color: var(--primary-red);
    border: 1px solid rgba(var(--primary-red-rgb), 0.15);
}

/* ==========================================================================
   Header & Glassmorphism Navigation Bar
   ========================================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.88); /* Modern White Glass Tint */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 48, 131, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(43, 48, 131, 0.04);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-display);
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleX(0);
    border-radius: 50px;
    transform-origin: center;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* ==========================================================================
   Multi-Column Mega Menu (Pastel Accents)
   ========================================================================== */
.nav-dropdown-wrapper {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 1120px;
    padding: 35px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nav-dropdown-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-col-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-light-blue);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-col-title i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.mega-menu-col-title:hover i {
    background-color: var(--primary-red);
    color: var(--text-white);
    transform: scale(1.1) rotate(15deg);
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.mega-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 3px;
    height: 14px;
    background-color: var(--primary-red);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: left;
}

.mega-menu-link:hover {
    color: var(--primary-blue);
    background-color: var(--bg-light-blue);
    padding-left: 18px;
}

.mega-menu-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.mega-menu-promo {
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.04) 0%, rgba(var(--primary-red-rgb), 0.03) 100%);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-promo h4 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.mega-menu-promo p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ==========================================================================
   Petona Asymmetric Hero Section (Pastel Theme)
   ========================================================================== */
.hero {
    background: radial-gradient(circle at 10% 20%, rgba(var(--primary-blue-rgb), 0.03) 0%, rgba(var(--primary-red-rgb), 0.02) 90%);
    position: relative;
    padding: 110px 0 150px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-blue-rgb), 0.02) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.7;
}

.hero-actions-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

/* Play Video Button Interaction (Terracotta theme) */
.btn-play-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.btn-play i {
    font-size: 1.2rem;
    margin-left: 4px;
}

.btn-play-wrapper:hover .btn-play {
    background-color: var(--secondary-red);
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(var(--primary-red-rgb), 0.4);
}

.btn-play-text {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-dark);
}

/* Overlapping Client Avatars Panel */
.avatar-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.avatar-group {
    display: flex;
}

.avatar-item {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    margin-left: -12px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.avatar-text strong {
    color: var(--primary-blue);
}

/* Hero Collage (Pastel Collage Visual) */
.hero-collage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-bg-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: rgba(var(--primary-blue-rgb), 0.03);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-bounce 15s infinite alternate;
    z-index: 1;
}

.collage-image-main {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-white);
    transform: rotate(2deg);
    transition: var(--transition);
    max-height: 480px;
    object-fit: cover;
}

.collage-card-floating {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 15px 35px rgba(43, 48, 131, 0.15);
    border: 1px solid rgba(43, 48, 131, 0.08);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.collage-card-floating:hover {
    transform: rotate(0) translateY(-5px);
}

.collage-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light-red);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

@keyframes blob-bounce {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
    100% { border-radius: 70% 30% 40% 60% / 60% 40% 60% 40%; transform: rotate(360deg); }
}

/* ==========================================================================
   Category Showcase (Rounded Muted Cards)
   ========================================================================== */
.categories-section {
    background-color: var(--bg-light);
}

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

.category-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(43, 48, 131, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-blue-rgb), 0.03) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(43, 48, 131, 0.12), 0 0 0 1px rgba(177, 30, 34, 0.1);
    border-color: rgba(177, 30, 34, 0.15);
}

.category-card:hover::after {
    background: radial-gradient(circle, rgba(var(--primary-red-rgb), 0.06) 0%, transparent 70%);
}

.category-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 28px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: var(--shadow-red);
    transform: scale(1.05) rotate(3deg);
}

.category-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.category-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
    flex-grow: 1;
}

.category-link {
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
}

.category-link i {
    transition: var(--transition);
}

.category-card:hover .category-link {
    color: var(--primary-red);
}

.category-card:hover .category-link i {
    transform: translateX(6px);
}

/* ==========================================================================
   Product Cards (Pastel Redesign)
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(43, 48, 131, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(43, 48, 131, 0.12), 0 0 0 1px rgba(177, 30, 34, 0.1);
    border-color: rgba(177, 30, 34, 0.15);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
    height: 240px;
    margin: 12px;
    border-radius: 12px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    font-family: var(--font-display);
    z-index: 1;
}

.product-info {
    padding: 12px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-display);
}

.product-link:hover {
    color: var(--primary-blue);
}

/* ==========================================================================
   Floating Widgets / Side Actions (Pastel)
   ========================================================================== */
.floating-widgets {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) translateX(-3px);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
}

.floating-catalog {
    background-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(var(--primary-blue-rgb), 0.15);
}

.floating-catalog:hover {
    background-color: var(--secondary-blue);
}

/* ==========================================================================
   Catalog Page Layout
   ========================================================================== */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.sidebar-filter {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-blue);
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item a {
    font-size: 0.925rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-item a:hover, .filter-item.active a {
    color: var(--primary-red);
    font-weight: 600;
}

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

.catalog-title h1 {
    font-size: 2.2rem;
}

/* ==========================================================================
   Product Detail Page
   ========================================================================== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.product-detail-gallery {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.detail-header {
    margin-bottom: 24px;
}

.detail-cat {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: inline-block;
}

.detail-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.15;
}

.detail-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Specifications Table */
.specs-section {
    margin-top: 50px;
}

.specs-title {
    font-size: 1.65rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.specs-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
}

.specs-table td.spec-name {
    font-weight: 700;
    color: var(--primary-blue);
    width: 35%;
}

.specs-table td.spec-val {
    color: var(--text-dark);
}

/* ==========================================================================
   Wholesale Inquiry Modal / Popup
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 42, 49, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 550px;
    position: relative;
    padding: 40px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-title {
    font-size: 1.85rem;
    margin-bottom: 12px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(var(--primary-blue-rgb), 0.08);
}

textarea.form-input {
    height: 100px;
    resize: none;
}

/* ==========================================================================
   Welcome Popup Screen (General / Promo)
   ========================================================================== */
.welcome-popup {
    max-width: 800px !important;
    padding: 0 !important;
    overflow: hidden;
}

.welcome-popup-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
}

.welcome-popup-image {
    background-color: var(--bg-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.welcome-popup-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================================
   About Us & Contact Us Styles
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.about-feature-item {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.about-feature-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.about-feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.contact-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.contact-card h4 {
    font-size: 1.2rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e2e8f0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-weight: 700;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #232a31; /* Dark Corporate Charcoal */
    color: #e8e4de;
    padding: 100px 0 30px 0;
    border-top: 6px solid var(--primary-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 80px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: #94a3b8;
    font-size: 0.925rem;
    margin-bottom: 28px;
    max-width: 280px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
    color: var(--text-white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 50px;
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.925rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

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

.contact-info-item {
    display: flex;
    gap: 14px;
    font-size: 0.925rem;
    color: #94a3b8;
}

.contact-info-item i {
    color: var(--primary-red);
    font-size: 1.15rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #64748b;
}

/* Mobile Toggle - Hidden on Desktop */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-blue);
    padding: 8px;
}

/* Premium Get Quote Header Button */
.btn-quote {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 6px 6px 6px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-red);
    gap: 16px;
    transition: var(--transition);
}

.btn-quote-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--text-white);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(var(--primary-red-rgb), 0.35);
    background-color: var(--secondary-red);
}

.btn-quote:hover .btn-quote-icon {
    background-color: var(--primary-blue);
    color: var(--text-white);
    transform: rotate(-45deg);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1120px) {
    .mega-menu { max-width: 900px; }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .hero-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .sidebar-filter { position: relative; top: 0; margin-bottom: 30px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-detail-gallery { height: 350px; }
    .mega-menu { display: none !important; }
}

@media (max-width: 768px) {
    .header-actions .btn { display: none; }
    .mobile-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 95px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 95px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transition: var(--transition);
        z-index: 99;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-actions-wrapper { justify-content: center; }
    .hero-image-wrapper { max-width: 400px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .welcome-popup-grid { grid-template-columns: 1fr; }
    .welcome-popup-image { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .hero-actions-wrapper { flex-direction: column; align-items: center; gap: 16px; }
    .hero-actions-wrapper .btn { width: 100%; }
    .about-features { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Brand Strip & Dealerships
   ========================================================================== */
.brand-strip {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.brand-item {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow);
}

/* ==========================================================================
   Company History Timeline
   ========================================================================== */
.timeline-section {
    background-color: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--bg-light-blue);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 26px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 0 0 6px var(--bg-light-red);
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
    right: auto;
}

.timeline-item:hover .timeline-badge {
    transform: scale(1.15);
    background-color: var(--primary-blue);
    box-shadow: 0 0 0 6px var(--bg-light-blue);
}

.timeline-panel {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.timeline-panel:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow);
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-blue);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.timeline-item:nth-child(odd) .timeline-panel::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--border-color);
}

.timeline-item:nth-child(even) .timeline-panel::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--border-color);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left !important;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-badge {
        left: 0 !important;
        right: auto !important;
    }
    .timeline-panel::after {
        left: -10px !important;
        border-right: 10px solid var(--border-color) !important;
        border-left: none !important;
    }
}

/* ==========================================================================
   Certifications & Awards Grid
   ========================================================================== */
.certs-grid, .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card, .award-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(43, 48, 131, 0.05);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cert-card:hover, .award-card:hover {
    transform: translateY(-6px);
    border-color: rgba(177, 30, 34, 0.15);
    box-shadow: 0 20px 40px rgba(43, 48, 131, 0.12), 0 0 0 1px rgba(177, 30, 34, 0.1);
}

.cert-card-icon, .award-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.cert-card:hover .cert-card-icon {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

.award-card:hover .award-card-icon {
    background-color: var(--primary-red);
    color: var(--text-white);
}

/* ==========================================================================
   Lightbox Image Zoom Modal
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 28, 33, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 3px solid var(--bg-white);
    background-color: var(--bg-white);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

