/*
 * GENOMER - Minimal Modern Design
 * Scientific, clean, and professional styling
 */

:root {
    --primary-blue: #0052CC;
    --primary-blue-hover: #0747A6;
    --text-primary: #172B4D;
    --text-secondary: #5E6C84;
    --bg-light: #F4F5F7;
    --bg-white: #FFFFFF;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* =================================
   TYPOGRAPHY
================================= */
body {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
}

/* =================================
   COLOR SYSTEM
================================= */
.steelblue-color,
.blue-color {
    color: var(--primary-blue) !important;
}

.btn-blue {
    background-color: var(--primary-blue) !important;
    border: none !important;
}

.btn-blue:hover,
.btn-blue.blue-hover:hover {
    background-color: var(--primary-blue-hover) !important;
}

.section-id.blue-color {
    color: var(--primary-blue) !important;
}

.box-list-icon.blue-color,
.box-list-icon.blue-color i {
    color: var(--primary-blue) !important;
}

.flaticon-heart-2.blue-color,
.flaticon-medical.blue-color,
.flaticon-microscope.blue-color {
    color: var(--primary-blue) !important;
}

/* =================================
   HERO SECTION
================================= */
section#hero-3.hero-section {
    position: relative !important;
    background-image: url('../images/dna.jpg') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    padding: 140px 0 !important;
    overflow: hidden !important;
}

section#hero-3 .hero-background-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.4) 100%) !important;
    z-index: 1 !important;
}

section#hero-3 .container {
    position: relative !important;
    z-index: 2 !important;
}

section#hero-3 .row.hero-row {
    min-height: 65vh !important;
    align-items: center !important;
}

/* Hero Content */
section#hero-3 .hero-content {
    max-width: 650px !important;
}

section#hero-3 .hero-tag.section-id {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: var(--primary-blue) !important;
    background: rgba(0, 82, 204, 0.1) !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    margin-bottom: 28px !important;
}

section#hero-3 .hero-title {
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 28px !important;
    color: #0a1929 !important;
}

section#hero-3 .hero-description {
    font-size: 19px !important;
    line-height: 1.7 !important;
    color: #3e4c59 !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}

/* Hero Buttons */
section#hero-3 .hero-buttons {
    margin-top: 40px !important;
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

section#hero-3 .btn-primary-cta {
    padding: 16px 36px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2) !important;
}

section#hero-3 .btn-primary-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.35) !important;
}

section#hero-3 .btn-outline-cta {
    padding: 16px 36px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

section#hero-3 .btn-outline-cta:hover {
    background: var(--primary-blue) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2) !important;
}

/* =================================
   FEATURES & CARDS
================================= */
.abox-3,
.sbox-7 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius);
}

.abox-3:hover,
.sbox-7:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* =================================
   MICROBIOME SECTION
================================= */
#microbiome-1 {
    background: linear-gradient(135deg, #F7F9FC 0%, #EDF2F7 100%) !important;
}

/* =================================
   RESPONSIVE DESIGN
================================= */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
    section#hero-3.hero-section {
        padding: 100px 0 !important;
        background-position: center !important;
    }

    section#hero-3 .hero-background-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%) !important;
    }

    section#hero-3 .hero-title {
        font-size: 44px !important;
    }

    section#hero-3 .hero-content {
        text-align: center !important;
        max-width: 100% !important;
    }

    section#hero-3 .hero-buttons {
        justify-content: center !important;
    }

    section#hero-3 .row.hero-row {
        min-height: auto !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) {
    section#hero-3.hero-section {
        padding: 80px 0 !important;
    }

    section#hero-3 .hero-title {
        font-size: 36px !important;
    }

    section#hero-3 .hero-description {
        font-size: 17px !important;
    }

    section#hero-3 .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }

    section#hero-3 .btn-primary-cta,
    section#hero-3 .btn-outline-cta {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    section#hero-3.hero-section {
        padding: 60px 0 !important;
    }

    section#hero-3 .hero-title {
        font-size: 30px !important;
    }

    section#hero-3 .hero-description {
        font-size: 16px !important;
    }

    section#hero-3 .hero-tag.section-id {
        font-size: 10px !important;
        padding: 8px 14px !important;
        letter-spacing: 1.5px !important;
    }
}

/* =================================
   ABOUT PAGE
================================= */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 82, 204, 0.15) !important;
}

/* =================================
   FOOTER
================================= */
.footer-logo-img {
    width: auto !important;
    height: auto !important;
    max-width: 180px !important;
    max-height: none !important;
}

/* =================================
   SMOOTH TRANSITIONS
================================= */
a, .btn {
    transition: all 0.3s ease;
}
