/* Gintech Website Styles - Croatian Version with Light/Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Fragment+Mono:wght@400;500;600&display=swap');

:root {
    --brand-color: #5bc797;
    --brand-dark: #4a9d7a;
    --brand-light: #7dd3a8;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --border-color: #1a1a1a;
    --shadow: 0 2px 10px rgba(0,0,0,0.5);
    --card-bg: #0f0f0f;
    --header-bg: #000000;
    --footer-bg: #000000;
    --footer-text: #e0e0e0;
}

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

body {
    font-family: 'Fragment Mono', monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

html,
body {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

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

/* Header */
.header {
    background: var(--header-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header .container {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-color);
}

.header-right {
    display: flex;
    align-items: center;
}

.phone-btn {
    background: var(--brand-color);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.phone-btn:hover {
    background: var(--brand-dark);
}

.nav-lang {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    font-family: 'Fragment Mono', monospace;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}



.lang-btn.active {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.lang-btn:hover:not(.active) {
    border-color: var(--brand-color);
    color: var(--brand-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(91, 199, 151, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 1;
}

.hero-watermark {
    width: 300px;
    height: auto;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--brand-color);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-color);
    border-color: var(--brand-color);
}

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

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

/* Services */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 199, 151, 0.15);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--brand-color);
}

.service-card p {
    color: var(--text-secondary);
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.about-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.about-card p {
    color: var(--text-primary);
    line-height: 1.6;
}

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

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

.business-card {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: scale(1.05);
}

/* Contact */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--brand-color);
    margin-bottom: 20px;
}

.contact-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 199, 151, 0.15);
    border-color: var(--brand-color);
    filter: grayscale(0);
    opacity: 1;
}

.contact-item a {
    color: var(--brand-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover a {
    color: var(--brand-light);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Fragment Mono', monospace;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-color);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-info {
    text-align: right;
}

/* Partners Section */
.partners {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 30px;
}

.partner-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 199, 151, 0.15);
    border-color: var(--brand-color);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* Partner logo with white background — invert to show on dark site */
.partner-logo-invert {
    filter: invert(1) grayscale(1);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.group:hover .partner-logo-invert {
    filter: invert(1) grayscale(0);
    opacity: 1;
}

/* Partner marquee */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-marquee {
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Language Switch */
.mobile-lang {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        padding: 8px 15px;
    }

    .header-top {
        margin-bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        margin-left: 15px;
    }

    .header-logo {
        height: 35px; /* Smaller logo on mobile */
    }

    .header-right {
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        box-shadow: var(--shadow);
        padding: 10px 0;
    }

    .header-right.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    /* Show mobile language switcher */
    .mobile-lang {
        display: block;
        padding: 12px 20px;
    }

    .mobile-lang .lang-switch {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    /* Hide desktop language switcher */
    .header-controls .lang-switch {
        display: none;
    }

    .lang-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lang-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Additional mobile navigation styles */
    .nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .nav::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    .nav-link {
        white-space: nowrap;
        padding: 5px 10px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .card-display {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;  /* Force single column on mobile */
        padding: 0 15px;  /* Add some padding */
    }

    .about-card {
        width: 100%;
        margin: 0 auto;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    flex-direction: row;
    z-index: 1000;
    background: var(--header-bg);
    padding: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.floating-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 5px;
    border: 1px solid transparent;
    gap: 6px;
}

.floating-btn span {
    font-size: 1.1rem;
}

.floating-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: var(--brand-color);
}

.whatsapp-btn:hover {
    background: var(--brand-dark);
}

.call-btn {
    background: var(--brand-color);
}

.call-btn:hover {
    background: var(--brand-dark);
}

@media (max-width: 768px) {
    .floating-contacts {
        display: flex;
    }
    
    /* Add padding to footer to prevent content being hidden behind floating buttons */
    .footer {
        padding-bottom: 80px;
    }
}

/* Privacy Policy */
.privacy-policy {
    padding: 80px 0;
    background: var(--bg-primary);
}

.privacy-policy .container {
    max-width: 800px;
}

.policy-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.last-updated {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--brand-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.contact-details {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--brand-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-color);
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--brand-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Header Controls and Language Switcher */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-lang {
    display: flex;
}

.mobile-lang {
    display: none;
}

@media (max-width: 768px) {
    .desktop-lang {
        display: none;
    }

    .mobile-lang {
        display: block;
    }
}

/* Theme transition animations */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* 3D Animated Background */
html, body {
    perspective: 1000px;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.bg-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-block {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(91, 199, 151, 0.15);
    animation: float 25s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Page Content Wrapper for 3D Effect */
.page-content {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    transition: transform 0.05s ease-out;
    will-change: transform;
}

/* ===== ADDITIONAL STYLES FROM INDEX.HTML ===== */
html {
    scroll-behavior: smooth;
}

/* Grid Background Pattern - Parallax */
#grid-bg {
    position: fixed;
    top: -32px;
    left: -32px;
    width: calc(100% + 64px);
    height: calc(100% + 64px);
    background-image: 
        linear-gradient(90deg, rgba(91, 199, 151, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(91, 199, 151, 0.15) 1px, transparent 1px);
    background-size: 112px 112px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.12s ease-out;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #5bc797;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    box-shadow: 0 4px 15px rgba(91, 199, 151, 0.4);
    transition: box-shadow 0.3s ease;
}

#backToTop:hover {
    box-shadow: 0 8px 25px rgba(91, 199, 151, 0.6);
}

#backToTop.show {
    display: flex;
}

/* ===== CUSTOM COLOR UTILITIES ===== */
.bg-brand-primary {
    background-color: #5bc797;
}

.text-brand-primary {
    color: #5bc797;
}

.border-brand-primary {
    border-color: #5bc797;
}

.subtle-glow {
    box-shadow: 0 0 15px rgba(91, 199, 151, 0.2);
}

.subtle-glow:hover {
    box-shadow: 0 0 20px rgba(91, 199, 151, 0.4);
}

/* ===== UTILITY CLASSES ===== */
.dark-glass {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(91, 199, 151, 0.15);
}

.gradient-green {
    background: linear-gradient(135deg, #5bc797 0%, #4a9d7a 100%);
}

/* Button Styling */
.btn-primary {
    background-color: #5bc797;
    color: #000000;
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(91, 199, 151, 0.3);
}

.btn-primary:hover {
    background-color: #4ab889;
    box-shadow: 0 8px 25px rgba(91, 199, 151, 0.5);
}

/* ===== TYPOGRAPHY & SECTIONS (1820 INSPIRED) ===== */
.section-number {
    font-size: 180px;
    font-weight: 900;
    color: rgba(91, 199, 151, 0.41);
    line-height: 1;
    margin-bottom: -60px;
    letter-spacing: -8px;
    text-align: left;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-align: left;
}

.section-subtitle {
    font-size: 1rem;
    color: #5bc797;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: left;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin: 10px 0;
    min-height: 600px;
}

/* Carousel items - full width single column */
.carousel-item .split-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    min-height: auto;
    width: 100%;
}

/* Prednosti section alignment */
#prednosti .split-layout {
    align-items: start;
}

.split-content {
    flex: 1;
}

.split-visual {
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.split-visual video {
    transform: scale(1.5);
}

/* ===== SERVICE CAROUSEL ===== */
.services-carousel {
    position: relative;
    margin: 10px 0;
    padding: 0;
    width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin: 0 auto;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    visibility: hidden;
}

.carousel-item.active {
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    visibility: visible;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 20px;
    pointer-events: auto;
    z-index: 20;
    padding: 0;
}

.carousel-arrow {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5bc797;
    font-size: 32px;
    pointer-events: auto;
    font-weight: 700;
    background: transparent;
    min-height: 52px;
    min-width: 52px;
    flex-shrink: 0;
    border: none;
    padding: 0;
}

.carousel-arrow:hover {
    transform: scale(1.15);
    color: #7ed8a8;
}

.carousel-arrow:active {
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
    margin: 0;
    padding: 0;
    pointer-events: all;
    flex: 1;
    min-width: 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(91, 199, 151, 0.3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(91, 199, 151, 0.3);
}

.indicator.active {
    background: #5bc797;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 16px rgba(91, 199, 151, 0.6);
    transition: all 0.3s ease-in-out;
}

/* ===== SECTION TRACKING - STICKY NUMBERS ===== */
.section-tracker {
    position: fixed;
    left: 40px;
    bottom: 40px;
    font-size: 14px;
    color: #5bc797;
    opacity: 0;
    z-index: 9999;
    font-weight: bold;
    letter-spacing: 2px;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.section-tracker.active {
    opacity: 1;
    font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .carousel-container {
        min-height: auto;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .split-visual {
        min-height: 300px;
        overflow: hidden;
    }

    .split-visual video {
        transform: scale(1);
    }

    .carousel-controls {
        margin-top: 12px;
    }

    .carousel-arrow {
        width: 60px;
        height: 60px;
        font-size: 24px;
        min-height: 48px;
        min-width: 48px;
    }

    .carousel-indicators {
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 10px 0;
        min-height: auto;
    }

    .split-content {
        padding: 0;
    }

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

    .section-number {
        font-size: 100px;
        margin-bottom: -20px;
        letter-spacing: -5px;
    }

    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .btn-primary {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
    }

    h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .text-3xl {
        font-size: 1.375rem !important;
    }

    .text-2xl {
        font-size: 1.25rem !important;
    }

    .space-y-6 {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }

    .dark-glass {
        padding: 24px;
    }

    .gradient-green {
        padding: 24px;
    }

    .services-carousel {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        min-height: auto;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .split-layout {
        gap: 24px;
    }

    .text-lg {
        font-size: 1rem !important;
    }

    .md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    .services-carousel {
        padding: 0;
    }
}