/* ===================================
   CSS VARIABLES & ROOT STYLES
   =================================== */
:root {
    /* Brand Colors - Only #3588c8 and #ffcb05 */
    --primary-color: #3588c8;
    --secondary-color: #ffcb05;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(53, 136, 200, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(53, 136, 200, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(53, 136, 200, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(53, 136, 200, 0.25);
    --shadow-2xl: 0 25px 50px -12px rgba(53, 136, 200, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition-base);
}

ul {
    list-style: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.gradient-text {
    color: var(--secondary-color);
    font-weight: 800;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(53, 136, 200, 0.1);
}

.main-header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(53, 136, 200, 0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--black);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 203, 5, 0.3);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 136, 200, 0.4);
}

.nav-cta svg {
    transition: transform var(--transition-base);
}

.nav-cta:hover svg {
    transform: translateX(3px);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.25rem;
    transition: transform var(--transition-base);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(53, 136, 200, 0.15);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(53, 136, 200, 0.1) 0%, rgba(255, 203, 5, 0.1) 100%);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(53, 136, 200, 0.8) 0%, rgba(255, 203, 5, 0.6) 100%);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary-color);
    border-color: var(--white);
    width: 40px;
    border-radius: var(--radius-full);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 203, 5, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 203, 5, 0.5);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(255, 203, 5, 0.3);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 203, 5, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 203, 5, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroll-arrow {
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: var(--radius-full);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */
.products-showcase-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(53, 136, 200, 0.03) 0%, rgba(255, 203, 5, 0.03) 100%);
}

.showcase-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.showcase-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--black);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Showcase Cards */
.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(53, 136, 200, 0.1);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(53, 136, 200, 0.2);
    border-color: var(--secondary-color);
}

.card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-card:hover .card-image {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 203, 5, 0.4);
    z-index: 1;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-features {
    background: rgba(53, 136, 200, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.features-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(53, 136, 200, 0.3);
}

.card-button:hover {
    background: var(--secondary-color);
    color: var(--black);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 203, 5, 0.4);
}

.card-button svg {
    transition: transform var(--transition-base);
}

.card-button:hover svg {
    transform: translateX(3px);
}

/* ===================================
   QUALITY ASSURANCE SECTION
   =================================== */
.quality-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(53, 136, 200, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 203, 5, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.quality-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.quality-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.quality-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--black);
    line-height: 1.8;
}

/* Quality Cards Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.quality-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(53, 136, 200, 0.08);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(53, 136, 200, 0.15);
}

.quality-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(53, 136, 200, 0.1) 0%, rgba(255, 203, 5, 0.1) 100%);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-base);
}

.quality-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.quality-card:hover .quality-icon-wrapper::before {
    opacity: 1;
}

.quality-card:hover .quality-icon-wrapper {
    background: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.quality-icon {
    color: var(--primary-color);
    transition: all var(--transition-base);
}

.quality-card:hover .quality-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.quality-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color var(--transition-base);
}

.quality-card:hover .quality-card-title {
    color: var(--secondary-color);
}

.quality-card-subtitle {
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 500;
    opacity: 0.8;
}

/* ===================================
   PAGE HERO (FOR INTERNAL PAGES)
   =================================== */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    opacity: 0.95;
}

/* ===================================
   ABOUT CONTENT SECTION
   =================================== */
.about-content-section {
    padding: var(--spacing-3xl) 0;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.about-info-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(53, 136, 200, 0.12);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(53, 136, 200, 0.2);
    border-color: var(--secondary-color);
}

.highlight-card {
    background: linear-gradient(135deg, rgba(53, 136, 200, 0.05) 0%, rgba(255, 203, 5, 0.05) 100%);
}

.card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.card-icon-large {
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.card-icon-large svg {
    color: var(--primary-color);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-main-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.card-body {
    margin-bottom: 2rem;
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
}

.card-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid rgba(53, 136, 200, 0.1);
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(53, 136, 200, 0.1), rgba(255, 203, 5, 0.1));
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-color);
}

.badge-icon {
    color: var(--primary-color);
}

.badge-icon svg {
    color: var(--primary-color);
}

.badge-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.product-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.product-tag svg {
    color: var(--primary-color);
}

.product-tag:hover {
    background: var(--secondary-color);
    color: var(--black);
    transform: scale(1.05);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--black);
    margin-top: 1.5rem;
}

.about-image-section {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

/* ===================================
   COMPANY PRESENCE SECTION
   =================================== */
.company-presence-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(53, 136, 200, 0.03) 0%, rgba(255, 203, 5, 0.03) 100%);
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.presence-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(53, 136, 200, 0.1);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.presence-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(53, 136, 200, 0.15);
}

.presence-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.presence-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===================================
   BUSINESS DIVISIONS SECTION
   =================================== */
.business-divisions-section {
    padding: var(--spacing-3xl) 0;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.division-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(53, 136, 200, 0.1);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-align: center;
}

.division-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(53, 136, 200, 0.15);
}

.division-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.division-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.division-text {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.7;
}

/* ===================================
   MISSION & VISION SECTION
   =================================== */
.mission-vision-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(53, 136, 200, 0.03) 0%, rgba(255, 203, 5, 0.03) 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(53, 136, 200, 0.1);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(53, 136, 200, 0.15);
}

.mission-card .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-card .card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card .card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
}

/* ===================================
   EXPORT PRODUCT PORTFOLIO SECTION
   =================================== */
.export-portfolio-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 30px rgba(53, 136, 200, 0.12);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(53, 136, 200, 0.2);
    border-color: var(--secondary-color);
}

.portfolio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(53, 136, 200, 0.1) 0%, rgba(255, 203, 5, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all var(--transition-base);
}

.portfolio-card:hover .portfolio-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.portfolio-card:hover .portfolio-icon svg {
    color: var(--white);
}

.portfolio-icon svg {
    color: var(--primary-color);
    transition: color var(--transition-base);
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.75rem;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.portfolio-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.portfolio-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
}

.portfolio-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.portfolio-list li:last-child {
    margin-bottom: 0;
}

.region-description {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.region-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.25rem;
    display: inline-block;
}

.unique-strength {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(to right, rgba(53, 136, 200, 0.05), rgba(255, 203, 5, 0.05));
    border-left: 3px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.95rem;
    color: var(--black);
}

.unique-strength strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* ===================================
   QUALITY & TRACEABILITY SECTION
   =================================== */
.quality-traceability-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(53, 136, 200, 0.03) 0%, rgba(255, 203, 5, 0.03) 100%);
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.traceability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.traceability-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(53, 136, 200, 0.1);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.traceability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.traceability-card:hover::before {
    transform: scaleX(1);
}

.traceability-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(53, 136, 200, 0.15);
}

.traceability-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(53, 136, 200, 0.3);
}

.traceability-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.traceability-icon svg {
    color: var(--primary-color);
}

.traceability-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.traceability-text {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.7;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-section {
    padding: var(--spacing-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--black);
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 203, 5, 0.15);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 203, 5, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--black);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: rgba(53, 136, 200, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--secondary-color);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary-color);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 203, 5, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-icon {
    font-size: 4rem;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-base);
}

.product-link:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    background: rgba(255, 203, 5, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(53, 136, 200, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--black);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.view-btn:hover {
    transform: scale(1.1);
    background: var(--white);
    color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-md);
    color: var(--black);
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(53, 136, 200, 0.05);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--black);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links h3 {
    margin-bottom: 0;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(53, 136, 200, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    /* Ensure no underline */
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--black);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(53, 136, 200, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(53, 136, 200, 0.2);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(255, 203, 5, 0.3);
    transition: all var(--transition-base);
    cursor: pointer;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 136, 200, 0.4);
}

.submit-btn svg {
    transition: transform var(--transition-base);
}

.submit-btn:hover svg {
    transform: rotate(45deg);
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social .social-link:hover {
    background: var(--secondary-color);
    color: var(--black);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links span {
    opacity: 0.5;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .products-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .traceability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-section {
        padding-top: 60px;
    }

    section {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* ===================================
   COFFEE DETAIL PAGES
   =================================== */
.coffee-detail-section {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.detail-block {
    margin-bottom: 4rem;
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
}

.highlight-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: linear-gradient(to right, rgba(53, 136, 200, 0.05), transparent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    line-height: 1.6;
}

.detail-list,
.detail-list-check,
.detail-list-numbered {
    list-style: none;
    padding: 0;
}

.detail-list li,
.detail-list-check li,
.detail-list-numbered li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.detail-list li strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.detail-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.detail-list-numbered {
    counter-reset: detail-counter;
}

.detail-list-numbered li {
    padding-left: 2.5rem;
}

.detail-list-numbered li::before {
    counter-increment: detail-counter;
    content: counter(detail-counter) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.experience-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-top: 4rem;
}

.experience-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* ===================================
   CATALOG GRID STYLES (Pulses/Oilseeds)
   =================================== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    text-align: left;
}

.catalog-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.catalog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.catalog-item-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.catalog-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(53, 136, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.catalog-item-title {

    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* ===================================
   ADDITIONAL RESPONSIVE FIXES
   =================================== */

@media (max-width: 768px) {

    /* Catalog & Detail Pages Fixes */
    .catalog-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        /* Allow 2 columns on mobile if possible, or 1 */
        gap: 1rem;
    }

    .catalog-item-card {
        padding: 1rem;
    }

    .catalog-item-title {
        font-size: 0.95rem;
    }

    .coffee-detail-section {
        padding: 3rem 0;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .highlight-quote {
        padding: 1rem;
        font-size: 1.1rem;
        margin: 2rem 0;
        border-right: none;
        border-radius: var(--radius-md);
    }

    .experience-cta {
        padding: 2rem 1rem;
    }

    .experience-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Small Mobile Fixes */
    .catalog-card-grid {
        grid-template-columns: 1fr;
        /* Single column for very small screens */
    }

    .container {
        padding: 0 1rem;
        /* Reduce container padding */
    }

    .hero-title {
        font-size: 2rem;
        /* Ensure distinct size */
    }

    .hero-content {
        padding: 0 1rem;
    }

    .footer-top {
        gap: 2rem;
    }

    /* Map Responsive Fix */
    .map-container iframe {
        height: 300px;
        /* Reduce map height on mobile */
    }
}

/* ===================================
   GRID UTILITIES
   =================================== */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive adjustments for grids */
@media (max-width: 900px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}