/* Yusuf One Business Links - Style Sheet */

/* ==========================================
   1. Design Tokens & Variables
   ========================================== */
:root {
    /* Color Palette */
    --color-primary: #053ba6;          /* Brand Royal Blue */
    --color-primary-light: #1e60e2;    /* Lighter Blue */
    --color-primary-dark: #032466;     /* Deep Navy Blue */
    --color-accent: #00b4d8;           /* Fresh Aqua Blue */
    --color-secondary: #ff9800;        /* Amber CTA Accent */
    --color-success: #2ec4b6;          /* Green badge success */
    --color-warning: #e71d36;          /* Red warning badge */
    
    /* Backgrounds */
    --bg-dark: #080f24;                /* Body deep dark navy */
    --bg-light: #f4f7fc;               /* Body very light blue/gray */
    --bg-white: #ffffff;
    --bg-card-dark: #121c3b;           /* Card dark navy */
    --bg-card-light: #ffffff;          /* Card white */
    
    /* Typography & Sizing */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Borders & Shadows */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(5, 59, 166, 0.06);
    --shadow-lg: 0 20px 40px rgba(5, 59, 166, 0.12);
    
    /* Animations & Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   2. Base Reset & Typography
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--bg-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    border: none;
}

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

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

/* ==========================================
   3. Common Components
   ========================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(5, 59, 166, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 59, 166, 0.4);
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

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

.subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background-color: rgba(5, 59, 166, 0.08);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
}

/* ==========================================
   4. Top Bar & Header Navigation
   ========================================== */
.top-bar {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
    display: flex;
    gap: 24px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info span i {
    color: var(--color-accent);
}

.top-social {
    font-weight: 500;
}

/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(5, 59, 166, 0.05);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-cta-mobile {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: #475569;
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-pill);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary-dark);
    border-radius: var(--border-radius-pill);
    transition: var(--transition);
}

/* ==========================================
   5. Hero Section
   ========================================== */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    min-height: 700px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 10s ease;
}

.hero-section:hover .hero-bg {
    transform: scale(1.05);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--bg-light);
}

/* ==========================================
   6. Stats Counter Section
   ========================================== */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    margin-bottom: 40px;
}

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

.stat-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--color-primary);
}

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

.stat-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--bg-dark);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* ==========================================
   7. About Us Section
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-card:hover .about-img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gradient, linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%));
    color: var(--bg-white);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(5, 59, 166, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-years {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 4px;
    color: var(--color-accent);
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.about-text-wrapper p {
    margin-bottom: 20px;
    color: #475569;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 1.4rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

/* ==========================================
   8. Products Section (Catalog)
   ========================================== */
.products-section {
    background-color: var(--bg-white);
}

.catalog-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

/* Search Bar */
.search-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

.search-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 54px;
    border-radius: var(--border-radius-pill);
    background-color: var(--bg-light);
    border: 2px solid transparent;
    color: var(--bg-dark);
    font-weight: 500;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.search-wrapper input:focus {
    border-color: var(--color-primary);
    background-color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(5, 59, 166, 0.05);
}

.clear-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
}

.clear-search:hover {
    color: var(--color-warning);
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background-color: var(--bg-light);
    color: #475569;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(5, 59, 166, 0.05);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(5, 59, 166, 0.2);
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(5, 59, 166, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5, 59, 166, 0.15);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-success);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    z-index: 2;
}

.product-card-image {
    height: 200px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.product-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.15rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.product-packaging {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-packaging i {
    color: var(--color-accent);
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.product-info-trigger {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-info-trigger:hover {
    color: var(--color-primary-light);
}

.product-action-btn {
    background-color: var(--color-primary);
    color: var(--bg-white);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(5, 59, 166, 0.15);
    transition: var(--transition);
}

.product-action-btn:hover {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

/* No Results section */
.no-results {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.no-results i {
    font-size: 3.5rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.no-results p {
    color: #64748b;
    margin-bottom: 24px;
}

/* ==========================================
   9. Services Section
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(5, 59, 166, 0.03);
    position: relative;
}

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

.service-card.highlight {
    background: var(--primary-gradient, linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%));
    color: var(--bg-white);
    border: none;
}

.service-card.highlight h3 {
    color: var(--bg-white);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-secondary);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    letter-spacing: 1px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-card.highlight .service-icon {
    color: var(--color-accent);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details li {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details li i {
    color: var(--color-accent);
}

/* Process Flow Steps */
.process-wrapper {
    background-color: var(--color-primary-dark);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.process-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: -25px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
}

.step-num {
    height: 54px;
    width: 54px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.step-card h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   9b. Warehouse & Fleet Gallery Section
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(transparent, rgba(10, 15, 29, 0.85));
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   10. Inquiry & Quote Form Section
   ========================================== */
.inquiry-section {
    background-color: var(--bg-white);
}

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

.inquiry-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.inquiry-text p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.inquiry-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-item i {
    height: 48px;
    width: 48px;
    background-color: rgba(5, 59, 166, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Form Styling */
.inquiry-form-card {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 59, 166, 0.05);
}

.wholesale-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.form-group label .required {
    color: var(--color-warning);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 2px solid #e2e8f0;
    background-color: var(--bg-white);
    color: var(--bg-dark);
    font-weight: 500;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(5, 59, 166, 0.05);
}

.form-group textarea {
    resize: none;
}

/* ==========================================
   11. Contact Info & Location Map
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

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

.info-block {
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
}

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

.info-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.info-details p {
    font-size: 0.95rem;
    color: #475569;
}

.phone-link, .info-details a {
    font-weight: 600;
    color: var(--color-primary-light);
}

.phone-link:hover, .info-details a:hover {
    color: var(--color-accent);
}

/* Custom Styled Map Panel */
.contact-map-panel {
    display: flex;
    flex-direction: column;
}

.map-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 59, 166, 0.05);
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    height: 100%;
    position: relative;
    background-color: #e2e8f0;
    overflow: hidden;
}

/* Map overlay info */
.map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 59, 166, 0.1);
    max-width: 320px;
}

.map-logo {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--bg-white);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 12px;
}

.map-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.map-address {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Map Graphic Background Simulation */
.map-graphic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    z-index: 1;
}

.map-marker-pin {
    position: absolute;
    top: 55%;
    left: 65%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.map-marker-pin i {
    font-size: 3rem;
    color: var(--color-warning);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(231, 29, 54, 0.4);
    animation: pinPulse 2s infinite;
    z-index: -1;
}

/* Map Grid Lines */
.grid-line {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.05);
}

.grid-line.horizontal {
    width: 100%;
    height: 3px;
}

.grid-line.vertical {
    height: 100%;
    width: 3px;
}

.grid-line.h1 { top: 25%; }
.grid-line.h2 { top: 50%; }
.grid-line.h3 { top: 75%; }
.grid-line.v1 { left: 25%; }
.grid-line.v2 { left: 50%; }
.grid-line.v3 { left: 75%; }

.map-route {
    position: absolute;
    top: 51%;
    left: 20%;
    width: 46%;
    height: 6px;
    background-color: var(--color-primary-light);
    opacity: 0.6;
    border-radius: 4px;
    transform: rotate(6deg);
}

/* ==========================================
   12. Footer Section
   ========================================== */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 5px solid var(--color-primary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
}

.footer-brand-text small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--color-accent);
    font-weight: 600;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-socials a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h3, .footer-brands-list h3 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-brands-list h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-pill);
}

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

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.brands-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-tag {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    transition: var(--transition);
}

.brand-tag:hover {
    background-color: var(--color-primary);
    color: var(--bg-white);
}

.footer-bottom {
    background-color: #040815;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

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

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

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

/* ==========================================
   13. Toast Notification
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100vw - 60px);
}

.toast {
    background-color: var(--bg-white);
    color: var(--bg-dark);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideIn 0.3s ease-out forwards;
}

.toast.toast-success {
    border-left-color: var(--color-success);
}

.toast.toast-error {
    border-left-color: var(--color-warning);
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: var(--color-success);
}

.toast-error .toast-icon {
    color: var(--color-warning);
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.85rem;
    color: #64748b;
}

.toast-close {
    background: transparent;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
}

.toast-close:hover {
    color: var(--bg-dark);
}

/* ==========================================
   14. Modal Dialog (Product Details)
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 15, 36, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1050;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    font-size: 2.2rem;
    color: #94a3b8;
    cursor: pointer;
    z-index: 15;
    line-height: 1;
    transition: var(--transition);
}

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

.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}

.modal-img-col {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-img-col img {
    max-height: 300px;
    max-width: 100%;
    object-fit: contain;
}

.modal-info-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.modal-packaging {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-packaging i {
    color: var(--color-accent);
}

.modal-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-meta {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
}

.modal-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 6px 0;
}

.modal-meta-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-meta-label {
    font-weight: 600;
    color: #475569;
}

.modal-meta-val {
    font-weight: 700;
    color: var(--bg-dark);
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* ==========================================
   15. Keyframes Animations
   ========================================== */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

@keyframes pinPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================
   16. Responsive Media Queries
   ========================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-img {
        height: 380px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-container {
        height: 70px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
    }
    
    .nav-cta-mobile {
        display: block;
        width: 100%;
    }
    
    .nav-cta-mobile .btn {
        width: 100%;
    }
    
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inquiry-form-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modal-body-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-img-col {
        padding: 30px;
        height: 200px;
    }
    
    .modal-img-col img {
        max-height: 100%;
    }
    
    .modal-info-col {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .brand-name {
        font-size: 1.2rem;
    }
}

/* Hamburger active transformation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
