/* ===================================
   GLOBAL RESET & VARIABLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo ANS Colors */
    --gold: #F4C430;
    --gold-dark: #D4A017;
    --orange: #FF8C00;
    --orange-light: #FFA500;
    --lime: #9ACD32;
    --lime-dark: #7FB02E;
    --teal: #00CED1;
    --teal-dark: #00A0A3;
    
    /* Neutrals */
    --dark: #1a1a1a;
    --navy: #002D62;
    --navy-light: #003D7A;
    --gray: #666;
    --gray-light: #999;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container-navbar {
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.img-logo-container {
    height: 55px;
    width: auto;
    transition: transform var(--transition-smooth);
}

.logo:hover .img-logo-container {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.ul-navbar {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.li-navbar {
    position: relative;
}

.a-navbar {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.a-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width var(--transition-smooth);
}

.a-navbar:hover {
    color: var(--orange);
}

.a-navbar:hover::after,
.a-navbar.active::after {
    width: 100%;
}

.a-navbar.active {
    color: var(--orange);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    background-image: 
        /* Hexagon pattern overlay */
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px
        ),
        /* Radial gradient accents */
        radial-gradient(circle at 20% 30%, rgba(244, 196, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(154, 205, 50, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 206, 209, 0.1) 0%, transparent 60%),
        /* Base gradient */
        linear-gradient(135deg, #002D62 0%, #003D7A 40%, #00A0A3 100%);
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 45, 98, 0.90) 0%, 
        rgba(0, 160, 163, 0.85) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.slide-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.4);
}

/* About Hero */
/* ===========================
   ABOUT HERO - Scientific Pattern
   =========================== */
.about-hero {
    height: 400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #002D62 0%, #00CED1 100%);
    background-image: 
        /* Diagonal stripes pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.02) 30px,
            rgba(255, 255, 255, 0.02) 60px
        ),
        /* Grid overlay */
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        /* Radial accents */
        radial-gradient(circle at 15% 40%, rgba(244, 196, 48, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(154, 205, 50, 0.1) 0%, transparent 40%),
        /* Base gradient */
        linear-gradient(135deg, #002D62 0%, #003D7A 50%, #00A0A3 100%);
    background-size: 100% 100%, 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   CONTACT HERO - Communication Pattern
   =========================== */
.contact-hero-new {
    height: 400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #002D62 0%, #00CED1 100%);
    background-image: 
        /* Dots pattern */
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        /* Wave-like lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.03) 25px,
            rgba(255, 255, 255, 0.03) 26px
        ),
        /* Radial accents */
        radial-gradient(circle at 25% 30%, rgba(244, 196, 48, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(0, 206, 209, 0.12) 0%, transparent 45%),
        /* Base gradient */
        linear-gradient(135deg, #002D62 0%, #003D7A 50%, #00A0A3 100%);
    background-size: 20px 20px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   BRANDS HERO - Diamond Pattern
   =========================== */
.brands-hero {
    height: 400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #002D62 0%, #00CED1 100%);
    background-image: 
        /* Diamond/Rhombus pattern */
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.03) 25px,
            rgba(255, 255, 255, 0.03) 50px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.03) 25px,
            rgba(255, 255, 255, 0.03) 50px
        ),
        /* Radial accents */
        radial-gradient(circle at 30% 35%, rgba(154, 205, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 65%, rgba(244, 196, 48, 0.12) 0%, transparent 50%),
        /* Base gradient */
        linear-gradient(135deg, #002D62 0%, #003D7A 50%, #00A0A3 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero-new {
    height: 400px;
    position: relative;
    background: linear-gradient(135deg, #002D62 0%, #00CED1 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(244, 196, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(154, 205, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 206, 209, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #002D62 0%, #003D7A 50%, #00A0A3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content,
.contact-hero-content,
.brands-hero-content,
.products-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1,
.contact-hero-content h1,
.brands-hero-content h1,
.products-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.gold-highlight {
    background: linear-gradient(90deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-content p,
.contact-hero-content p,
.brands-hero-content p,
.products-hero-content p {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-title.light {
    color: var(--white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.title-underline.light {
    background: linear-gradient(90deg, var(--gold), var(--white));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   WHO WE ARE SECTION
   =================================== */

.who-we-are {
    padding: 80px 0;
    background-color: var(--white);
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.who-text {
    padding-right: 20px;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.7;
}

.who-text p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.btn-read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: transparent;
    color: var(--orange);
    text-decoration: none;
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.btn-read-more:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateX(5px);
}

.who-features {
    display: grid;
    gap: 25px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border-left: 4px solid var(--gold);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   TRUSTED BRANDS SECTION (Homepage)
   =================================== */

.trusted-brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fafafa 100%);
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.brand-card-home {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-card-home:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.brand-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    overflow: hidden;
    padding: 15px;
}

.brand-card-home:hover .brand-logo-placeholder {
    transform: scale(1.05);
}

/* Brand Logo Image untuk Homepage */
.brand-logo-img-home {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.brand-initial {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
    color: var(--white);
}

.brand-card-home h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.brand-card-home p {
    font-size: 0.9rem;
    color: var(--gray);
}

.brands-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-brands-explore {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.3);
}

.btn-brands-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.4);
}

/* ===================================
   BRANDS PAGE - MAIN GRID
   =================================== */

.brands-main-section {
    padding: 80px 0;
    background-color: var(--white);
}

.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.brands-intro h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.brands-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.brands-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.brand-card-main {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    will-change: transform;
}

.brand-card-main:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.brand-card-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-smooth);
    padding: 15px;
}

.brand-card-main:hover .brand-card-logo {
    transform: scale(1.05);
}

.brand-card-logo .brand-initial {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Brand Logo Image */
.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.modal-brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.brand-card-main h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.brand-card-main p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-product-count {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.15), rgba(255, 140, 0, 0.15));
    color: var(--orange);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-view-products {
    padding: 12px 30px;
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-view-products:hover {
    background: var(--orange);
    color: var(--white);
}

/* Loading & Error States */
.loading-state,
.error-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade in animation untuk brands grid */
.brands-grid-main {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-state p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===================================
   MODAL POPUP
   =================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: var(--white);
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--orange);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 50px 50px 30px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fafafa 100%);
    display: flex;
    align-items: center;
    gap: 30px;
}

.modal-brand-logo {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}

.brand-initial-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modal-brand-info {
    flex: 1;
}

.modal-brand-info h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.modal-brand-info p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.modal-brand-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.brand-website-link,
.brand-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.brand-website-link {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.brand-website-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.brand-catalog-link {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--dark);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.3);
}

.brand-catalog-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.link-icon {
    font-size: 1.1rem;
}

.modal-products {
    padding: 40px 50px 50px;
}

.modal-section-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light-gray);
}

.modal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.modal-product-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    transition: all var(--transition-smooth);
    position: relative;
}

.modal-product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--light-gray), #fafafa);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-icon {
    font-size: 3.5rem;
}

.modal-product-card h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-category {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 6px 0 6px 25px;
    position: relative;
    line-height: 1.5;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.product-ideal {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 15px 0;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    line-height: 1.5;
}

.product-regulations {
    font-size: 0.85rem;
    color: var(--navy);
    margin: 12px 0;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1), rgba(255, 140, 0, 0.1));
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    line-height: 1.6;
}

.product-regulations strong {
    color: var(--orange);
}

.btn-inquiry {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--orange);
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--orange);
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all var(--transition-smooth);
}

.btn-inquiry:hover {
    background: var(--orange);
    color: var(--white);
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-story {
    padding: 80px 0;
    background-color: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.lead-paragraph {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
    margin: 30px 0 25px;
    line-height: 1.8;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fafafa 100%);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    max-width: 800px;
    margin: 25px auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.values-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border-top: 4px solid var(--gold);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--orange);
}

.value-number-big {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.vision-mission {
    padding: 80px 0;
    background-color: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.vm-box {
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.vision-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.mission-box {
    background: var(--white);
    border: 3px solid var(--gold);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vm-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vm-main {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.7;
}

.vm-sub {
    font-size: 1rem;
    opacity: 0.85;
    font-style: italic;
}

.mission-list-about {
    list-style: none;
    padding: 0;
}

.mission-list-about li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
}

.mission-list-about li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 1.3rem;
}

.commitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.commitment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.commitment-intro {
    max-width: 800px;
    margin: 25px auto 50px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
}

.commitment-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.commit-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.commitment-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-smooth);
    border-top: 4px solid var(--gold);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--orange);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.info-link {
    display: block;
    color: var(--orange);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.info-link:hover {
    color: var(--orange-light);
}

.info-box p,
.address-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fafafa 100%);
}

.form-container-new {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-container-new h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.btn-submit-new {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.4);
}

.arrow-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.btn-submit-new:hover .arrow-icon {
    transform: translateX(5px);
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-home {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fafafa 100%);
    text-align: center;
}

.cta-home h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.cta-home p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-smooth);
}

.btn-cta.primary {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.3);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.4);
}

.btn-cta.secondary {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-cta.secondary:hover {
    background: var(--orange);
    color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.05rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-subtitle {
        font-size: 1.5rem;
    }
    
    .who-content,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ul-navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .brands-grid-main {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        margin: 10px;
    }
    
    .modal-header,
    .modal-products {
        padding: 30px 25px;
    }
    
    .form-container-new {
        padding: 30px 25px;
    }
}

/* ===========================
   FLOATING SHAPES ANIMATION
   =========================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.hero-slider::before,
.hero-slider::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-slider::before {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-slider::after {
    width: 200px;
    height: 200px;
    background: var(--lime);
    bottom: 15%;
    right: 10%;
    animation: floatReverse 10s ease-in-out infinite;
}

/* About Hero Floating Shapes */
.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    z-index: 1;
}

.about-hero::before {
    width: 250px;
    height: 250px;
    background: var(--lime);
    top: 15%;
    left: 8%;
    animation: float 9s ease-in-out infinite;
}

.about-hero::after {
    width: 180px;
    height: 180px;
    background: var(--gold);
    bottom: 20%;
    right: 12%;
    animation: floatReverse 11s ease-in-out infinite;
}

/* Contact Hero Floating Shapes */
.contact-hero-new::before,
.contact-hero-new::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.contact-hero-new::before {
    width: 220px;
    height: 220px;
    background: var(--teal);
    top: 12%;
    right: 8%;
    animation: floatReverse 10s ease-in-out infinite;
}

.contact-hero-new::after {
    width: 160px;
    height: 160px;
    background: var(--gold);
    bottom: 18%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

/* Brands Hero Floating Shapes */
.brands-hero::before,
.brands-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.13;
    z-index: 1;
}

.brands-hero::before {
    width: 280px;
    height: 280px;
    background: var(--gold);
    top: 8%;
    left: 6%;
    animation: float 10s ease-in-out infinite;
}

.brands-hero::after {
    width: 190px;
    height: 190px;
    background: var(--lime);
    bottom: 12%;
    right: 8%;
    animation: floatReverse 9s ease-in-out infinite;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.7rem;
    }
    
    .img-logo-container {
        height: 45px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .btn-hero,
    .btn-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}
