/* ============================================
   ARKATECH - Brand Colors & Variables
   ============================================ */
:root {
    /* Brand Colors from Logo */
    --cyan: #00BCD4;
    --cyan-light: #4DD0E1;
    --cyan-dark: #0097A7;
    --purple: #6A1B9A;
    --purple-light: #8E24AA;
    --purple-dark: #4A148C;
    --magenta: #D81B60;
    --magenta-light: #EC407A;
    --magenta-dark: #AD1457;
    --teal: #26C6DA;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--magenta) 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1628 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(106, 27, 154, 0.05));

    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --navbar-bg: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Dark Theme */
[data-bs-theme="dark"] {
    --bg-primary: #0a0a1a;
    --bg-secondary: #111127;
    --bg-card: #16162a;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --border-color: #2a2a40;
    --navbar-bg: rgba(10, 10, 26, 0.95);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --gradient-card: linear-gradient(135deg, rgba(0, 188, 212, 0.08), rgba(106, 27, 154, 0.08));
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    z-index: 1050;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 4px;
    color: var(--purple-dark);
    transition: color 0.3s ease;
}

[data-bs-theme="dark"] .brand-text {
    color: var(--cyan-light);
}

.navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--purple);
    background: rgba(106, 27, 154, 0.05);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-outline-light-custom {
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
}

.btn-outline-light-custom:hover {
    background: var(--gradient-card);
    border-color: var(--purple-light);
    color: var(--purple);
}

.btn-nav-login {
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 8px;
}

.btn-nav-login:hover {
    background: rgba(106, 27, 154, 0.08);
    color: var(--purple-dark);
}

.btn-nav-join {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1.25rem;
    border-radius: 8px;
    border: none;
}

.btn-nav-join:hover {
    opacity: 0.9;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--bg-primary);
    overflow: hidden;
}

[data-bs-theme="dark"] .hero-section {
    background: var(--gradient-hero);
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

[data-bs-theme="dark"] .shape {
    opacity: 0.2;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--cyan);
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--magenta);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    color: var(--purple);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .hero-badge {
    color: var(--cyan-light);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.35);
}

.btn-outline-custom {
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 1rem;
}

.btn-outline-custom:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(106, 27, 154, 0.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual (Right Side) */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 175px solid var(--purple);
    opacity: 0.08;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: float 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.15; }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.card-1 i {
    color: var(--cyan);
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: -2s;
}

.card-2 i {
    color: var(--purple);
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -4s;
}

.card-3 i {
    color: var(--magenta);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.icon-cyan {
    background: rgba(0, 188, 212, 0.1);
    color: var(--cyan);
}

.icon-purple {
    background: rgba(106, 27, 154, 0.1);
    color: var(--purple);
}

.icon-magenta {
    background: rgba(216, 27, 96, 0.1);
    color: var(--magenta);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-link:hover {
    color: var(--magenta);
    gap: 0.75rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-visual {
    position: relative;
}

.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-card-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-card-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about-card-item i {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-1 i { color: var(--cyan); }
.item-2 i { color: var(--purple); }
.item-3 i { color: var(--magenta); }

.about-card-item h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.about-card-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-feature-item i {
    color: var(--cyan);
    font-size: 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: #ffffff;
    color: var(--purple-dark);
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border-radius: 12px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    border: none;
}

.btn-cta:hover {
    background: #ffffff;
    color: var(--magenta);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

[data-bs-theme="dark"] .footer-section {
    background: #06060f;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

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

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1.5rem;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-card {
        padding: 2.5rem;
        text-align: center;
    }

    .cta-card .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .navbar .d-flex {
        flex-wrap: wrap;
        gap: 0.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-outline-custom {
        margin-left: 0;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar .dropdown,
    .navbar #themeToggle {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .brand-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .btn-nav-login {
        display: none;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    overflow: hidden;
    text-align: center;
}

.page-header .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
}

.page-header .hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

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

.timeline-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.timeline-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.contact-info-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-item a {
    color: var(--text-secondary);
}

.contact-info-item a:hover {
    color: var(--purple);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-form-card .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
}

.map-section {
    padding: 0 0 80px;
    background: var(--bg-primary);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

/* Active nav link */
.navbar .nav-link.active {
    color: var(--purple);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.product-row {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-row:last-child {
    border-bottom: none;
}

.product-row:first-child {
    padding-top: 0;
}

.product-visual {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.product-visual-lg {
    height: 350px;
    font-size: 6rem;
}

.product-visual-cyan {
    background: rgba(0, 188, 212, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(0, 188, 212, 0.15);
}

.product-visual-purple {
    background: rgba(106, 27, 154, 0.08);
    color: var(--purple);
    border: 1px solid rgba(106, 27, 154, 0.15);
}

.product-visual-magenta {
    background: rgba(216, 27, 96, 0.08);
    color: var(--magenta);
    border: 1px solid rgba(216, 27, 96, 0.15);
}

.product-visual img {
    border-radius: 20px;
}

/* Outline variant for product buttons */
.btn-outline-primary-custom {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    padding: 0.65rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.35);
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.75rem;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.product-highlights li i {
    color: var(--cyan);
    font-size: 1.1rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

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

.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 3px solid transparent;
    background-image: var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-secondary);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: block;
}

.team-detail {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    line-height: 1.5;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--purple);
    color: #ffffff;
}
