/* Root Variables - Geometric Balance Palette */
:root {
    --primary: #0f172a; /* Slate 900 */
    --secondary: #f59e0b; /* Amber 500 */
    --secondary-hover: #d97706; /* Amber 600 */
    --accent: #fbbf24; /* Amber 400 */
    --accent-light: #fef3c7; /* Amber 100 */
    --dark: #0f172a;
    --light: #f8fafc; /* Slate 50 */
    --grey: #64748b; /* Slate 500 */
    --grey-light: #e2e8f0; /* Slate 200 */
    --white: #FFFFFF;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(245 158 11 / 0.2), 0 4px 6px -4px rgb(245 158 11 / 0.1);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1100px;
    --header-height: 72px;
    --top-bar-height: 36px;
    --radius-xl: 1.5rem; /* 24px */
    --radius-2xl: 2rem; /* 32px */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
p { color: var(--grey); font-size: 1.05rem; }

.section {
    padding: 120px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::before {
    content: 'USLUGE';
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1001;
}

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

.info-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.hero-selector select option {
    background: var(--primary);
    color: var(--white);
}

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-trigger .fa-chevron-down {
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    min-width: 180px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hero-opt {
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    background: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--grey);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-opt:hover {
    background: var(--light);
    color: var(--secondary);
}

/* HERO 4: MODERN GRID */
.hero-v4 {
    min-height: min(92vh, 880px);
    width: 100%;
    background: var(--light);
    align-items: center;
    padding: clamp(72px, 12vh, 120px) 0;
}

.v4-container {
    width: 100%;
}

.v4-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.v4-text {
    min-width: 0;
}

.v4-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--primary);
}

.v4-title span { color: var(--secondary); }

.v4-p {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.v4-actions {
    margin-bottom: 0;
}

.v4-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 32px;
}

.v4-f {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.v4-f i { color: var(--secondary); }

.v4-image {
    min-width: 0;
}

.v4-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transform: rotate(2deg);
    transition: var(--transition);
    background: var(--white);
}

.v4-card img {
    width: 100%;
    height: auto;
    display: block;
}

.v4-card:hover { transform: rotate(0deg); }

@media (max-width: 991px) {
    .hero-v4 {
        min-height: 0;
        padding: 48px 0 72px;
    }

    .v4-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .v4-p {
        margin-left: auto;
        margin-right: auto;
    }

    .v4-features {
        justify-content: center;
    }

    .v4-loc {
        justify-content: center;
    }

    .v4-image {
        max-width: 420px;
        margin: 0 auto;
    }
}

.hero-v1, .hero-v2, .hero-v3, .hero-v4 {
    display: none;
}

.hero-v1.active, .hero-v2.active, .hero-v3.active, .hero-v4.active {
    display: flex;
}

/* HERO 2: SPLIT BOLD */
.hero-v2 {
    min-height: 700px;
    background: var(--white);
    align-items: center;
    padding: 80px 0;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-v2-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.v2-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
}

.v2-title span { color: var(--secondary); }

.v2-p {
    font-size: 1.25rem;
    color: var(--grey);
    margin-bottom: 3rem;
    max-width: 500px;
}

.v2-ctas {
    display: flex;
    align-items: center;
    gap: 40px;
}

.v2-stats {
    padding-left: 40px;
    border-left: 1px solid var(--border);
}

.v2-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.v2-stat span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey);
}

.v2-img-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.v2-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.v2-floating-badge i { color: var(--secondary); font-size: 1.5rem; }
.v2-floating-badge span { font-weight: 800; font-size: 0.9rem; }

/* HERO 3: DARK MINIMAL */
.hero-v3 {
    min-height: 85vh;
    background-color: #0f172a;
    background-image: url('https://images.unsplash.com/photo-1513467535987-fd81bc7d62f8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-v3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.v3-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.v3-badge {
    background: var(--secondary);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v3-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 0.95;
    font-weight: 800;
}

.v3-title span { color: var(--secondary); }

.v3-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.85;
    margin: 0 auto 3.5rem;
    max-width: 700px;
    line-height: 1.6;
}

.v3-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v3-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.v3-icon-item i { 
    color: var(--secondary); 
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .v2-p { margin-left: auto; margin-right: auto; }
    .v2-ctas { flex-direction: column; gap: 20px; }
    .v2-stats { padding-left: 0; border-left: none; }
    .v3-icons { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
    .info-group .info-item:not(:last-child) { display: none; }
}
.navbar {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span { color: var(--secondary); }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    color: var(--grey);
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    width: 100%;
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: var(--radius-2xl);
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: var(--white);
    position: relative;
}

.hero-badge-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

.hero-years {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 { 
    margin-bottom: 1.5rem; 
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1;
}

.hero h1 span { color: var(--secondary); }

.hero p { 
    margin-bottom: 2.5rem; 
    color: rgba(255, 255, 255, 0.8); 
    max-width: 500px; 
    font-size: 1.15rem;
}

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

.viber-whatsapp-mini {
    display: flex;
    gap: 12px;
}

.mini-social {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.mini-social:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.mini-social.wa:hover { color: #25D366; }
.mini-social.vb:hover { color: #7360f2; }

@media (max-width: 1024px) {
    .hero-image-overlay {
        background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
    }
    .hero-content-card {
        padding: 40px;
        text-align: center;
        margin: 0 auto;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-badge-row { justify-content: center; }
    .hero-cta { justify-content: center; }
}

@media (max-width: 768px) {
    .hero.hero-v1 {
        min-height: min(92dvh, 720px);
        height: auto;
        padding: 96px 0 88px;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }
    .hero-bg {
        object-position: center;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-content-card {
        padding: 40px 24px;
        border-radius: var(--radius-xl);
    }
}

/* Layout Utilities */
.grid { display: grid; gap: 60px; }
.grid-2 { grid-template-columns: 1fr 1fr; }

/* About Us */
.about {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(180deg, var(--white) 0%, var(--light) 45%, var(--light) 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
}

.about-copy .section-title::before {
    content: 'O NAMA';
}

.about-intro .section-title {
    margin-bottom: 1.25rem;
}

.about h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.about-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--grey);
    max-width: 34em;
    margin: 0 0 2rem;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 2rem;
}

.about-metric {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-metric:hover {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: var(--shadow-md);
}

.about-metric strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-metric span {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey);
    line-height: 1.35;
}

.about-services {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-service {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.about-service:hover {
    transform: translateX(6px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.about-service-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent-light) 0%, rgba(254, 243, 199, 0.5) 100%);
    color: var(--secondary);
    font-size: 1.1rem;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.about-service-text {
    flex: 1;
    line-height: 1.35;
}

.about-visual {
    position: relative;
}

.about-visual-inner {
    position: relative;
    margin: 0 auto;
    max-width: 520px;
}

.about-visual-frame {
    position: absolute;
    inset: 12px -14px -14px 12px;
    border-radius: calc(var(--radius-xl) + 4px);
    border: 3px solid var(--secondary);
    opacity: 0.85;
    z-index: 0;
    transform: rotate(-2deg);
    pointer-events: none;
}

.about-visual-photo {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 24px 48px -12px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(15, 23, 42, 0.06);
    aspect-ratio: 4 / 3;
    min-height: 200px;
    background:
        linear-gradient(145deg, var(--grey-light) 0%, var(--accent-light) 100%);
}

.about-visual-photo img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-visual-badge {
    margin: 1.25rem auto 0;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
}

.about-visual-badge i {
    color: var(--secondary);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .about-copy .section-title::before {
        margin-left: auto;
        margin-right: auto;
    }

    .about-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .about-metrics {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-services {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-service:hover {
        transform: translateY(-3px);
    }

    .about-visual-inner {
        max-width: 480px;
    }
}

@media (max-width: 600px) {
    .about-metrics {
        grid-template-columns: 1fr;
    }

    .about-metric {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: left;
        padding: 14px 18px;
    }

    .about-metric strong {
        font-size: 1.5rem;
        min-width: 3.2rem;
    }

    .about-metric span {
        margin-top: 0;
        text-align: left;
        flex: 1;
    }
}

/* Gallery */
.gallery { background-color: var(--white); }
.gallery .section-title::before { content: 'GALERIJA'; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 1.25rem;
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px;
}

.gallery-item img {
    border-radius: 1rem;
}

/* Contact */
.contact { background-color: var(--light); }
.contact .section-title::before { content: 'KONTAKT'; }

.contact-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info i {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin: 1rem 0 2rem;
}

/* Google map — velika responsive kartica */
.contact-map-card {
    width: 100%;
    max-width: 920px;
    margin: 2rem auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: clamp(300px, 52vh, 560px);
    min-height: 280px;
    box-shadow:
        0 16px 48px -12px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border);
    background: var(--grey-light);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    border: 0;
}

.viber-whatsapp {
    margin-top: 2rem;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 1rem;
    padding: 12px 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.social-link.wa { background-color: #25D366; }
.social-link.vb { background-color: #7360f2; }

.social-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--grey);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-logo { color: var(--primary); letter-spacing: -0.05em; }
.footer-logo span { color: var(--secondary); }

/* Helpers */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    width: 44px;
    height: 44px;
    display: none; /* Hidden by default on desktop */
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero .container { padding: 40px 20px; }
    .phone-number { font-size: 1.8rem; }
    .top-bar { display: none; }
    
    .mobile-toggle { 
        display: flex; 
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        height: auto;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        box-sizing: border-box;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: calc(100dvh - var(--header-height) - 8px);
        overflow-y: auto;
        overflow-x: hidden;
        overflow-x: clip;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        align-items: stretch;
        box-sizing: border-box;
    }

    .nav-links .dropdown-trigger {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .nav-links .dropdown-menu {
        position: static;
        left: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 6px 0 8px;
        margin: 0;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: transparent;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .nav-links .dropdown-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 0 4px;
        padding: 14px 16px;
        font-size: 0.95rem;
        font-weight: 700;
        text-align: center;
        text-wrap: balance;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        background: var(--light);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--grey);
        line-height: 1.3;
    }

    .nav-links .dropdown-menu a:last-child {
        margin-bottom: 0;
    }

    .nav-links .dropdown-menu a:hover,
    .nav-links .dropdown-menu a:focus {
        color: var(--secondary);
        background: rgba(254, 243, 199, 0.55);
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light);
    }
    
    .nav-links > a:last-child {
        border-bottom: none;
    }

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

    .contact-card {
        padding: 40px 20px;
        width: 100%;
        border-radius: var(--radius-xl);
    }

    .contact-map-card {
        height: clamp(320px, 58vh, 520px);
        margin: 1.75rem 0;
        border-radius: 1.25rem;
    }
}

