/* ==========================================================================
   SKYVIDEO CUSTOM STYLE SHEET
   Premium Dark Theme & Modern Security Business Design
   ========================================================================== */

/* --- Reset & Core CSS --- */
:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --accent: #00f2fe;
    --accent-glow: rgba(0, 242, 254, 0.15);
    --accent-hover: #4facfe;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #0b0f19;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0b0f19;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-block {
    width: 100%;
}

/* --- Glassmorphism --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* --- Header / Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(11, 15, 25, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 36px;
}

.logo-accent {
    color: var(--accent);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 14px;
}

.header-call-mobile {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(to right, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.88) 40%, rgba(11, 15, 25, 0.45) 75%, rgba(11, 15, 25, 0.75) 100%),
        linear-gradient(to bottom, rgba(11, 15, 25, 0.75) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%),
        url('../images/hero_bg.jpg') no-repeat right center / cover;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 90px; /* Spušteno niže */
    transform: translateX(-60px); /* Gurnuto u levo ka centru */
    z-index: 5;
}

.visual-camera-terminal {
    width: 100%;
    max-width: 440px;
    height: 260px;
    position: relative;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.2);
    border: 1.5px solid rgba(0, 242, 254, 0.4);
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.visual-camera-terminal:hover {
    border-color: rgba(0, 242, 254, 0.7);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 242, 254, 0.35);
    transform: translateY(-4px);
}

.terminal-footer-badge {
    position: absolute;
    bottom: -18px;
    right: 18px;
    background: rgba(14, 20, 32, 0.95);
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: 50px;
    padding: 7px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.25);
    z-index: 15;
}

.terminal-footer-badge .badge-icon {
    font-size: 16px;
    color: var(--accent);
}

.terminal-footer-badge .badge-info {
    display: flex;
    flex-direction: column;
}

.terminal-footer-badge .badge-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.terminal-footer-badge .badge-status {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.terminal-footer-badge .status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

.preview-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.live-badge {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ef4444;
    animation: flash 1s infinite alternate;
}

.camera-id {
    font-size: 11px;
    color: #ffffff;
    font-weight: 500;
}

.preview-feed {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1a2333, #090d16);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.camera-overlay-icon {
    font-size: 48px;
    color: rgba(0, 242, 254, 0.15);
    animation: pulseIcon 4s infinite ease-in-out;
}

.timestamp {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-family: monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}

.stat-number.stat-popped {
    animation: statPopEffect 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes statPopEffect {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 14px rgba(0, 242, 254, 0.8)); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

/* --- About Section --- */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(to right, rgba(11, 15, 25, 0.94) 0%, rgba(11, 15, 25, 0.84) 45%, rgba(11, 15, 25, 0.72) 80%, rgba(11, 15, 25, 0.92) 100%),
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%, transparent 85%, var(--bg-primary) 100%),
        url('../images/about_bg.jpg') no-repeat center center / cover;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 440px;
    width: 100%;
}

.about-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15);
    background: rgba(18, 24, 38, 0.8);
}

.about-technician-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-img-frame:hover .about-technician-img {
    transform: scale(1.04);
}

.img-glare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.live-install-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(8px);
    z-index: 5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

.live-install-tag .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: flash 1.5s infinite alternate;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 18px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(0, 242, 254, 0.2);
    border: 1.5px solid rgba(0, 242, 254, 0.4);
    border-radius: 14px;
    z-index: 10;
    text-align: center;
    background: rgba(14, 20, 32, 0.94);
    backdrop-filter: blur(16px);
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .years-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    display: block;
    margin-top: 4px;
}

.experience-badge .years-sub {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
    font-weight: 500;
}

.section-title-wrapper {
    margin-bottom: 24px;
}

.section-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-item i {
    color: var(--accent);
    font-size: 18px;
}

.about-feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header-centered {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-desc {
    margin-top: 16px;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 15px rgba(0, 242, 254, 0.05);
}

.service-icon {
    font-size: 32px;
    color: var(--accent);
    width: 64px;
    height: 64px;
    background-color: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--accent);
    color: #0b0f19;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* --- Markets We Serve --- */
.markets-section {
    padding: 100px 0;
    position: relative;
    background-image: 
        linear-gradient(180deg, rgba(7, 11, 20, 0.94) 0%, rgba(10, 16, 31, 0.88) 50%, rgba(7, 11, 20, 0.96) 100%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 242, 254, 0.07) 0%, transparent 60%),
        url('../images/markets_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.markets-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #0b0f19;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 16px;
    margin-bottom: 30px;
}

.tab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.tab-list i {
    color: var(--accent);
    font-size: 16px;
}

.tab-visual-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sector Showcase Photo Frames */
.sector-showcase-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 330px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.12);
    background: rgba(10, 16, 31, 0.7);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sector-showcase-frame:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 242, 254, 0.25);
}

.sector-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-showcase-frame:hover .sector-showcase-img {
    transform: scale(1.05);
}

.sector-overlay-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 20, 0.85) 35%, rgba(7, 11, 20, 0.98) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hud-tag {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.hud-tag i {
    color: var(--accent);
}

.hud-status {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.35);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hud-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.office-visual, .audio-visual, .home-visual, .industry-visual {
    width: 320px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

/* Scanner effect for Office Tab */
.scanner-zone {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-card-demo {
    font-size: 64px;
    color: rgba(255,255,255,0.1);
}

.scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    top: 0;
    left: 0;
    animation: scan 2.5s infinite linear;
}

.access-status-text {
    margin-top: 24px;
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Audio waves for Restaurant Tab */
.audio-demo-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 24px;
}

.audio-bars {
    display: flex;
    gap: 6px;
    height: 32px;
    align-items: flex-end;
}

.audio-bar {
    width: 6px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 3px;
    animation: soundWave 0.8s infinite ease-in-out alternate;
}

.audio-bar:nth-child(2) { height: 18px; animation-delay: 0.15s; }
.audio-bar:nth-child(3) { height: 28px; animation-delay: 0.3s; }
.audio-bar:nth-child(4) { height: 20px; animation-delay: 0.1s; }
.audio-bar:nth-child(5) { height: 10px; animation-delay: 0.25s; }

/* Home Tab lock style */
.home-demo-icon {
    font-size: 64px;
    color: rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.lock-indicator {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lock-indicator.locked {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Industry LPR frame style */
.lpr-frame {
    border: 2px dashed rgba(255,255,255,0.15);
    padding: 16px;
    border-radius: 8px;
    position: relative;
    width: 240px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.lpr-box {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}

.license-plate {
    font-family: monospace;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.gate-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Hotel Tab smart access style */
.hotel-visual {
    width: 320px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.hotel-demo-card {
    position: relative;
    width: 140px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.18), rgba(79, 172, 254, 0.08));
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.18);
    animation: floatCard 3s infinite ease-in-out;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hotel-chip {
    width: 22px;
    height: 18px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 4px;
}

.hotel-card-number {
    font-family: monospace;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-status-badge {
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.35);
    color: var(--accent);
    letter-spacing: 1px;
}

.tab-client-badge {
    margin-top: 22px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tab-client-badge i {
    color: var(--accent);
}

.tab-client-badge strong {
    color: #ffffff;
    font-weight: 600;
}

.tab-cta {
    margin-top: 24px;
}

.tab-cta .btn {
    font-size: 14px;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --- Brands Slider --- */
.brands-section {
    background-color: var(--bg-secondary);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brands-title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 600;
}

.brands-slider-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.brands-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 25s infinite linear;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    opacity: 0.92;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--accent) !important;
}

.brand-text {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.client-logo-img {
    max-height: 52px;
    max-width: 165px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.1);
    transition: var(--transition-smooth);
}

.brand-logo:hover .client-logo-img {
    filter: brightness(1.3) contrast(1.15);
    transform: scale(1.06);
}

/* --- Why Choose Us (Accordion) --- */
.why-us-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(to left, rgba(11, 15, 25, 0.94) 0%, rgba(11, 15, 25, 0.85) 50%, rgba(11, 15, 25, 0.95) 100%),
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%, transparent 85%, var(--bg-primary) 100%),
        url('../images/why_us_bg.jpg') no-repeat right center / cover;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.accordion {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-secondary);
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
}

.accordion-header h4 {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.accordion-header h4 i {
    color: var(--accent);
}

.accordion-icon {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 24px 24px 52px;
}

.accordion-body p {
    font-size: 14px;
    line-height: 1.6;
}

.why-us-graphic-wrapper {
    display: flex;
    justify-content: center;
}

.interactive-control-panel {
    width: 340px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.panel-header h4 {
    font-size: 15px;
    font-weight: 700;
}

.signal-strength {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.control-row span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/* Custom switch toggle styles */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    transition: .3s;
    border-radius: 34px;
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider-toggle {
    background-color: rgba(0, 242, 254, 0.15);
    border-color: var(--accent);
}

input:checked + .slider-toggle:before {
    transform: translateX(20px);
    background-color: var(--accent);
}

.panel-log {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    margin-top: 24px;
    font-family: monospace;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-item {
    color: #ffffff;
}

.log-time {
    color: var(--accent);
    margin-right: 8px;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 32px;
    color: var(--accent);
    opacity: 0.15;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-info {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
}

.client-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(to right, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.88) 50%, rgba(11, 15, 25, 0.93) 100%),
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%, transparent 85%, var(--bg-primary) 100%),
        url('../images/contact_bg.jpg') no-repeat center center / cover;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 480px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.detail-text span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-text a, .detail-text p {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.detail-text a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 16px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

/* Floating labels */
.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition-smooth);
    pointer-events: none;
    background-color: var(--bg-tertiary);
    padding: 0 4px;
}

.form-group textarea ~ label {
    top: 24px;
}

.form-group select ~ .select-label {
    top: 50%;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 12px;
    color: var(--accent);
}

/* Select element active state handling */
.form-group select:focus ~ .select-label,
.form-group select:valid ~ .select-label {
    top: 0;
    font-size: 12px;
    color: var(--accent);
}

.form-status, .newsletter-status {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
}

.form-status.success, .newsletter-status.success {
    color: #10b981;
}

.form-status.error, .newsletter-status.error {
    color: #ef4444;
}

/* --- Slide to Submit (Klizač za slanje) --- */
.slide-to-submit-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.slide-track {
    position: relative;
    width: 100%;
    height: 56px;
    background: rgba(18, 24, 38, 0.9);
    border: 1.5px solid rgba(0, 242, 254, 0.35);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.slide-track:hover {
    border-color: rgba(0, 242, 254, 0.6);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.2);
}

.slide-track.active-drag {
    border-color: var(--accent-cyan);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.35);
}

.slide-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 119, 182, 0.45), rgba(0, 242, 254, 0.55));
    border-radius: 50px;
    pointer-events: none;
    transition: width 0.05s linear;
}

.slide-text {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 55px;
}

.slide-text i {
    color: var(--accent-cyan);
    animation: pulseSlideArrows 1.5s infinite;
}

@keyframes pulseSlideArrows {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(4px); opacity: 1; }
}

.slide-text .slide-text-mobile {
    display: none;
}

@media (max-width: 480px) {
    .slide-text .slide-text-desktop {
        display: none;
    }
    .slide-text .slide-text-mobile {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

.slide-handle {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-cyan), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    cursor: grab;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0, 210, 255, 0.45);
    transition: transform 0.05s linear, background 0.3s ease, box-shadow 0.3s ease;
    touch-action: none;
}

.slide-handle:active {
    cursor: grabbing;
}

.slide-handle.locked-success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    cursor: default;
}

.slide-track.error-shake {
    animation: shakeTrack 0.4s ease;
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

@keyframes shakeTrack {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col-brand p {
    margin-top: 20px;
    font-size: 14px;
    max-width: 280px;
}

.social-links {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--accent);
    color: #0b0f19;
    border-color: var(--accent);
}

.footer-col h4, .footer-col-newsletter h4 {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer-col ul a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-col-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #0b0f19;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: #ffffff;
}

/* --- Keyframe Animations --- */
@keyframes soundWave {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(2.2); }
}

@keyframes flash {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scan {
    0% { top: 0%; opacity: 0.1; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0.1; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100px * 8 - 60px * 8)); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .hero-container, .about-container, .why-us-container, .contact-container, .tab-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-visual {
        align-items: center;
        justify-content: center;
        transform: none;
        margin-top: 40px;
    }
    
    .visual-camera-terminal {
        transform: none;
        align-self: center;
        max-width: 100%;
        height: 220px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .why-us-graphic-wrapper {
        order: 2;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-mobile-actions {
        display: flex;
    }

    .header-call-mobile {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, var(--accent-cyan), #0077b6);
        color: #ffffff;
        padding: 7px 13px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(0, 210, 255, 0.35);
        transition: var(--transition-smooth);
    }

    .header-call-mobile:hover, .header-call-mobile:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0, 210, 255, 0.5);
        color: #ffffff;
    }

    .header-call-mobile i {
        font-size: 13px;
    }

    @media (max-width: 420px) {
        .header-call-mobile .call-text {
            display: none;
        }
        .header-call-mobile {
            padding: 0;
            width: 36px;
            height: 36px;
            justify-content: center;
            border-radius: 50%;
        }
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary);
        z-index: 999;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        padding: 40px 24px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .nav-btn {
        width: 100%;
        margin-top: 20px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Language Switcher --- */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
}

.lang-link {
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-link:hover, .lang-link.active {
    color: var(--accent);
}

.lang-divider {
    color: rgba(255,255,255,0.15);
}

/* --- 3D Usluge Carousel --- */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1050px;
    height: 520px;
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.carousel-card {
    position: absolute;
    width: 320px;
    height: 440px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
}

.carousel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.2) 0%, rgba(11, 15, 25, 0.85) 60%, rgba(11, 15, 25, 0.98) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.carousel-card:hover::after {
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.75) 50%, rgba(11, 15, 25, 0.95) 100%);
}

/* 3D States */
.carousel-card.active {
    transform: translate3d(0, 0, 150px) scale(1.1);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0, 242, 254, 0.25), 0 0 30px rgba(0, 242, 254, 0.1);
}

.carousel-card.prev {
    transform: translate3d(-240px, 0, 0) scale(0.9) rotateY(25deg);
    opacity: 0.55;
    z-index: 5;
    pointer-events: auto;
}

.carousel-card.next {
    transform: translate3d(240px, 0, 0) scale(0.9) rotateY(-25deg);
    opacity: 0.55;
    z-index: 5;
    pointer-events: auto;
}

.carousel-card.prev-2 {
    transform: translate3d(-400px, 0, -100px) scale(0.7) rotateY(40deg);
    opacity: 0.15;
    z-index: 2;
}

.carousel-card.next-2 {
    transform: translate3d(400px, 0, -100px) scale(0.7) rotateY(-40deg);
    opacity: 0.15;
    z-index: 2;
}

.carousel-card.hidden-left {
    transform: translate3d(-550px, 0, -200px) scale(0.5);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.carousel-card.hidden-right {
    transform: translate3d(550px, 0, -200px) scale(0.5);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Card Content Styling */
.card-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.card-category {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.carousel-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.25;
}

.carousel-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Nav arrows */
.carousel-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.carousel-nav:hover {
    background: var(--accent);
    color: #0b0f19;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dots .dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 5px;
    box-shadow: 0 0 8px var(--accent);
}

/* Responsive adjustment for carousel */
@media (max-width: 900px) {
    .carousel-container {
        height: 480px;
    }
    .carousel-card {
        width: 280px;
        height: 400px;
        padding: 24px;
    }
    .carousel-card.prev {
        transform: translate3d(-180px, 0, 0) scale(0.85) rotateY(15deg);
    }
    .carousel-card.next {
        transform: translate3d(180px, 0, 0) scale(0.85) rotateY(-15deg);
    }
    .carousel-card.prev-2, .carousel-card.next-2 {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 600px) {
    .carousel-container {
        height: 450px;
    }
    .carousel-card {
        width: 250px;
        height: 380px;
        padding: 20px;
    }
    .carousel-card.prev {
        transform: translate3d(-110px, 0, 0) scale(0.8);
        opacity: 0.3;
    }
    .carousel-card.next {
        transform: translate3d(110px, 0, 0) scale(0.8);
        opacity: 0.3;
    }
    .carousel-nav {
        width: 44px;
        height: 44px;
    }
}


/* --- New Why Choose Us Cards --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    position: relative;
    background: rgba(18, 26, 41, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    background: rgba(18, 26, 41, 0.65);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.05);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-secondary);
    transition: color 0.4s ease;
}

.why-card:hover .why-card-number {
    color: rgba(0, 242, 254, 0.05);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #4facfe 100%);
    color: #0b0f19;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: rotate(5deg) scale(1.05);
}

.why-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.why-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.why-card-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.why-card-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
    text-align: left;
}

.why-card-specs li i {
    color: var(--accent);
    font-size: 14px;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* --- Service Modal Popup --- */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 9, 15, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: flex-start; /* Align to top to allow natural scrolling down */
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto; /* Scrollbar is placed on the right edge of the screen */
}

.service-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-content {
    position: relative;
    width: 95%;
    max-width: 1100px; /* Stretched wide for premium split layout */
    margin: 50px auto; /* Floating look with outer scroll */
    background: rgba(18, 26, 41, 0.95);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.15), 0 0 40px rgba(0, 242, 254, 0.05);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;
    max-height: none;
    overflow: visible;
}

/* Custom Scrollbar for Modal Overlay (right edge of the screen) */
.service-modal::-webkit-scrollbar {
    width: 10px;
}
.service-modal::-webkit-scrollbar-track {
    background: rgba(6, 9, 15, 0.95);
}
.service-modal::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.3);
    border-radius: 10px;
    border: 2px solid rgba(6, 9, 15, 0.95);
}
.service-modal::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.service-modal.active .service-modal-content {
    transform: scale(1);
}

/* Modal Layout (Single Column) */
.modal-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-main-content {
    display: flex;
    flex-direction: column;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.service-modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.modal-service-icon {
    font-size: 36px;
    color: var(--accent);
}

.modal-service-title {
    font-size: 32px; /* Increased from 24px */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.modal-service-category {
    display: block;
    font-size: 13px; /* Increased from 11px */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 700;
}

.modal-service-text {
    font-size: 16px; /* Increased from 15px */
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.modal-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
}

@media (max-width: 600px) {
    .modal-service-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.modal-service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px; /* Increased from 14px */
    color: #ffffff;
    line-height: 1.5;
}

.modal-service-features li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 15px; /* Increased from 14px */
}

.modal-service-action {
    display: flex;
    justify-content: flex-end;
}

/* Equipment Grid styling inside modal */
.modal-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .modal-equipment-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Premium Split-Scroll Modal Layout */
.modal-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.modal-left-column {
    position: sticky;
    top: 40px; /* Pin offset from the top of the modal viewport */
    align-self: start;
}

/* Staggered animation elements inside left column */
.modal-left-column > * {
    opacity: 0;
    transform: translateY(20px);
    animation: modalElementFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-left-column > *:nth-child(1) { animation-delay: 0.1s; }
.modal-left-column > *:nth-child(2) { animation-delay: 0.25s; }
.modal-left-column > *:nth-child(3) { animation-delay: 0.4s; }
.modal-left-column > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes modalElementFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-right-column {
    padding-top: 180px; /* Offset so that when modal opens, images are scrolled down and reveal as you scroll */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
}

.gallery-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 254, 0.25);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.08);
}

.gallery-card-img {
    width: 100%;
    height: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-img {
    transform: scale(1.05);
}

.gallery-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.gallery-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .modal-split-layout {
        grid-template-columns: 1fr !important;
        gap: 35px;
    }
    .modal-left-column {
        position: static !important;
    }
    .modal-right-column {
        padding-top: 0 !important;
    }
}

/* Potpuna prilagođenost modala za mobilne telefone i tablete */
@media (max-width: 768px) {
    .service-modal-content {
        padding: 40px 24px;
        margin: 30px auto;
        width: 92%;
        border-radius: 20px;
    }
    .modal-service-title {
        font-size: 26px !important;
    }
    .modal-service-text {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    .modal-service-features li {
        font-size: 14px !important;
    }
    .service-modal-close {
        top: 15px;
        right: 20px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-modal-content {
        padding: 35px 16px 24px 16px;
        margin: 15px auto;
        width: 95%;
        border-radius: 16px;
    }
    .modal-service-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .modal-service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .modal-service-title {
        font-size: 22px !important;
    }
    .modal-service-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .modal-service-features {
        margin-top: 20px;
        gap: 10px;
    }
    .modal-service-features li {
        font-size: 13px !important;
        padding-left: 24px !important;
    }
    .modal-service-features li i {
        font-size: 12px;
    }
    .modal-service-action {
        flex-direction: column;
        gap: 12px !important;
        width: 100%;
    }
    .modal-service-action .btn {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }
    .gallery-card {
        padding: 18px;
        border-radius: 12px;
    }
    .gallery-card-img {
        height: 140px;
    }
}

/* --- Potpuna mobilna optimizacija celog sajta (Mobile Regime) --- */

@media (max-width: 768px) {
    /* Zaustavi 3D preklapanje i osveži paddings za sekcije */
    .about-section, 
    .services-section, 
    .why-us-section, 
    .contact-section,
    section {
        padding: 50px 0 !important;
    }
    
    .hero-section {
        padding: 110px 0 50px !important;
        min-height: auto !important;
    }

    /* Ispravka iOS Safari / mobile scrolling baga za modal */
    .service-modal {
        display: block !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-modal-content {
        margin: 20px auto !important;
        width: 94% !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    }
    
    /* Mobilni meni - dodaj skrolovanje za male visine ekrana */
    .nav-menu {
        overflow-y: auto !important;
        max-height: calc(100vh - 80px);
    }

    .sector-showcase-frame {
        max-width: 100% !important;
        height: 250px !important;
    }
}

@media (max-width: 600px) {
    /* Potpuno ravna (flat) vrteška za mobilne telefone */
    .carousel-container {
        height: 410px !important;
        perspective: none !important;
        margin-top: 30px !important;
    }
    
    .carousel-track {
        transform-style: flat !important;
    }
    
    .carousel-card {
        width: 290px !important;
        height: 370px !important;
        padding: 20px !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        /* Centriraj karticu na ekranu */
        transform: translate(-50%, -50%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.35s ease-in-out !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5) !important;
    }
    
    /* Samo aktivna kartica je vidljiva, ostale su skrivene (nema preklapanja niti rezanja teksta sa strana) */
    .carousel-card.active {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate(-50%, -50%) scale(1) !important;
        border-color: var(--accent) !important;
    }
    
    /* Sakrij preostale kartice koje bi se preklapale na uskom ekranu */
    .carousel-card.prev, 
    .carousel-card.next, 
    .carousel-card.prev-2, 
    .carousel-card.next-2,
    .carousel-card.hidden-left,
    .carousel-card.hidden-right {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
    }
    
    /* Pozicioniranje navigacionih strelica za mobilne telefone */
    .carousel-nav {
        width: 44px !important;
        height: 44px !important;
        background: rgba(11, 15, 25, 0.9) !important;
        border: 1px solid rgba(0, 242, 254, 0.3) !important;
    }
    
    .carousel-nav.prev {
        left: -5px !important;
    }
    
    .carousel-nav.next {
        right: -5px !important;
    }
    
    .carousel-dots {
        margin-top: 20px !important;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }
    
    .contact-form {
        gap: 18px !important;
    }
    
    .form-group input, 
    .form-group textarea, 
    .form-group select {
        padding: 15px 14px !important;
        font-size: 16px !important; /* Prevents auto-zoom on mobile iOS Safari */
    }
    
    .form-group label {
        left: 14px !important;
        font-size: 14px !important;
    }

    .form-group input:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:focus ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label,
    .form-group select:focus ~ .select-label,
    .form-group select:valid ~ .select-label {
        font-size: 11px !important;
    }
    
    .slide-track {
        height: 52px !important;
    }
    
    .slide-handle {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
    
    .slide-text {
        font-size: 13px !important;
        padding: 0 45px !important;
    }

    /* Hero i tasteri - savršeno uklapanje na mobilnom za SR i EN */
    .badge {
        font-size: 12px !important;
        padding: 6px 14px !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }

    .hero-subtitle {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .hero-actions .btn {
        flex: 1 1 0 !important;
        padding: 12px 8px !important;
        font-size: 13.5px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .markets-tabs {
        gap: 8px !important;
        margin-bottom: 30px !important;
    }

    .tab-btn {
        padding: 8px 14px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        flex-direction: column !important;
    }
    .hero-actions .btn {
        width: 100% !important;
    }
}


