/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Enhanced for better contrast and eye comfort */
    --primary-color: #1a365d; /* Navy Blue */
    --primary-light: #2c5282; /* Lighter Navy */
    --primary-dark: #0f2439; /* Darker Navy */
    --secondary-color: #d4af37; /* Gold */
    --secondary-light: #e8c866; /* Lighter Gold */
    --secondary-dark: #b8941f; /* Darker Gold */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --light-bg-alt: #f1f3f5; /* Alternative light background */
    --text-dark: #1a202c; /* Improved contrast */
    --text-medium: #4a5568; /* Medium text */
    --text-light: #718096;
    --text-lighter: #a0aec0; /* Very light text */
    --border-color: #e2e8f0;
    --border-light: #edf2f7; /* Lighter border */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing - Enhanced for better breathing room */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 999px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7; /* Improved for better readability */
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Font Awesome Icon Fixes for Mobile */
.fas, .far, .fal, .fab, .fa, [class*="fa-"], i[class*="fa-"], i[class^="fa"], i[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", "FontAwesome", Arial, sans-serif !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome", Arial, sans-serif !important;
    font-weight: 400;
}

.far {
    font-family: "Font Awesome 6 Free", "FontAwesome", Arial, sans-serif !important;
    font-weight: 400;
}

.fal {
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "FontAwesome", Arial, sans-serif !important;
    font-weight: 300;
}

/* Ensure icons don't show as squares */
.fas:before, .far:before, .fal:before, .fab:before,
[class*="fa-"]:before, i[class*="fa-"]:before,
i[class*="fa-"]:after {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", "FontAwesome", Arial, sans-serif !important;
    font-weight: inherit;
    display: inline-block;
}

/* Ensure icons are visible */
i.fa, i.fas, i.far, i.fab, i.fal, i[class*="fa-"] {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

/* Fallback for when Font Awesome fails to load */
@supports not (font-variation-settings: normal) {
    .fas, .far, .fal, .fab, .fa, [class*="fa-"] {
        font-family: Arial, sans-serif;
    }
    
    /* Add text fallbacks for critical icons */
    .fa-ship:before { content: "🚢"; }
    .fa-plane-departure:before { content: "✈️"; }
    .fa-chevron-down:before { content: "▼"; }
    .fa-seedling:before { content: "🌱"; }
    .fa-tshirt:before { content: "👕"; }
    .fa-cogs:before { content: "⚙️"; }
    .fa-gem:before { content: "💎"; }
    .fa-shopping-cart:before { content: "🛒"; }
    .fa-box:before { content: "📦"; }
    .fa-shield-alt:before { content: "🛡️"; }
    .fa-globe-americas:before { content: "🌎"; }
    .fa-file-contract:before { content: "📄"; }
    .fa-shipping-fast:before { content: "🚚"; }
    .fa-handshake:before { content: "🤝"; }
    .fa-chart-line:before { content: "📈"; }
    .fa-flag:before { content: "🏳️"; }
    .fa-linkedin:before { content: "in"; }
    .fa-twitter:before { content: "🐦"; }
    .fa-facebook:before { content: "f"; }
    .fa-phone:before { content: "📞"; }
    .fa-envelope:before { content: "✉️"; }
    .fa-map-marker-alt:before { content: "📍"; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium); /* Better contrast for readability */
    line-height: 1.75; /* Improved line height for paragraphs */
    font-size: 1.0625rem; /* Slightly larger for better readability */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

.fluid-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--light-bg);
    background-image: linear-gradient(to bottom, var(--white) 0%, var(--light-bg) 100%);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: box-shadow var(--transition-normal), background var(--transition-normal);
    will-change: box-shadow;
    min-height: 70px;
    border-bottom: 1px solid var(--border-light);
}

.navbar.sticky {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.99);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm) var(--spacing-xs);
    min-height: 70px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0;
    flex-shrink: 0;
}

.logo i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1.125rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    position: relative;
    transition: all var(--transition-normal);
    display: block;
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(26, 54, 93, 0.04);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: var(--spacing-xs);
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all var(--transition-normal);
    border-radius: 2px;
    display: block;
    will-change: transform, opacity;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.9375rem 2.25rem;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    vertical-align: middle;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px) translateZ(0);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0) translateZ(0);
    box-shadow: var(--shadow-sm);
}

.btn-primary:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px) translateZ(0);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.btn-secondary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #2c5282 100%);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
    padding: var(--spacing-lg) var(--spacing-lg) 50px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-sm) 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-animations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-icon {
    position: absolute;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-ship {
    bottom: 12%;
    left: 12%;
    animation: float-left 9s ease-in-out infinite;
}

.hero-plane {
    top: 18%;
    right: 10%;
    animation: float-right 11s ease-in-out infinite;
}

@keyframes float-left {
    0% { transform: translateY(0) translateX(0) rotate(-2deg); opacity: 0.7; }
    50% { transform: translateY(-15px) translateX(8px) rotate(1deg); opacity: 1; }
    100% { transform: translateY(0) translateX(0) rotate(-2deg); opacity: 0.7; }
}

@keyframes float-right {
    0% { transform: translateY(0) translateX(0) rotate(3deg); opacity: 1; }
    50% { transform: translateY(-18px) translateX(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(0) translateX(0) rotate(3deg); opacity: 1; }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: var(--spacing-sm);
}

.hero-tag .dot {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.25);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: var(--spacing-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 90%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    width: 100%;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    background-size: cover;
    background-position: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
}

.product-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 1;
}

.product-card > * {
    position: relative;
    z-index: 2;
}

/* Agricultural Commodities */
.product-agriculture {
    background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=800&h=600&fit=crop&q=80');
}

/* Textiles */
.product-textiles {
    background-image: url('https://images.unsplash.com/photo-1523293182086-7651a899d37f?w=800&h=600&fit=crop&q=80');
}

/* Machinery */
.product-machinery {
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=800&h=600&fit=crop&q=80');
}

/* Minerals */
.product-minerals {
    background-image: url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?w=800&h=600&fit=crop&q=80');
}

/* FMCG */
.product-fmcg {
    background-image: url('https://images.unsplash.com/photo-1578749556568-bc2c40e68b61?w=800&h=600&fit=crop&q=80');
}

/* Custom Solutions */
.product-custom {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&q=80');
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.product-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    width: 100%;
    text-align: center;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
    width: 100%;
    text-align: center;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    width: 100%;
    text-align: center;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    width: 100%;
    text-align: center;
}

/* ============================================
   COUNTRIES GRID
   ============================================ */

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.country-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    min-height: 120px;
}

.country-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.country-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.country-card span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #2c5282 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.75;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #2c5282 100%);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
    padding: var(--spacing-xl) var(--spacing-lg) 100px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.overview-text h2 {
    margin-bottom: var(--spacing-md);
}

.overview-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.image-placeholder {
    background: var(--light-bg);
    border-radius: 10px;
    padding: var(--spacing-xl);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.mv-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.mv-card h3 {
    margin-bottom: var(--spacing-md);
}

.mv-card p {
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.nc-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.nc-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 280px;
    height: 100%;
}

.nc-item:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.nc-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.nc-item h3 {
    margin-bottom: var(--spacing-sm);
}

.nc-item p {
    line-height: 1.8;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 350px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: var(--spacing-md);
}

.service-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.service-features i {
    color: var(--secondary-color);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.product-filters {
    background: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8125rem 1.75rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: none;
}

.filter-btn:hover {
    background: var(--light-bg);
    border-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px) translateZ(0);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    width: 100%;
    align-items: stretch;
}

.product-card-page {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    max-height: 380px;
}

.product-card-page:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

/* Product Image Section - Top */
.product-image-section {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.product-image-section .product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
    transition: var(--transition-normal);
}

.product-card-page:hover .product-image-section .product-image {
    transform: scale(1.1);
}

/* Product Content Section - Middle */
.product-content {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--white);
    min-height: 140px;
    max-height: 140px;
    overflow: hidden;
    flex-shrink: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.product-separator {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--secondary-color) 0,
        var(--secondary-color) 4px,
        transparent 4px,
        transparent 8px
    );
    margin: var(--spacing-xs) 0 var(--spacing-sm);
    border: none;
}

.product-description {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
    width: 100%;
    text-align: left;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Product Action Bar - Bottom */
.product-action-bar {
    background: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-xs);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    min-height: 50px;
    max-height: 50px;
}

.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

.product-action-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.1) translateZ(0);
}

.product-action-btn:active {
    transform: scale(0.95) translateZ(0);
}

.product-action-btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: var(--spacing-sm);
}

.contact-form-wrapper p,
.contact-info-wrapper p {
    margin-bottom: var(--spacing-md);
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9375rem 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background-color: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    background-color: var(--white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
}

.form-group textarea {
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-info-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.map-section {
    margin: var(--spacing-xl) 0;
}

.map-placeholder {
    background: var(--light-bg);
    padding: var(--spacing-xl);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.map-placeholder h3 {
    margin-bottom: var(--spacing-sm);
}

.map-placeholder p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.inquiry-cta {
    text-align: center;
}

.inquiry-content h2 {
    margin-bottom: var(--spacing-sm);
}

.inquiry-content p {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.inquiry-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.inquiry-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity var(--transition-normal);
    will-change: opacity;
}

.modal.open .modal-overlay {
    opacity: 1;
}

.modal-dialog {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    width: min(600px, 90vw);
    max-height: 90vh;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-light);
    transform: translateY(15px) translateZ(0);
    opacity: 0;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    z-index: 1;
    will-change: transform, opacity;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-dialog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('images/venura.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.modal.open .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.modal-header h3 {
    margin-bottom: var(--spacing-xs);
}

.modal-header p {
    margin-bottom: var(--spacing-md);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-form {
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    margin-right: -4px;
}

.modal-form::-webkit-scrollbar {
    width: 6px;
}

.modal-form::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.modal-form::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 3px;
}

.modal-form::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.modal-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.modal-form .form-group.full-width {
    grid-column: 1 / -1;
}

.modal-submit {
    margin-top: var(--spacing-md);
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-logo i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section ul li i {
    margin-right: var(--spacing-xs);
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    pointer-events: none;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    pointer-events: auto;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.floating-btn i {
    font-size: 1.125rem;
    transition: transform var(--transition-normal);
}

.floating-btn-text {
    white-space: nowrap;
}

.floating-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.floating-btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.floating-btn-primary:hover i {
    transform: scale(1.1);
}

.floating-btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.floating-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.floating-btn-secondary:hover i {
    transform: scale(1.1);
}

.floating-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Animation for floating buttons */
@keyframes float-in {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-btn {
    animation: float-in 0.5s ease-out;
}

.floating-btn-secondary {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}
