/* ------------------------------------------
01. CSS Variables (Root)
------------------------------------------
*/
:root {
    /* Colors */
    --color-primary-dark-blue: #0a2342;
    --color-primary-blue: #004a99;
    --color-accent-red: #d90429;
    --color-accent-red-dark: #a1031e;
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-text-muted: #6c757d;
    --color-bg-light: #ffffff;
    --color-bg-grey: #f8f9fa;
    --color-border: #dee2e6;
    --color-overlay: rgba(5, 25, 49, 0.3);
    --color-overlay-strong: rgba(5, 25, 49, 0.95);
    --color-card-overlay: rgba(0, 0, 0, 0.5);
    /* Typography */
    --font-primary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* Sizing & Spacing */
    --header-height: 90px;
    --news-height: 40px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-xxl: 100px;
    /* Layout */
    --container-width: 1280px;
    --container-padding: 20px;
    /* Effects */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 12px 30px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bezier: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ------------------------------------------
02. CSS Reset
------------------------------------------
*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    padding-top: calc(var(--header-height) + var(--news-height));
    transition: padding-top 0.3s ease;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

ul,
ol {
    list-style: none;
}

a {
    color: var(--color-accent-red);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-red-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-dark-blue);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
}

h2 {
    font-size: 2.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ------------------------------------------
03. Layout & Helper Classes
------------------------------------------
*/
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
    position: relative;
    overflow-x: hidden;
}

.section-grey {
    background-color: var(--color-bg-grey);
}

.text-center {
    text-align: center;
}

.container-overflow-visible {
    overflow: visible;
}

/* ------------------------------------------
04. Button Styles
------------------------------------------
*/
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.btn-red {
    background-color: var(--color-accent-red);
    color: var(--color-text-light);
    border-color: var(--color-accent-red);
}

.btn-red:hover {
    background-color: var(--color-accent-red-dark);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-primary-dark-blue);
    border-color: var(--color-primary-dark-blue);
}

.btn-outline-dark:hover {
    background-color: var(--color-primary-dark-blue);
    color: var(--color-text-light);
    transform: translateY(-3px);
}

.btn-link {
    padding: 0;
    background: none;
    border: none;
    color: var(--color-accent-red);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-link::after {
    content: " \2192";
    transition: margin-left var(--transition-fast);
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-link:hover::after {
    margin-left: var(--spacing-sm);
}

/* ------------------------------------------
05. Header, News Alert & Navigation
------------------------------------------
*/
.news-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--news-height);
    background-color: var(--color-primary-dark-blue);
    color: var(--color-text-light);
    z-index: 2000;
    font-size: 0.85rem;
    font-family: var(--font-primary);
    font-weight: 700;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.news-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.news-ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.news-close {
    position: absolute;
    right: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    background: var(--color-primary-dark-blue);
    padding-left: 10px;
}

.news-close:hover {
    color: #fff;
}

.header {
    background-color: var(--color-bg-light);
    height: var(--header-height);
    position: fixed;
    top: var(--news-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    transition: top 0.3s ease;
}

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

.nav-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary-dark-blue);
    font-family: var(--font-primary);
    letter-spacing: -1px;
}

.nav-logo span {
    color: var(--color-accent-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    text-decoration: none;
    text-transform: uppercase;
    padding: var(--spacing-sm) 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-dark-blue);
}

.nav-store-btn {
    background-color: var(--color-primary-dark-blue);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.nav-store-btn:hover {
    background-color: var(--color-accent-red);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-light);
    min-width: 220px;
    box-shadow: var(--shadow-medium);
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    padding: var(--spacing-sm) 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-text-dark);
    font-size: 0.9rem;
    font-weight: var(--font-weight-normal);
    text-transform: none;
}

.dropdown-item:hover {
    background-color: var(--color-bg-grey);
    color: var(--color-primary-dark-blue);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    font-size: 2.2rem;
    color: var(--color-primary-dark-blue);
    z-index: 1001;
}

/* ------------------------------------------
06. Hero Section
------------------------------------------
*/
.hero {
    background-image: linear-gradient(var(--color-overlay), var(--color-overlay)), url("https://plus.unsplash.com/premium_photo-1757090130390-9da598564bf0?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    padding-top: var(--header-height);
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInFromBottom 1.5s ease-out;
}

.hero-content h1 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------------------
06.1. Hero Slider Section
-------------------------------------------
*/
.hero-slider {
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--color-overlay), var(--color-overlay));
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-lg);
    animation: fadeInFromBottom 1.5s ease-out;
}

.slider-content h1 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-weight: 900;
}

.slider-content p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-prev {
    left: var(--spacing-lg);
}

.slider-next {
    right: var(--spacing-lg);
}

.slider-indicators {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--color-text-light);
    border-color: var(--color-text-light);
}

/* ------------------------------------------
07. About Section
------------------------------------------
*/
.about-inline-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-inline-content .eyebrow {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.about-inline-content h2 {
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

/* About Red Mermaid Section */
.about-redmermaid {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-redmermaid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-red), var(--color-primary-blue));
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary-blue);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-content .founded-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-red);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.about-content .mission-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.about-content .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 74, 153, 0.1), rgba(217, 4, 41, 0.1));
    pointer-events: none;
}

/* ------------------------------------------
08. Interactive Product Section
------------------------------------------
*/
.interaction-container {
    display: flex;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #000;
}

.panel {
    position: relative;
    flex: 1;
    transition: flex 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.interaction-container:hover .panel:not(:hover) {
    flex: 0;
}

.panel:hover {
    flex: 1 0 100%;
    cursor: default;
}

.panel-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.panel-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 66, 0.6);
    transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.panel-cover h2 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.panel-cover p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.8;
}

.hover-indicator {
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    display: inline-block;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.panel:hover .panel-cover {
    opacity: 0;
    pointer-events: none;
}

.panel-expanded {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, visibility 0s linear 0.3s;
    display: grid;
    grid-template-columns: 25% 75%;
}

.panel:hover .panel-expanded {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}

.expanded-list-col {
    background: var(--color-bg-grey);
    border-right: 1px solid var(--color-border);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-category-title {
    padding: 0 30px 20px;
    font-family: var(--font-primary);
    font-weight: 900;
    color: var(--color-primary-dark-blue);
    font-size: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-accent-red);
    margin-bottom: 20px;
}

.list-item {
    padding: 15px 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
}

.list-item:hover {
    background: #fff;
    color: var(--color-accent-red);
    border-left-color: var(--color-accent-red);
    padding-left: 35px;
}

.list-item::after {
    content: "→";
    opacity: 0;
    transition: 0.2s;
}

.list-item:hover::after {
    opacity: 1;
}

.expanded-preview-col {
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.preview-placeholder {
    text-align: center;
    color: #ccc;
}

.preview-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    font-weight: 900;
}

.preview-data {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 350px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    background: #fff;
}

.preview-data.active {
    opacity: 1;
    visibility: visible;
}

.preview-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.preview-img-wrapper img {
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transform: scale(0.9);
    transition: transform 0.4s;
}

.preview-data.active img {
    transform: scale(1);
}

.preview-info-wrapper {
    background: var(--color-primary-dark-blue);
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-info-wrapper h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

.preview-tag {
    color: var(--color-accent-red);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.preview-info-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.preview-price {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-price span {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text-light);
}

.preview-price .sale-price {
    color: var(--color-accent-red);
}

.preview-price .original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------
09. Certifications & Brands
------------------------------------------
*/
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.cert-item {
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
}

.cert-item:hover {
    transform: scale(1.1);
}

.cert-item img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    display: block;
    margin: 0 auto;
}

.cert-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.cert-item p {
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.cert-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--color-bg-grey);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.3s;
}

.cert-logo-placeholder i {
    font-size: 2rem;
    color: var(--color-text-muted);
}

.cert-item:hover .cert-logo-placeholder {
    border-color: var(--color-accent-red);
}

.cert-item:hover .cert-logo-placeholder i {
    color: var(--color-accent-red);
}

/* -------------------------------------------
10. Brands Section Styles
------------------------------------------- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.brand-item {
    text-align: center;
}

.brand-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-5px);
}

.brand-checkbox {
    position: relative;
    margin-bottom: 15px;
}

.brand-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label {
    display: block;
    width: 120px;
    height: 120px;
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.checkbox-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-blue), var(--color-primary-dark-blue));
    color: white;
    font-size: 2.5rem;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--color-accent-red);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.checkbox-label::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 3;
}

.brand-checkbox input[type="checkbox"]:checked+.checkbox-label {
    border-color: var(--color-accent-red);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

.brand-checkbox input[type="checkbox"]:checked+.checkbox-label::before,
.brand-checkbox input[type="checkbox"]:checked+.checkbox-label::after {
    opacity: 1;
    transform: scale(1);
}

.brand-checkbox input[type="checkbox"]:checked+.checkbox-label img {
    transform: scale(0.95);
    filter: brightness(1.1);
}

.brand-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark-blue);
    margin: 0;
    transition: color 0.3s ease;
}

.brand-link:hover .brand-item h3 {
    color: var(--color-accent-red);
}

.brands-cta {
    margin-top: 60px;
}

.brands-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Brands Grid */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .checkbox-label {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .checkbox-label {
        width: 80px;
        height: 80px;
    }

    .brand-item h3 {
        font-size: 0.9rem;
    }

    .checkbox-label::before,
    .checkbox-label::after {
        width: 20px;
        height: 20px;
    }

    .checkbox-label::after {
        top: 10px;
        right: 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .checkbox-label {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
    }
}

/* Wave Background Styles */
.wave-background {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.wave-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.wave-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,165.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    background-position: center top;
}

.wave-background .container {
    position: relative;
    z-index: 2;
}

.wave-background h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wave-background ul li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wave-background ul li span {
    background: #fff !important;
    border-color: #333 !important;
}

.wave-background ul li a {
    color: #fff !important;
    font-weight: 500 !important;
}

.wave-background .brands-cta {
    padding-left: 0 !important;
    text-align: center;
}

.wave-background .btn-red {
    background: #fff !important;
    color: #764ba2 !important;
    border: 2px solid #fff;
}

.wave-background .btn-red:hover {
    background: transparent !important;
    color: #fff !important;
}

/* Explore All Brands Button */
.btn-outline-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--color-primary-blue);
    color: var(--color-primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--color-primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.close-modal:hover {
    color: var(--color-accent-red);
}

.modal-content h3 {
    color: var(--color-primary-dark-blue);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 1.1rem;
    color: #555;
}

/* ------------------------------------------
10. Contact
------------------------------------------
*/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-list li {
    display: flex;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-list .icon {
    font-size: 1.5rem;
    color: var(--color-accent-red);
    margin-right: 15px;
}

.form-control {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

/* ------------------------------------------
11. Footer
------------------------------------------
*/
.footer {
    background-color: var(--color-primary-dark-blue);
    color: var(--color-text-light);
    padding-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1.5fr;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
}

.footer-column h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

/* ------------------------------------------
12. Responsive
------------------------------------------
*/
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-bg-light);
        padding: 130px 20px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s;
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-toggle {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: var(--spacing-md);
    }

    .slider-next {
        right: var(--spacing-md);
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .interaction-container {
        flex-direction: column;
        height: auto;
    }

    .panel {
        flex: none;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #fff;
    }

    .interaction-container:hover .panel:not(:hover) {
        flex: none;
    }

    .panel:hover {
        flex: none;
    }

    .panel-cover {
        position: relative;
        height: 250px;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .panel-expanded {
        display: none !important;
    }

    .interaction-container::after {
        content: "View on Desktop for Interactive Experience";
        display: block;
        text-align: center;
        color: #fff;
        padding: 10px;
        font-size: 0.8rem;
    }
}

.services-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.services-section h2.section-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #000;
    padding: 40px 0;
    width: 100%;
}

.services-header {
    position: relative;
    background: url('../images/bg/available_service.png') no-repeat center center/cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.services-header h2 {
    position: relative;
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 3px;
    z-index: 2;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    text-align: left;
}

.service-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border-radius: 12px;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Hover Effect: Popup Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 120, 154, 0.9);
    /* Red Mermaid Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.service-overlay p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.service-features {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.service-img-container:hover .service-overlay {
    opacity: 1;
}

.service-img-container:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card p.subtitle {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.recipes-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.recipes-section h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    /* In case you want to make them links later */
}

.recipe-img-wrapper {
    width: 100%;
    border-radius: 16px;
    /* Distinct rounded corners */
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    aspect-ratio: 4/3;
    /* Keeps images uniform */
    position: relative;
}

.recipe-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.recipe-card:hover .recipe-img-wrapper img {
    transform: scale(1.08);
}

.recipe-title {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.6;
    max-width: 90%;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}




.faq-section {
    padding: 20px 0;
    background-color: #f7f7f7;
    /* Matching the light grey background in your image */
}

.faq-section h2 {
    text-align: center;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 10px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Active state for JavaScript */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* Optional: turns + into x */
}

/* Customizations for the Company Info Interactive Panels */
.company-info-interaction {
    height: 850px;
    margin-bottom: 60px;
    background: var(--color-primary-dark-blue);
    gap: 20px;
    padding: 20px 20px 40px 20px;
    box-sizing: border-box;
    transition: padding 0.8s cubic-bezier(0.4, 0, 0.2, 1), gap 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-info-interaction .panel {
    border-right: none;
    border-radius: 12px;
    height: calc(100% - 60px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

/* Default gap, padding & margins for the un-hovered state */
.company-info-interaction:not(:hover) {
    gap: 20px;
}

/* Odd panels pushed top, Even panels pushed down (only when not hovered) */
.company-info-interaction:not(:hover) .panel:nth-child(odd) {
    margin-top: 0;
}

.company-info-interaction:not(:hover) .panel:nth-child(even) {
    margin-top: 60px;
}

/* When the container is hovered, panels expand completely to fill it */
.company-info-interaction:hover {
    padding: 0;
    gap: 0;
}

.company-info-interaction:hover .panel {
    margin-top: 0;
    height: 100%;
    border-radius: 0;
}

.company-info-interaction .panel-cover::before {
    background: rgba(10, 35, 66, 0.7);
}

.company-info-interaction .panel-cover-content h2,
.company-info-interaction .panel-cover-content p,
.company-info-interaction .panel-cover-content .hover-indicator {
    color: #ffffff;
}

.company-info-interaction .panel-expanded {
    display: block;
    overflow-y: auto;
    background: var(--color-primary-dark-blue);
    padding: 0;
}

.company-info-interaction .panel-expanded>section {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ------------------------------------------
   Customizations for the Product Interactive Panels
   (Card presentation style matching Company Info section)
   ------------------------------------------
*/
.product-interaction {
    height: 750px;
    background: var(--color-primary-dark-blue);
    gap: 20px;
    padding: 20px 20px 40px 20px;
    box-sizing: border-box;
    transition: padding 0.8s cubic-bezier(0.4, 0, 0.2, 1), gap 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-interaction .panel {
    border-right: none;
    border-radius: 12px;
    height: calc(100% - 60px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

.product-interaction .panel-cover {
    border-radius: 12px;
}

/* Default gap & staggered layout for un-hovered state */
.product-interaction:not(:hover) {
    gap: 20px;
}

/* Odd panels at top, even panels pushed down */
.product-interaction:not(:hover) .panel:nth-child(odd) {
    margin-top: 0;
}

.product-interaction:not(:hover) .panel:nth-child(even) {
    margin-top: 60px;
}

/* When the container is hovered, panels expand to fill it fully */
.product-interaction:hover {
    padding: 0;
    gap: 0;
}

.product-interaction:hover .panel {
    margin-top: 0;
    height: 100%;
    border-radius: 0;
}

.product-interaction .panel-cover::before {
    background: rgba(10, 35, 66, 0.7);
}

.product-interaction .panel-cover-content h2,
.product-interaction .panel-cover-content p,
.product-interaction .panel-cover-content .hover-indicator {
    color: #ffffff;
}

/* ------------------------------------------
   Responsive Design for Company Info Interactive Section
   ------------------------------------------
*/

/* Medium Devices (Tablets) */
@media (max-width: 1024px) {
    .interaction-container .panel-expanded .section-title {
        font-size: 1.2rem;
    }
    
    .interaction-container .panel-expanded .section-content {
        font-size: 0.9rem;
    }
    
    /* Company Info section titles and subtitles */
    .company-info-interaction .panel-expanded h2 {
        font-size: 1.3rem !important;
    }
    
    .company-info-interaction .panel-expanded h3 {
        font-size: 1.1rem !important;
    }
    
    .company-info-interaction .panel-expanded p {
        font-size: 0.85rem !important;
    }
    
    .company-info-interaction .panel-expanded ul {
        font-size: 0.8rem !important;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 768px) {
    .interaction-container .panel-expanded {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .interaction-container .panel-expanded .section-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .interaction-container .panel-expanded .section-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Company Info section - Mobile specific */
    .company-info-interaction .panel-expanded h2 {
        font-size: 1.1rem !important;
        line-height: 1.2;
    }
    
    .company-info-interaction .panel-expanded h3 {
        font-size: 0.95rem !important;
    }
    
    .company-info-interaction .panel-expanded p {
        font-size: 0.75rem !important;
        line-height: 1.4;
        padding: 15px !important;
    }
    
    .company-info-interaction .panel-expanded ul {
        font-size: 0.7rem !important;
        line-height: 1.8;
    }
    
    .company-info-interaction .panel-expanded ul li {
        padding-left: 15px !important;
    }
    
    /* Adjust card heights for mobile */
    .company-info-interaction .panel {
        min-height: 500px !important;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .interaction-container .panel-expanded {
        padding: 15px;
        gap: 10px;
    }
    
    .interaction-container .panel-expanded .section-title {
        font-size: 0.9rem;
    }
    
    .interaction-container .panel-expanded .section-content {
        font-size: 0.8rem;
    }
    
    /* Company Info section - Extra small mobile */
    .company-info-interaction .panel-expanded h2 {
        font-size: 1rem !important;
    }
    
    .company-info-interaction .panel-expanded h3 {
        font-size: 0.85rem !important;
    }
    
    .company-info-interaction .panel-expanded p {
        font-size: 0.7rem !important;
        padding: 12px !important;
    }
    
    .company-info-interaction .panel-expanded ul {
        font-size: 0.65rem !important;
        line-height: 1.6;
    }
    
    /* Further reduce card heights for very small screens */
    .company-info-interaction .panel {
        min-height: 450px !important;
    }
}