/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #1e3a8a;
    /* Deep Blue from screenshot */
    --color-secondary: #3b82f6;
    /* Lighter Blue */
    --color-accent: #2563eb;
    /* Bright Blue Action */
    --color-text-dark: #1f2937;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --color-bg-light: #f9fafb;
    --color-bg-dark: #111827;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

/* Shop Now Button Animation */
.shop-now-btn {
    animation: pulse-cta 2s infinite;
    position: relative;
    overflow: hidden;
}

.shop-now-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.shop-now-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Legacy of Excellence Section */
.legacy-excellence {
    background-color: #0077b6;
    /* Lighter blue as per reference */
    padding: 60px 0;
    color: white;
    text-align: center;
}

.legacy-title {
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.legacy-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    /* Increased gap */
}

.legacy-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.laurel-icon {
    font-size: 3.5rem;
    color: white;
    /* White icons as per reference */
    flex-shrink: 0;
}

.legacy-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.legacy-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .legacy-grid {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
}

.navbar {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    /* Increased size from 40px */
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    /* Minimal, consistent text style */
    font-family: 'Outfit', sans-serif;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-links a {
    color: var(--color-text-dark);
    /* Default for white background sections, will verify contrast on hero */
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero text contrast fix: if header is absolutely positioned over image, links might need to be white */
header.transparent .nav-links a {
    color: var(--color-text-dark);
    /* Screenshot shows dark text on white header band, need to re-check if header has bg */
}

/* Redoing Header based on screenshot 
   Top bar: Navigation links
   Logo: Top Left
   CTA: Top Right "Enquire Now"
*/
.header-top {
    background: rgba(255, 255, 255, 0.95);
    /* Assuming white bar at top based on typical designs, or transparent */
    padding: 1rem 0;
}

/* Wait, looking at screenshot, the header seems to be on a white strip. 
   Let's assume white background for header based on standard practices if not clear.
   Actually, zooming in to the top left of the first image... 
   It looks like a white bar.
*/
.navbar {
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    /* Background image moved to slider */
    background-color: var(--color-bg-dark);
    /* Fallback */
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6vh;
    color: var(--color-white);
    overflow: hidden;
    /* Ensure images don't overflow */
}

.hero-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(90deg, rgba(8, 20, 50, 0.8) 0%, rgba(8, 20, 50, 0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding-left: 0;
    /* Remove padding to align with container edge */
    margin-left: 0;
    /* Ensure no auto margin */
}

/* Force hero content to the left edge */
.hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: 8%;
    /* Move right to fit in blue area */
    margin: 0;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
    opacity: 0.9;
    max-width: 480px;
}

/* Dynamic Typing Text */
/* Dynamic Typing Text */
.hero-dynamic-text {
    position: absolute;
    right: 15%;
    /* Moved further left */
    top: 50%;
    /* Pushed down to match lowered hero content */
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    max-width: 600px;
}

.hero-dynamic-text h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    background-color: transparent;
    display: inline;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Google Sans', 'Outfit', sans-serif;
    letter-spacing: 1px;
    padding: 0;
    box-shadow: none;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: #ffffff;
    animation: blink 1s infinite;
    font-size: 1.6rem;
    vertical-align: text-bottom;
}

/* Hero Action Group to center mouse under buttons */
.hero-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers scroll indicator relative to buttons */
    width: fit-content;
}

/* Scroll Down Mouse Animation */
.scroll-indicator {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.mouse {
    width: 36px;
    /* Increased from 30px */
    height: 58px;
    /* High from 50px */
    border: 3px solid var(--color-white);
    /* Thicker border */
    border-radius: 20px;
    position: relative;
    opacity: 0.9;
}

.wheel {
    width: 5px;
    /* Thicker wheel */
    height: 10px;
    background-color: var(--color-white);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-action-group {
        width: 100%;
        /* Full width on mobile to allow centering */
        align-items: center;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-dynamic-text {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-top: 2rem;
        width: 100%;
    }

    .hero-dynamic-text h2,
    .cursor {
        font-size: 1.5rem;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Mobile adjustments for dynamic text */
@media (max-width: 768px) {
    .hero-dynamic-text {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-top: 2rem;
        width: 100%;
    }

    .hero-dynamic-text h2,
    .cursor {
        font-size: 1.5rem;
    }
}

/* About Section */
.about {
    padding: var(--space-xl) 0;
    background-color: var(--color-white);
    overflow: hidden;
}

/* Video Showcase Section */
.video-showcase {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg-dark);
    /* Dark background for cinematic feel */
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.video-text .section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.video-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.video-text p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    max-width: 90%;
}

.video-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-cta:hover {
    transform: translateX(10px);
}

.video-cta span {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pulse-button-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-button {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

.pulse-button::before,
.pulse-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.pulse-button::after {
    animation-delay: 1s;
}

.pulse-button i {
    color: white;
    font-size: 1.2rem;
    padding-left: 3px;
    /* Visual centering */
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.video-wrapper-container {
    position: relative;
    perspective: 1000px;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: transform 0.5s ease;
}

.video-frame:hover {
    transform: scale(1.02);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 1;
    filter: blur(20px);
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid #e5e7eb;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.quote-box {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    /* Pull out slightly */
    background: white;
    padding: 1.5rem;
    max-width: 300px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.quote-box p {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

/* Portfolio Section */
.portfolio {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

/* Background Pattern (Optional) */
.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, #e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.section-header {
    margin-bottom: var(--space-lg);
    text-align: center;
    /* Center header for better balance */
}

.section-header h2 {
    font-size: 2.5rem;
    /* Match About section main header */
    text-transform: none;
    /* Other section headers are Title Case */
    letter-spacing: normal;
    color: var(--color-primary);
    /* Primary blue */
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* Responsive grid */
    gap: var(--space-md);
}

.brand-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-md) var(--space-lg);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Hover Gradient Border Effect */
.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: #fff;
    border-color: transparent;
}

.brand-card:hover::after {
    transform: scaleX(1);
}

.brand-info h3 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-info h3 {
    color: var(--color-primary);
}

.brand-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.brand-logo img {
    height: 85px !important;
    /* Forces larger logo size override inline styles */
    width: auto;
    /* Modern Full Color Style */
    filter: brightness(0.95) saturate(0.9);
    /* Slightly muted for elegance */
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy, modern feel */
    mix-blend-mode: multiply;
    /* Better blending with white bg */
    will-change: transform, filter;
}

.brand-card:hover .brand-logo img {
    /* Vivid & Dynamic Hover */
    filter: brightness(1.05) saturate(1.1) drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
    opacity: 1;
    transform: scale(1.15) rotate(2deg);
    /* Subtle pop and tilt */
}

/* Global Reach Section */
.global-reach {
    padding: var(--space-xl) 0;
    text-align: center;
    background-color: var(--color-white);
}

.global-reach h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.reach-item {
    background: var(--color-bg-light);
    padding: var(--space-md);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.reach-item:hover {
    background: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.reach-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.reach-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-dark);
}

.reach-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Logistics Section */
.logistics {
    padding: var(--space-xl) 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.logistics-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.logistics-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.log-stat h3 {
    font-size: 2rem;
    color: var(--color-secondary);
    /* Accent color for numbers */
    margin-bottom: 0;
}

.log-stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.logistics-features {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.feature-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    color: var(--color-secondary);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Quality Section */
.quality {
    padding: var(--space-xl) 0;
    text-align: center;
    background-color: var(--color-white);
}

.quality h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.quality-card {
    padding: var(--space-md);
    background: var(--color-bg-light);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.quality-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-dark);
}

/* Products Section */
.products {
    padding: 0;
    text-align: center;
    background-color: transparent;
    background-image: url('Images/Core Product Categories.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-start;
}

/* Dark overlay for contrast */
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.products .container {
    padding-top: var(--space-lg);
    padding-bottom: 140px;
    /* Room for the spice bowls at bottom */
    position: relative;
    z-index: 1;
}

.products h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.products p.subtitle {
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.product-item {
    background: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    min-width: 150px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
}

.product-item:hover {
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.product-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.product-item span {
    display: block;
    font-weight: 500;
    color: var(--color-text-dark);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xl) 0;
    background-color: var(--color-white);
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.testimonials h2,
.faq h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: var(--space-md);
    border-radius: 8px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #cbd5e1;
    border-radius: 50%;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-item {
    background: var(--color-bg-light);
    margin-bottom: var(--space-sm);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: background 0.2s;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: var(--space-sm) var(--space-md);
    max-height: 200px;
    /* Adjust as needed */
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-lg);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.footer-col p {
    opacity: 0.8;
    max-width: 300px;
    margin-bottom: var(--space-md);
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-accent);
}

/* Mobile Responsiveness */
.navbar-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.navbar-container>.logo {
    flex-shrink: 0;
    z-index: 2;
}

.navbar-container>.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.navbar-container>.btn,
.navbar-container>a.btn {
    flex-shrink: 0;
    margin-left: auto;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Navbar specific mobile fixes */
    .navbar-container {
        flex-direction: column !important;
        gap: 1.5rem;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    /* Hero section alignments */
    .hero .container {
        padding-left: var(--space-md) !important;
        padding-right: var(--space-md) !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .hero-content {
        margin: 0 auto !important;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 0 !important;
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        /* Reduced slightly more for better fit */
        text-align: center !important;
        line-height: 1.2;
    }

    .hero p {
        text-align: center !important;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center !important;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons .btn {
        width: 100%;
        /* Full width buttons on mobile */
        text-align: center;
    }

    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Hide CTA in header to save space or keep it if it fits */
    .navbar .btn-primary {
        display: none;
    }

    /* Ensure other grids stack */
    .about-grid,
    .portfolio-grid,
    .reach-grid,
    .logistics-grid,
    .quality-grid,
    .section-split,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }

    .logistics-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .about-image {
        order: -1;
    }

    .quote-box {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -2rem 1rem 0 1rem;
    }
}



/* Scroll Animation - Modern Minimal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3D About Image Interaction */
.about-image-wrapper {
    perspective: 1000px;
    position: relative;
    z-index: 10;
}

.about-image-3d {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Smooth follow */
    will-change: transform;
}

.about-image-3d img.main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: block;
    /* Ensure image itself has some depth */
    transform: translateZ(20px);
    position: relative;
    z-index: 2;
}

.about-image-3d img.uae-bg-image {
    position: absolute;
    top: -25%;
    /* Shifting it further up to peek out */
    left: -5%;
    width: 110%;
    height: 100%;
    /* Prevents stretching too far down */
    object-fit: cover;
    object-position: bottom;
    /* Anchor it to the bottom so the top overflows */
    border-radius: 16px;
    z-index: 1;
    /* Sits behind the main image */
    transform: translateZ(-80px);
    /* Push back for 3D */
    opacity: 0.7;
    /* Increased opacity slightly to see details */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    filter: blur(1.5px);
    /* Reduced blur slightly */
    animation: floatUAE 6s ease-in-out infinite alternate;
}

@keyframes floatUAE {
    0% {
        transform: translateZ(-80px) translateY(0px) scale(1);
    }

    100% {
        transform: translateZ(-80px) translateY(-15px) scale(1.02);
    }
}

/* Floating Particles & Text */
.particle {
    position: absolute;
    border-radius: 50%;
    z-index: 12;
    background: var(--color-accent);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.p-1 {
    width: 15px;
    height: 15px;
    top: 10%;
    right: 10%;
    transform: translateZ(40px);
    animation: float-particle 4s ease-in-out infinite;
}

.p-2 {
    width: 10px;
    height: 10px;
    bottom: 20%;
    left: 5%;
    transform: translateZ(60px);
    animation: float-particle 5s ease-in-out infinite reverse;
    background: var(--color-secondary);
}

.p-3 {
    width: 8px;
    height: 8px;
    top: 40%;
    left: -10px;
    transform: translateZ(30px);
    animation: float-particle 3s ease-in-out infinite 0.5s;
    background: #fbbf24;
    /* Gold accent */
}

/* Floating Text Badges */
.floating-text {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.floating-text i {
    color: var(--color-accent);
}

.t-1 {
    top: -15px;
    right: -20px;
    transform: translateZ(80px);
    animation: float-text 6s ease-in-out infinite;
}

.t-2 {
    bottom: 30px;
    left: -40px;
    transform: translateZ(100px);
    animation: float-text 7s ease-in-out infinite reverse;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateZ(40px) translateY(0);
    }

    50% {
        transform: translateZ(40px) translateY(-15px);
    }
}

@keyframes float-text {

    0%,
    100% {
        transform: translateZ(80px) translateY(0);
    }

    50% {
        transform: translateZ(80px) translateY(-10px);
    }
}

/* UAE Distribution Section */
.uae-distribution {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg-light);
    overflow: hidden;
    position: relative;
}

.uae-dist-bg {
    position: absolute;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
    width: 350px;
    /* Fixed smaller size */
    max-width: 35vw;
    /* Keeps them proportionate on small screens */
}

.bg-left {
    top: 5%;
    left: 2%;
    animation: floatDistBgLeft 8s ease-in-out infinite alternate;
}

.bg-right {
    bottom: 5%;
    right: 2%;
    animation: floatDistBgRight 10s ease-in-out infinite alternate;
}

@keyframes floatDistBgLeft {
    0% {
        transform: translate(0, 0) rotate(-15deg);
    }

    100% {
        transform: translate(20px, -20px) rotate(-5deg);
    }
}

@keyframes floatDistBgRight {
    0% {
        transform: translate(0, 0) rotate(10deg);
    }

    100% {
        transform: translate(-20px, -20px) rotate(5deg);
    }
}

.distribution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.distribution-text .section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.distribution-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.distribution-text p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    max-width: 90%;
}

.emirates-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.emirates-list li {
    font-size: 1rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.emirates-list li i {
    color: var(--color-accent);
}

/* Abstract Map Visualization */
.map-visual-container {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.uae-map-abstract {
    position: relative;
    width: 400px;
    height: 300px;
}

.connection-line {
    stroke: var(--color-secondary);
    stroke-width: 2;
    stroke-dasharray: 10;
    opacity: 0.3;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

.emirate-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.emirate-node:hover {
    transform: scale(1.3);
}

/* Tooltip on Hover */
.emirate-node::after {
    content: attr(data-label);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.emirate-node:hover::after {
    opacity: 1;
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
    z-index: -1;
    animation: map-pulse 2s infinite;
}

.emirate-node:nth-child(even) .node-pulse {
    animation-delay: 1s;
}

@keyframes map-pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .distribution-grid {
        grid-template-columns: 1fr;
    }

    .map-visual-container {
        height: 300px;
    }
}

/* FORCE OVERRIDE MAP VISUALIZATION STYLES */
/* Map Image Visualization */
.map-visual-container {
    padding: 0 !important;
    position: relative;
    height: auto !important;
    min-height: 400px;
    background: transparent !important;
    border-radius: 20px;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: none !important;
    /* Reset 3D if present */
}

.uae-map-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: none !important;
    /* Reset 3D */
}

.uae-map-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.map-visual-container:hover .uae-map-image {
    transform: scale(1.02);
}

.map-marker {
    position: absolute;
    color: var(--color-accent);
    font-size: 1.5rem;
    /* Larger icon */
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: translate(-50%, -100%);
}

.map-marker:hover {
    transform: translate(-50%, -120%) scale(1.2);
    color: var(--color-primary);
}

/* Tooltip */
.map-marker::after {
    content: attr(data-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.map-marker:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
}

/* Blinking Pulse Animation */
.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: blink-pulse 2s infinite;
    opacity: 0.5;
}

@keyframes blink-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Stagger animations */
.map-marker:nth-child(odd) .marker-pulse {
    animation-delay: 0.5s;
}

.map-marker:nth-child(3n) .marker-pulse {
    animation-delay: 1s;
}

@media (max-width: 768px) {
    .map-visual-container {
        min-height: 300px;
    }
}

/* Products Section - 3D Modern Style OVERRIDE */
.products .subtitle {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    color: rgba(255, 255, 255, 0.85);
}

/* 3D Product Card */
.product-card-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 140px;
    perspective: 1000px;
}

/* 3D Icon Wrapper */
.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 248, 0.95) 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--color-primary);

    /* 3D Shadow Effect */
    box-shadow:
        10px 10px 20px rgba(163, 177, 198, 0.4),
        -10px -10px 20px rgba(255, 255, 255, 0.8);

    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.icon-wrapper i {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

/* Hover Effects - Pop Up */
.icon-wrapper:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
    box-shadow:
        20px 20px 30px rgba(163, 177, 198, 0.5),
        -20px -20px 30px rgba(255, 255, 255, 1);

    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
}

.icon-wrapper:hover i {
    transform: scale(1.2) translateZ(20px);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.product-card-3d span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-white);
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.product-card-3d:hover span {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(2px);
}

/* Product Section Tagline */
.product-tagline {
    margin-top: var(--space-lg);
    text-align: center;
}

.product-tagline h3 {
    font-size: 1.6rem;
    color: #fbbf24;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.product-tagline p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 2rem 1.5rem;
    transform: translateY(100%);
    animation: cookieSlideUp 0.6s ease 1s forwards;
}

@keyframes cookieSlideUp {
    to {
        transform: translateY(0);
    }
}

.cookie-banner.cookie-hidden {
    animation: cookieSlideDown 0.4s ease forwards;
}

@keyframes cookieSlideDown {
    to {
        transform: translateY(120%);
    }
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.cookie-icon {
    font-size: 1.6rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.cookie-text a {
    color: #60a5fa;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #93bbfd;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.cookie-btn-accept {
    background: #3b82f6;
    color: white;
}

.cookie-btn-accept:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ========== Enquiry Now Modal ========== */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.enquiry-modal.show {
    display: flex;
    opacity: 1;
}

.enquiry-modal-content {
    background-color: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 40px;
}

.enquiry-modal.show .enquiry-modal-content {
    transform: scale(1);
}

.enquiry-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #64748b;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.enquiry-close-btn:hover {
    color: #ef4444;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 30px;
}

.enquiry-header h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.enquiry-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-block i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 3px;
}

.info-block h4 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.info-block p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

.support-team {
    flex-direction: column;
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.1);
}

.support-team h4 {
    color: var(--color-primary);
    font-size: 1.05rem;
    margin-bottom: 12px;
    text-align: left;
}

.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-contacts span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.support-contacts i.fa-whatsapp {
    color: #25D366;
    font-size: 1.2rem;
}

.enquiry-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-height: 350px;
}

@media (max-width: 768px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-modal-content {
        padding: 30px 20px;
    }

    .enquiry-map {
        min-height: 250px;
    }
}

/* ==========================================================================
   Responsive Design (Mobile & Tablet)
   ========================================================================== */

/* --- Tablet (max-width: 992px) --- */
@media (max-width: 992px) {

    /* Hero Section */
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-dynamic-text {
        right: 5%;
        font-size: 2.5rem;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        min-height: 400px;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Expertise Grid */
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {

    /* Container Padding */
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
    }

    .navbar-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .navbar-container>.logo {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .navbar-container>.nav-links {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        order: 3;
        margin-top: 10px;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 5px;
    }

    .navbar-container>.btn {
        margin: 0 auto;
        order: 2;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 85vh;
        padding-top: 150px;
        /* Accounts for taller wrapped navbar */
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-dynamic-text {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin-top: 40px;
        font-size: 2rem;
        text-align: left;
    }

    .hero-dynamic-text h2 {
        display: inline-block;
        white-space: normal;
    }

    /* Legacy Banner */
    .legacy-grid {
        flex-direction: column;
        gap: 30px;
    }

    .legacy-item {
        flex-direction: column;
        text-align: center;
    }

    /* Sections Shared Styles */
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Distribution */
    .distribution-grid {
        grid-template-columns: 1fr;
    }

    .logistics-card {
        padding: 20px;
    }

    /* Global Reach Map */
    .animated-map {
        height: 300px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .brand-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 1001;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        /* Push to the right */
    }

    .navbar-container {
        position: relative;
        /* For the dropdown bounds */
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: var(--color-white);
        /* Always white background on mobile */
        flex-direction: column;
        align-items: center;
        padding: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        z-index: 1000;
        gap: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        /* Slight separation line */
    }

    .nav-links a {
        color: var(--color-text-dark) !important;
        /* Force dark text on the white background */
    }

    .nav-links.active {
        max-height: 500px;
        /* Large enough for all links */
        padding: 2rem 0;
    }

    .nav-enquiry {
        display: none;
    }

    .nav-enquiry-mobile {
        display: inline-block !important;
        margin-top: 1rem;
    }
}

.nav-enquiry-mobile {
    display: none;
}