/* ============================================================
   ORKA PREMIUM - MASTER STYLESHEET
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */
:root {
    --bg-primary: #090909;
    --bg-secondary: #111111;
    --bg-card: #181818;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent: #a7e635;
    --accent-hover: #c7ff50;
    --accent-secondary: #6eeb83;
    --warning: #ffb800;
    --white: #ffffff;
    --text-body: #b8b8b8;
    --text-muted: #7b7b7b;
    --radius: 18px;
    --transition: 300ms cubic-bezier(0.25, 0.8, 0.25, 1.2);
    --transition-smooth: 300ms ease;
    --glass-bg: rgba(24, 24, 24, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--white);
}
a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-smooth);
}
a:hover {
    color: var(--accent-hover);
}
img {
    max-width: 100%;
    height: auto;
}
::selection {
    background: var(--accent);
    color: #000;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-padding {
    padding: 120px 0;
}
.section-padding-sm {
    padding: 80px 0;
}
.bg-primary-dark {
    background-color: var(--bg-primary);
}
.bg-secondary-dark {
    background-color: var(--bg-secondary);
}
.text-accent {
    color: var(--accent) !important;
}
.text-muted-custom {
    color: var(--text-muted) !important;
}
.border-custom {
    border-color: var(--border-color) !important;
}
.radius-custom {
    border-radius: var(--radius);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-premium {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 14px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}
.btn-premium-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 4px 20px rgba(167, 230, 53, 0.3);
}
.btn-premium-primary:hover {
    background: var(--accent-hover);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(167, 230, 53, 0.45);
}
.btn-premium-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-premium-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.btn-premium-dark {
    background: var(--bg-card);
    color: var(--white);
    border: 1px solid var(--border-color);
}
.btn-premium-dark:hover {
    background: #222;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
/* Button ripple */
.btn-premium::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 10%,
        transparent 10.01%
    );
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition:
        transform 0.5s,
        opacity 1s;
}
.btn-premium:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* ============================================================
   HEADER / NAVIGATION - Premium Sticky
   ============================================================ */
.navbar-premium {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}
.navbar-premium.scrolled {
    background: rgba(9, 9, 9, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.navbar-premium .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 8px 16px !important;
    transition: color var(--transition-smooth);
    position: relative;
}
.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    color: var(--accent) !important;
}
.navbar-premium .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}
.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-brand-premium img {
    height: 50px;
    transition: height var(--transition-smooth);
}
.navbar-premium.scrolled .navbar-brand-premium img {
    height: 40px;
}
.lang-selector {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    outline: none;
}
.lang-selector:hover,
.lang-selector:focus {
    border-color: var(--accent);
    color: var(--accent);
}
.lang-selector option {
    background: var(--bg-card);
    color: var(--white);
}

/* Override for sub-pages that need solid nav from start */
.navbar-premium.solid-start {
    background: rgba(9, 9, 9, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.navbar-premium.solid-start .navbar-brand-premium img {
    height: 40px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}
.section-description {
    font-size: 17px;
    color: var(--text-body);
    max-width: 650px;
    line-height: 1.7;
}
.section-header {
    margin-bottom: 60px;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
    padding: 232px 0 100px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg-primary)),
        url("../images/hero-bg.jpg") no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
}
.page-hero-title {
    font-family: "Bebas Neue", "Orbitron", sans-serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
}
.breadcrumb-custom {
    justify-content: center;
    font-size: 13px;
}
.breadcrumb-custom a {
    color: var(--text-muted);
}
.breadcrumb-custom .active {
    color: var(--accent);
}

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            var(--bg-primary) 100%
        ),
        url("../images/hero-bg.jpg") no-repeat center center;
    background-size: cover;
}
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    background: rgba(167, 230, 53, 0.15);
    border-radius: 50%;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    border: 1px solid rgba(167, 230, 53, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
}
.hero-title {
    font-family: "Bebas Neue", "Orbitron", sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-title .accent {
    color: var(--accent);
}
.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}
.hero-badge-item i {
    font-size: 20px;
    color: var(--accent);
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-indicator span {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    position: relative;
}
.scroll-mouse::after {
    content: "";
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%,
    100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ============================================================
   SPECIES CARDS
   ============================================================ */
.species-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.species-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(167, 230, 53, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity var(--transition-smooth);
}
.species-card:hover::before {
    opacity: 1;
}
.species-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.species-card-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
.species-card:hover .species-card-img {
    transform: scale(1.08);
}
.species-card-name {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.species-card-latin {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
}
.species-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card {
    position: relative;
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
}
.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}
.category-card-img-wrap {
    overflow: hidden;
    height: 220px;
}
.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover .category-card-img {
    transform: scale(1.1);
}
.category-card-body {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.category-card-count {
    font-size: 13px;
    color: var(--text-muted);
}
.category-card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(167, 230, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition-smooth);
}
.category-card:hover .category-card-arrow {
    background: var(--accent);
    color: #000;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.product-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: var(--bg-secondary);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img {
    transform: scale(1.08);
}
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 9, 0.4);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card:hover .product-card-overlay {
    opacity: 1;
}
.product-card-body {
    padding: 24px;
}
.product-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.product-card-category {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.product-card-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.product-card-spec {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-card-spec i {
    color: var(--accent);
    font-size: 13px;
}
.product-card-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.color-count {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 18px;
}

/* ============================================================
   TECH BLOCKS
   ============================================================ */
.tech-block {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: all var(--transition);
    cursor: default;
}
.tech-block:hover {
    border-color: rgba(167, 230, 53, 0.25);
    transform: translateX(6px);
}
.tech-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(167, 230, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
}
.tech-block-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.tech-block-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url("../images/hero-bg.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(167, 230, 53, 0.15);
    border: 2px solid rgba(167, 230, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.video-play-btn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(167, 230, 53, 0.15);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
.video-play-btn i {
    font-size: 36px;
    color: var(--accent);
    margin-left: 6px;
}
.video-play-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}
.video-play-btn:hover i {
    color: #000;
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stat-card {
    text-align: center;
    padding: 40px 20px;
}
.stat-number {
    font-family: "Bebas Neue", "Orbitron", sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.stat-label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ============================================================
   FEATURE / BENEFIT CARDS
   ============================================================ */
.feature-card,
.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}
.feature-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.feature-card-icon,
.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(167, 230, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin: 0 auto 18px;
    transition: all var(--transition);
}
.feature-card:hover .feature-card-icon,
.benefit-card:hover .benefit-icon {
    background: var(--accent);
    color: #000;
}
.feature-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   DEALER SECTION
   ============================================================ */
.dealer-section {
    position: relative;
    overflow: hidden;
}
.dealer-map {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 25% 40%,
            rgba(167, 230, 53, 0.5) 0%,
            transparent 3%
        ),
        radial-gradient(
            circle at 48% 35%,
            rgba(167, 230, 53, 0.6) 0%,
            transparent 2.5%
        ),
        radial-gradient(
            circle at 55% 55%,
            rgba(167, 230, 53, 0.5) 0%,
            transparent 3%
        ),
        radial-gradient(
            circle at 35% 60%,
            rgba(167, 230, 53, 0.4) 0%,
            transparent 2%
        ),
        radial-gradient(
            circle at 60% 30%,
            rgba(167, 230, 53, 0.5) 0%,
            transparent 2.5%
        ),
        radial-gradient(
            circle at 42% 45%,
            rgba(167, 230, 53, 0.6) 0%,
            transparent 3.5%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(167, 230, 53, 0.3) 0%,
            transparent 2%
        ),
        radial-gradient(
            circle at 30% 50%,
            rgba(167, 230, 53, 0.4) 0%,
            transparent 2.5%
        );
}
.dealer-content {
    position: relative;
    z-index: 2;
}

/* ============================================================
   INSTAGRAM GALLERY
   ============================================================ */
.ig-gallery-wrap {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}
.ig-gallery-wrap::-webkit-scrollbar {
    display: none;
}
.ig-gallery-item {
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.ig-gallery-item:hover {
    border-color: var(--accent);
    transform: scale(1.03);
}
.ig-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}
.ig-gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
}
.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.news-card-img-wrap {
    height: 200px;
    overflow: hidden;
}
.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.news-card:hover .news-card-img {
    transform: scale(1.08);
}
.news-card-body {
    padding: 20px;
}
.news-card-date {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}
.news-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card-excerpt {
    font-size: 13px;
    color: var(--text-body);
    margin-bottom: 14px;
}
.news-card-link {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    transition: color var(--transition-smooth);
}
.news-card-link:hover {
    color: var(--accent-hover);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.newsletter-input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 14px 24px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    width: 100%;
    max-width: 420px;
    transition: border-color var(--transition-smooth);
    outline: none;
}
.newsletter-input:focus {
    border-color: var(--accent);
}
.newsletter-input::placeholder {
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-premium {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}
.footer-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}
.footer-link {
    display: block;
    color: var(--text-body);
    font-size: 14px;
    padding: 5px 0;
    transition: color var(--transition-smooth);
}
.footer-link:hover {
    color: var(--accent);
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: all var(--transition-smooth);
}
.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(167, 230, 53, 0.05);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-premium .modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}
.modal-premium .modal-header {
    border-bottom: 1px solid var(--border-color);
}
.modal-premium .btn-close {
    filter: invert(1);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

/* Size Selector Buttons */
.size-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.size-btn {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    background: var(--bg-card);
    color: var(--text-body);
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}
.size-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.size-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* Color Grid */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.color-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}
.color-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.color-card-img {
    width: 100%;
    /* aspect-ratio: 1; */
    /* object-fit: contain; */
    background: #111111;
    padding: 12px;
    border-radius: 20px !important;
}
.color-card-body {
    padding: 0 10px 14px;
}
.color-card-sku {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}
.color-card-name {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Selected color highlight */
.color-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(167, 230, 53, 0.3);
}

/* Size sub-image */
.size-preview-img {
    height: 400px;
    max-height: 600px;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--bg-secondary);
    margin-bottom: 20px;
}

/* ============================================================
   LIGHTBOX GALLERY
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    z-index: 10;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}
.lightbox-nav:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.lightbox-prev {
    left: -60px;
}
.lightbox-next {
    right: -60px;
}
.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .lightbox-prev {
        left: 0;
    }
    .lightbox-next {
        right: 0;
    }
    .lightbox-close {
        top: -44px;
        right: 0;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

.product-detail-section {
    padding-top: 172px;
    padding-bottom: 60px;
}
.main-image-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.main-image-wrap img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.main-image-wrap:hover img {
    transform: scale(1.05);
}
.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-smooth);
    opacity: 0.6;
    flex-shrink: 0;
}
.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--accent);
    opacity: 1;
}
.product-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(167, 230, 53, 0.1);
    color: var(--accent);
    margin-right: 8px;
    margin-bottom: 8px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.spec-row .label {
    color: var(--text-muted);
}
.spec-row .value {
    color: var(--white);
    font-weight: 600;
}
.color-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-smooth);
}
.color-option:hover,
.color-option.active {
    border-color: var(--white);
    transform: scale(1.15);
}

/* Tabs */
.nav-tabs-custom {
    border-bottom: 1px solid var(--border-color);
    gap: 4px;
}
.nav-tabs-custom .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: none;
    padding: 14px 20px;
    position: relative;
    transition: color var(--transition-smooth);
    background: transparent;
}
.nav-tabs-custom .nav-link:hover {
    color: var(--white);
}
.nav-tabs-custom .nav-link.active {
    color: var(--accent);
    background: transparent;
    border: none;
}
.nav-tabs-custom .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
}
.rigging-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}
.rigging-card:hover {
    border-color: rgba(167, 230, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.rigging-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(167, 230, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin: 0 auto 14px;
}
.rigging-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

/* ============================================================
   DEALER PAGE
   ============================================================ */
.step-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: all var(--transition);
}
.step-card:hover {
    border-color: rgba(167, 230, 53, 0.25);
    transform: translateX(6px);
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}
.form-control-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: border-color var(--transition-smooth);
}
.form-control-custom:focus {
    border-color: var(--accent);
    box-shadow: none;
    outline: none;
}
.form-control-custom::placeholder {
    color: var(--text-muted);
}
textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

/* FAQ */
.accordion-custom .accordion-item {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-custom .accordion-button {
    background: var(--bg-card);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 24px;
    box-shadow: none !important;
}
.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--bg-card);
    color: var(--accent);
}
.accordion-custom .accordion-button::after {
    filter: invert(1);
}
.accordion-custom .accordion-body {
    background: var(--bg-card);
    color: var(--text-body);
    padding: 0 24px 20px;
    font-size: 14px;
}

/* ============================================================
   TECHNOLOGY PAGE
   ============================================================ */
.tech-process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}
.tech-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.tech-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(167, 230, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin: 0 auto 20px;
}
.tech-process-card:hover .tech-process-icon {
    background: var(--accent);
    color: #000;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}
.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 230, 53, 0.3);
    box-shadow: var(--shadow-hover);
}
.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(167, 230, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin: 0 auto 16px;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin: 6px;
}
.cert-badge i {
    font-size: 24px;
    color: var(--accent);
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-item:hover {
    transform: scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================================
   TIMELINE (shared: about & technology)
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}
.timeline-item {
    position: relative;
    padding-bottom: 36px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-primary);
}
.timeline-year {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}
.timeline-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.timeline-desc {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.featured-article {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 420px;
    transition: all var(--transition);
}
.featured-article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.featured-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-article:hover img {
    transform: scale(1.05);
}
.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
}
.featured-date {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}
.featured-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin: 8px 0;
}
.search-input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 20px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    width: 100%;
}
.search-input:focus {
    border-color: var(--accent);
    outline: none;
}
.search-input::placeholder {
    color: var(--text-muted);
}
.category-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    margin: 3px;
}
.category-tag:hover,
.category-tag.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(167, 230, 53, 0.05);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all var(--transition);
}
.contact-info-card:hover {
    border-color: rgba(167, 230, 53, 0.3);
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(167, 230, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 350px;
    background: var(--bg-card);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-custom .page-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    border-radius: 8px;
    margin: 0 4px;
    padding: 8px 14px;
    font-size: 14px;
    transition: all var(--transition-smooth);
}
.pagination-custom .page-link:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.pagination-custom .active .page-link {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ============================================================
   ANIMATIONS - FADE UP
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 {
    transition-delay: 0.1s;
}
.fade-up-delay-2 {
    transition-delay: 0.2s;
}
.fade-up-delay-3 {
    transition-delay: 0.3s;
}
.fade-up-delay-4 {
    transition-delay: 0.4s;
}
.fade-up-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   PARALLAX
   ============================================================ */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .navbar-premium {
        background: rgba(9, 9, 9, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    .navbar-premium .navbar-brand-premium img {
        height: 40px;
    }
    .navbar-premium .navbar-collapse {
        background: rgba(9, 9, 9, 0.98);
        padding: 20px;
        border-radius: 0 0 var(--radius) var(--radius);
        margin-top: 10px;
    }
    .navbar-premium .navbar-toggler i { color: #fff !important; }
    .section-padding {
        padding: 80px 0;
    }
    .page-hero {
        padding: 182px 0 70px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-section {
        min-height: 600px;
    }
    .species-card-img {
        width: 120px;
        height: 120px;
    }
    .video-section {
        height: 50vh;
        min-height: 350px;
    }
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    .video-play-btn i {
        font-size: 26px;
    }
    .parallax-bg {
        background-attachment: scroll;
    }
    .featured-article {
        height: 280px;
    }
    .featured-title {
        font-size: 20px;
    }
    .product-detail-section {
        padding-top: 152px;
    }
    .timeline {
        padding-left: 20px;
    }
    .footer-premium {
        padding: 50px 0 30px;
    }
    .colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 34px;
    }
    .hero-badges {
        gap: 16px;
    }
    .hero-badge-item {
        font-size: 10px;
    }
    .btn-premium {
        padding: 12px 24px;
        font-size: 12px;
    }
    .section-title {
        font-size: 28px;
    }
    .page-hero-title {
        font-size: 34px;
    }
    .ig-gallery-item {
        width: 180px;
        height: 180px;
    }
    .featured-article {
        height: 220px;
    }
    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Underwater Video */
.underwater-video-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
}
.underwater-video-header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--border-color);
}
.underwater-video-header i {
    font-size: 24px;
    color: var(--accent);
}
.underwater-video-header h4 {
    font-size: 16px;
    margin: 0;
}
.underwater-video-body {
    position: relative;
}
.underwater-video-body .ratio {
    background: #000;
}
.underwater-video-body iframe {
    border: none;
}
