@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Brand Colors */
    --color-sky-blue: #2EA5DD;
    --color-ocean-blue: #177DC1;
    --color-brand-gradient: linear-gradient(135deg, #2EA5DD 0%, #177DC1 100%);
    
    /* Dark Palette (Premium SaaS theme) */
    --color-deep-navy: #0A192F;
    --color-charcoal: #111827;
    --color-dark-card: #1E293B;
    
    /* Neutral / Light Grays */
    --color-text-dark: #2B2D2F;
    --color-text-light: #F8FAFC;
    --color-gray-brand: #77797A;
    --color-gray-cool: #797B7D;
    --color-gray-light: #DBDCDD;
    --color-bg-soft: #F8FAFC;
    --color-white: #FFFFFF;
    
    /* Status Colors */
    --color-success: #2ECC71;
    --color-warning: #F1C40F;
    --color-danger: #E74C3C;
    
    /* Spacing & Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--color-ocean-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-sky-blue);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-charcoal);
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 640px) {
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
}

.bg-soft { background-color: var(--color-bg-soft); }
.bg-dark {
    background-color: var(--color-deep-navy);
    color: var(--color-white);
}

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

/* Labels & Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(23, 125, 193, 0.1);
    color: var(--color-ocean-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-sky-blue);
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: inherit;
}

.section-desc {
    font-size: 18px;
    color: var(--color-gray-brand);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.bg-dark .section-title {
    color: var(--color-white);
}

.bg-dark .section-desc {
    color: var(--color-gray-light);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-ocean-blue);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-brand-gradient);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(23, 125, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 125, 193, 0.4);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-ocean-blue);
    color: var(--color-ocean-blue);
}

.btn-outline:hover {
    background: var(--color-ocean-blue);
    color: var(--color-white);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-charcoal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   HEADER (Navigation)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
}

.site-header.sticky {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(219, 220, 221, 0.4);
    height: 70px;
}

/* Dark mode compatibility on header when scroll is at top but hero is dark */
.site-header.hero-dark:not(.sticky) {
    background: transparent;
}

.site-header.hero-dark:not(.sticky) .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.site-header.hero-dark:not(.sticky) .nav-link:hover {
    color: var(--color-sky-blue);
}

.site-header.hero-dark:not(.sticky) .lang-switch {
    color: var(--color-white);
}

.site-header.hero-dark:not(.sticky) .logo-text {
    color: var(--color-white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--color-charcoal);
}

.logo-img-wrapper {
    position: relative;
    height: 35px;
    width: 57px;
    display: flex;
    align-items: center;
}

.logo-img-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-color {
    display: none;
}

.logo-white {
    display: block;
}

.site-header.sticky .logo-color {
    display: block;
}

.site-header.sticky .logo-white {
    display: none;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-brand);
    transition: var(--transition-fast);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-brand-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    gap: 6px;
}

.lang-switch a {
    color: inherit;
    opacity: 0.6;
}

.lang-switch a.active {
    opacity: 1;
    color: var(--color-ocean-blue);
    position: relative;
}

.lang-switch a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--color-brand-gradient);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.site-header.hero-dark:not(.sticky) .nav-toggle span {
    background-color: var(--color-white);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
        z-index: 99;
    }
    
    .site-nav.open {
        right: 0;
    }
    
    .nav-actions {
        display: none; /* In mobile menu, we'll embed CTA in side menu */
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(46, 165, 221, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(23, 125, 193, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 650px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern SVG IoT Mesh Animation simulation */
.iot-mesh-container {
    width: 100%;
    max-width: 450px;
    height: 450px;
    position: relative;
}

.mesh-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-sky-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-sky-blue);
    animation: nodePulse 3s infinite ease-in-out;
}

.mesh-node.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.mesh-node.node-2 { top: 15%; left: 70%; animation-delay: 0.5s; background: var(--color-ocean-blue); }
.mesh-node.node-3 { top: 50%; left: 50%; animation-delay: 1s; }
.mesh-node.node-4 { top: 80%; left: 30%; animation-delay: 1.5s; }
.mesh-node.node-5 { top: 75%; left: 80%; animation-delay: 2s; background: var(--color-ocean-blue); }

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; box-shadow: 0 0 30px var(--color-sky-blue); }
}

.mesh-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke: rgba(46, 165, 221, 0.2);
    stroke-width: 1.5;
    fill: none;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rotateCircle 20s infinite linear;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 992px) {
    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 80px;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-copy {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 34px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
    background-color: var(--color-bg-soft);
    padding: 30px 0;
    border-bottom: 1px solid var(--color-gray-light);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-brand);
}

.trust-icon-check {
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: rgba(46, 165, 221, 0.1);
    color: var(--color-ocean-blue);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .trust-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .trust-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 640px) {
    .trust-item {
        width: 100%;
    }
}

/* ==========================================================================
   O NAMA / STUPOVI
   ========================================================================== */
.about-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(219, 220, 221, 0.5);
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

.about-card-icon {
    margin-bottom: 16px;
    color: var(--color-ocean-blue);
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    vertical-align: -0.125em;
}

.about-card-icon .icon {
    width: 28px;
    height: 28px;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--color-gray-brand);
    font-size: 15px;
}

/* ==========================================================================
   RJEŠENJA I USLUGE
   ========================================================================== */
.solutions-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 80px;
}

.solutions-list {
    display: grid;
    gap: 20px;
}

.sol-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    background: var(--color-bg-soft);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.sol-item:hover {
    background: var(--color-white);
    border-color: var(--color-gray-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sol-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
}

.sol-icon .icon {
    width: 28px;
    height: 28px;
    color: var(--color-ocean-blue);
}

.sol-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.sol-body p {
    font-size: 14px;
    color: var(--color-gray-brand);
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   SAAS PLATFORME (Tri velika stupa)
   ========================================================================== */
.platform-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1.5px solid var(--color-gray-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-sky-blue);
}

.platform-header {
    padding: 32px 32px 20px 32px;
    border-bottom: 1px solid var(--color-bg-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    flex-shrink: 0;
}

.platform-badge .icon {
    width: 28px;
    height: 28px;
    color: var(--color-ocean-blue);
}

.platform-logo-area h3 {
    font-size: 24px;
    font-weight: 700;
}

.platform-logo-area p {
    font-size: 13px;
    color: var(--color-ocean-blue);
    font-weight: 600;
}

.platform-body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.platform-desc {
    font-size: 15px;
    color: var(--color-gray-brand);
    margin-bottom: 30px;
}

.platform-features {
    margin-bottom: 30px;
}

.platform-features li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.platform-features li svg {
    margin-top: 3px;
    color: var(--color-success);
    flex-shrink: 0;
}

.platform-metric {
    margin-top: auto;
    padding: 16px 20px;
    background: var(--color-bg-soft);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 24px;
    text-align: center;
    border-left: 3px solid var(--color-ocean-blue);
}

/* ==========================================================================
   MREŽNE TEHNOLOGIJE (Connectivity)
   ========================================================================== */
.tech-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition-smooth);
}

.tech-card:hover {
    border-color: var(--color-sky-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.tech-icon {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-brand-gradient);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.tech-header h3 {
    font-size: 18px;
}

.tech-desc {
    font-size: 14px;
    color: var(--color-gray-brand);
    margin-bottom: 16px;
}

.tech-ideal {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-charcoal);
    padding-top: 12px;
    border-top: 1px solid var(--color-bg-soft);
}

/* ==========================================================================
   BROJKE / SOCIAL PROOF
   ========================================================================== */
.stats-strip {
    background: var(--color-charcoal);
    padding: 80px 0;
    color: var(--color-white);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 14px;
    color: var(--color-gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   KONTAKT SEKCIJA
   ========================================================================== */
.contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.contact-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(219, 220, 221, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-charcoal);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-light);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-ocean-blue);
    box-shadow: 0 0 0 3px rgba(23, 125, 193, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--color-gray-brand);
    cursor: pointer;
    line-height: 1.4;
}

.form-checkbox input {
    margin-top: 3px;
}

.contact-info-list {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    color: var(--color-ocean-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    flex-shrink: 0;
}

.info-icon .icon {
    width: 20px;
    height: 20px;
}

.footer-contact-links .icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.info-body h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-body p, .info-body a {
    font-size: 14px;
    color: var(--color-gray-brand);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid var(--color-gray-light);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-deep-navy);
    color: var(--color-white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-brand-gradient);
}

.footer-logo-col p {
    color: var(--color-gray-light);
    font-size: 14px;
    margin: 20px 0;
    max-width: 300px;
}

.footer-oib {
    display: block;
    font-size: 13px;
    color: var(--color-gray-brand);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-gray-light);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-sky-blue);
    padding-left: 4px;
}

.cookie-btn {
    background: transparent;
    border: none;
    color: var(--color-gray-light);
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.cookie-btn:hover {
    color: var(--color-sky-blue);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-gray-brand);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.social-links a:hover {
    background: var(--color-brand-gradient);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}
