/* =========================
   VIPCODING POLISHED UI
========================= */
:root {
    --bg: #ffffff;
    --surface: #f6f6f4;
    --surface-2: #fbfaf8;
    --text: #0d0d0f;
    --muted: #65656b;
    --line: rgba(13, 13, 15, 0.10);
    --dark: #0e0e10;
    --dark-2: #151517;
    --red: #f01414;
    --red-dark: #b90f0f;
    --red-soft: rgba(240, 20, 20, 0.10);
    --shadow: 0 24px 70px rgba(13, 13, 15, 0.10);
    --radius: 26px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overscroll-behavior-x: none;

}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    height: 72px;
    padding: 0 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

    transform: none;
}

.logo img,
.logo svg,
.navbar .logo img,
.navbar .logo svg {
    display: block;
    width: auto;
    height: auto;
    max-height: 42px;
}

/* Mobile */
@media (max-width: 720px) {
    .logo img,
    .logo svg,
    .navbar .logo img,
    .navbar .logo svg {
        max-height: 30px;   /* try 28px to 32px */
        width: auto !important;
        height: auto !important;
    }
}
.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red);
    border-radius: 10px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
    z-index: -1;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease 0.08s;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    transform: scaleY(1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #111;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: 0.25s ease;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(13, 13, 15, 0.18);
    transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
    background: var(--red);
    transform: translateY(-1px);
}

/* =========================
   SHARED ELEMENTS
========================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 44px;
    text-align: center;
    padding: 0 20px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.section-heading.inverted h2,
.section-heading.inverted p {
    color: #fff;
}

.section-heading.inverted p {
    color: rgba(255,255,255,0.68);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    box-shadow: 0 18px 36px rgba(240, 20, 20, 0.25);
}

.btn-outline {
    border: 1px solid rgba(13, 13, 15, 0.14);
    color: var(--text);
    background: rgba(255,255,255,0.72);
}

/* =========================
   TOP HERO
========================= */
.top-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    overflow: hidden;
    background: var(--surface-2);
}

.top-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transform: translateX(44px) scale(1.01);
    transition:
        opacity .95s cubic-bezier(.22, .61, .36, 1),
        visibility .95s cubic-bezier(.22, .61, .36, 1),
        clip-path .95s cubic-bezier(.22, .61, .36, 1),
        transform .95s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, clip-path, transform;
    z-index: 1;
}

.top-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0);
    transform: translateX(0) scale(1);
    z-index: 3;
}

.top-slide.is-leaving {
    opacity: .35;
    visibility: visible;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-32px) scale(1);
    z-index: 2;
}
.top-content .highlight {
    color: var(--red);
    display: inline-block;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(.88) contrast(.95);
    transition: transform 6s ease;
}

.top-slide.active .hero-bg {
    transform: scale(1);
}

.top-slide.is-leaving .hero-bg {
    transform: scale(1.035);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.86) 44%, rgba(255,255,255,0.35) 100%),
        radial-gradient(circle at 20% 20%, rgba(240,20,20,0.08), transparent 32%);
}

.top-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 30px;
}

.top-content h1 {
    max-width: 860px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -0.07em;
    font-weight: 800;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-34px);
    transition: opacity .75s ease .18s, transform .75s ease .18s;
}

.top-content p {
    max-width: 680px;
    color: #4d4d53;
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .75s ease .3s, transform .75s ease .3s;
}

.top-slide.active .top-content h1,
.top-slide.active .top-content p {
    opacity: 1;
    transform: translateX(0);
}

.top-slide.is-leaving .top-content h1,
.top-slide.is-leaving .top-content p {
    opacity: 0;
    transform: translateX(26px);
    transition-delay: 0s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* =========================
   SERVICES / CAROUSEL
========================= */
.services-section {
    padding: 100px 0 110px;
    background: #fff;
}

.hero {
    position: relative;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 540px;
    display: flex;
    align-items: center;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(24px) scale(.985);
    transition:
        opacity .8s cubic-bezier(.22, .61, .36, 1),
        visibility .8s cubic-bezier(.22, .61, .36, 1),
        transform .8s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.slide.is-leaving {
    opacity: 0;
    visibility: visible;
    transform: translateX(-22px) scale(.99);
    z-index: 1;
}

.hero-image {
    min-height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(30px) scale(.98);
    transition: opacity .85s ease, transform .85s cubic-bezier(.22, .61, .36, 1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.slide.active .hero-image img {
    transform: scale(1);
}

.slide.active .hero-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.slide.is-leaving .hero-image {
    opacity: 0;
    transform: translateX(-28px) scale(.99);
}

.hero-text {
    position: relative;
    border-radius: var(--radius);
    padding: 48px;
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .85s ease .08s, transform .85s cubic-bezier(.22, .61, .36, 1) .08s;
}

.slide.active .hero-text {
    opacity: 1;
    transform: translateX(0);
}

.slide.is-leaving .hero-text {
    opacity: 0;
    transform: translateX(28px);
    transition-delay: 0s;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,20,20,0.35), transparent 68%);
}

.hero-label {
    position: relative;
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.hero-text h3 {
    position: relative;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
}

.hero-list {
    position: relative;
    list-style: none;
    display: grid;
    gap: 12px;
    color: rgba(255,255,255,0.78);
}

.hero-list li {
    position: relative;
    padding-left: 26px;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(240,20,20,0.16);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    cursor: pointer;
    font-size: 24px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.prev:hover,
.next:hover {
    background: var(--red);
    color: #fff;
}

.prev { left: -20px; }
.next { right: -20px; }

/* =========================
   FEATURES
========================= */
.features {
    background: #0e0e10;
    padding: 120px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.network-corners {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.network-corners::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -120px;
    left: -120px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(240, 20, 20, 0.28) 0 18px,
        transparent 18px 42px
    );
    background-size: 60px 60px;
    opacity: 0.35;
    transform: rotate(10deg);
}

.network-corners::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    bottom: -120px;
    right: -120px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(240, 20, 20, 0.28) 0 18px,
        transparent 18px 42px
    );
    background-size: 60px 60px;
    opacity: 0.35;
    transform: rotate(-10deg);
}

.features-title,
.features-layout {
    position: relative;
    z-index: 2;
}

.features-title {
    text-align: center;
    font-size: 44px;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.features-title .highlight {
    color: var(--red);
}

.features-layout {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.feature-item h3 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 18px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-title {
        font-size: 30px;
    }

    .network-corners::before,
    .network-corners::after {
        width: 260px;
        height: 260px;
        opacity: 0.25;
    }
}


/* =========================
   PRICING
========================= */
.packages-section {
    padding: 105px 20px;
    background: var(--surface-2);
}

.pricing-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(13,13,15,0.06);
}

.featured-package {
    border-color: rgba(240,20,20,0.38);
    box-shadow: 0 25px 80px rgba(240,20,20,0.14);
    transform: translateY(-10px);
}

.featured-package::before {
    content: "најпрепорачано";
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.package-name {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 12px 0 8px;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-tagline {
    color: var(--muted);
    margin-bottom: 26px;
}

.price-list {
    list-style: none;
    display: grid;
    gap: 11px;
}

.price-list li {
    position: relative;
    padding-left: 26px;
    color: #333338;
}

.price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}

/* =========================
   CONTACT + FOOTER
========================= */
.contact {
    padding: 110px 20px;
    background: var(--dark);
    color: #fff;
}

.contact-container {
    width: min(1000px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, border .2s ease, background .2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240,20,20,0.45);
    background: rgba(255,255,255,0.07);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-weight: 900;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

.contact-card p {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 56px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer img {
    width: 150px;
}

.footer p {
    color: var(--muted);
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
    .navbar {
        padding: 0 22px;
    }

    .nav-cta {
        display: none;
    }

    .brand img {
        width: 150px;
    }

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

    .hero {
        min-height: 790px;
    }

    .hero-image {
        min-height: 340px;
    }

    .features-layout,
    .pricing-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .featured-package {
        transform: none;
    }
}

@media (max-width: 720px) {
    section {
        scroll-margin-top: 70px;
    }
    body {
    }
    .navbar {
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .brand img {
        height: 36px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 82px;
        left: 18px;
        right: 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #ffffff;
        border: 1px solid rgba(15, 15, 15, 0.08);
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    .navbar.open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 15px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: #fff;
        background: var(--red);
    }

    .navbar.open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .top-hero {
        min-height: calc(100svh - 70px);
    }

    .top-content {
        width: min(100% - 32px, 1180px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-section,
    .features,
    .packages-section,
    .contact {
        padding: 72px 16px;
    }

    .hero {
        width: 100%;
        min-height: 850px;
    }

    .hero-text {
        padding: 30px;
    }

    .prev,
    .next {
        top: 260px;
        width: 42px;
        height: 42px;
    }

    .prev { left: 8px; }
    .next { right: 8px; }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 28px 18px;
    }
}
.section-heading .highlight,
h2 .highlight {
    color: var(--red);
}
@media (max-width: 720px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: 70px !important;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        height: 70px !important;
        padding: 0 18px !important;

        background: #ffffff !important;
        z-index: 999999 !important;

        transform: translateY(0) !important;
        translate: 0 0 !important;
        animation: none !important;
        transition: none !important;
        margin: 0 !important;
    }

    .top-hero {
        min-height: 650px !important;
    }

    .nav-links {
        position: fixed !important;
        top: 82px !important;
        left: 18px !important;
        right: 18px !important;
    }

    section {
        scroll-margin-top: 70px;
    }
}
@media (max-width: 720px) {
    .features {
        text-align: center;
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .features-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 54px;
        position: relative;
        z-index: 2;
    }

    .features-layout {
        justify-items: center;
        text-align: center;
    }

    .feature-item {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .feature-item .line {
        margin-left: auto;
        margin-right: auto;
    }
    .feature-item p {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .network-corners::before,
    .network-corners::after {
        width: 190px;
        height: 190px;
        opacity: 0.5;
        background-size: 34px 34px;
    }

    .network-corners::before {
        top: 18px;
        left: -36px;
    }

    .network-corners::after {
        right: -34px;
        bottom: 18px;
    }
}
@media (max-width: 720px) {
    .service-carousel {
        height: 540px;
        min-height: 540px;
        align-items: stretch;
    }

    .service-carousel .slide {
        height: 540px;
        grid-template-rows: 220px 300px;
        gap: 20px;
        align-items: stretch;
        transform: translateY(10px) scale(.995);
    }

    .service-carousel .slide.active {
        transform: translateY(0) scale(1);
    }

    .service-carousel .slide.is-leaving {
        transform: translateY(-6px) scale(.995);
    }

    .service-carousel .hero-image {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
        border-radius: 20px;
    }

    .service-carousel .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-carousel .hero-text {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
        padding: 20px 18px;
        border-radius: 20px;
        justify-content: flex-start;
        overflow: hidden;
    }

    .service-carousel .hero-label {
        margin-bottom: 10px;
        padding: 6px 11px;
        font-size: 11px;
    }

    .service-carousel .hero-text h3 {
        margin-bottom: 12px;
        font-size: clamp(21px, 6vw, 27px);
        letter-spacing: -0.035em;
    }

    .service-carousel .hero-list {
        gap: 7px;
        font-size: 14px;
        line-height: 1.35;
    }

    .service-carousel .hero-list li {
        padding-left: 20px;
    }

    .service-carousel .hero-list li::before {
        top: 8px;
        width: 8px;
        height: 8px;
        border-radius: 2px;
    }

    .service-carousel .prev,
    .service-carousel .next {
        top: 110px;
    }
}

.mobile-break {
    display: none;
}

@media (max-width: 720px) {
    .mobile-break {
        display: block;
    }
}
@media (orientation: landscape) and (max-height: 520px) and (max-width: 950px) {
    :root {
        --mobile-landscape-nav: 56px;
    }

    body {
        padding-top: var(--mobile-landscape-nav) !important;
    }

    .navbar {
        height: var(--mobile-landscape-nav) !important;
        min-height: var(--mobile-landscape-nav) !important;
        padding: 0 18px !important;
    }

    .brand img {
        width: 130px !important;
        height: auto !important;
    }

    .menu-toggle {
        transform: scale(0.9);
    }

    .top-hero {
        height: calc(100svh - var(--mobile-landscape-nav)) !important;
        min-height: calc(100svh - var(--mobile-landscape-nav)) !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: hidden !important;
    }

    .top-slide {
        min-height: calc(100svh - var(--mobile-landscape-nav)) !important;
        padding-top: 22px !important;
        padding-bottom: 18px !important;
        align-items: center !important;
        box-sizing: border-box !important;
        clip-path: none !important;
        transform: none !important;
        transition: opacity 0.65s ease, visibility 0.65s ease !important;
    }

    .top-slide.active,
    .top-slide.is-leaving {
        clip-path: none !important;
        transform: none !important;
    }

    .top-content {
        width: min(100% - 44px, 900px) !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        transform: translateY(6px) !important;
    }

    .top-content h1 {
        max-width: 600px !important;
        font-size: clamp(27px, 5vw, 42px) !important;
        line-height: 1.02 !important;
        margin-bottom: 10px !important;
        letter-spacing: -0.055em !important;
    }

    .top-content p {
        max-width: 500px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 14px !important;
    }

    .top-actions {
        gap: 10px !important;
    }

    .top-actions .btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* =========================
   SERVICE CARD SPACING FIX
   fixes huge gaps + spilling
   ========================= */

/* DESKTOP */
.service-carousel .hero-text {
    height: 540px;
    min-height: 540px;
    max-height: 540px;
    padding: 50px 42px;
    display: grid;
    grid-template-rows: 30px 170px auto;
    row-gap: 18px;
    overflow: hidden;
}

.service-carousel .hero-label {
    height: 30px;
}

.service-carousel .hero-text h3 {
    height: 170px;
    font-size: clamp(34px, 2.3vw, 42px);
    line-height: 1.08;
    overflow: hidden;
    display: block;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}

/* IMPORTANT: do NOT stretch list items */
.service-carousel .hero-list {
    display: block;
    height: auto;
    max-height: 270px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.35;
}

.service-carousel .hero-list li {
    min-height: 52px;
    padding: 10px 0 10px 24px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-carousel .hero-list li:first-child {
    border-top: none;
}

.service-carousel .hero-list li::before {
    top: 50%;
    transform: translateY(-50%);
}

/* MOBILE */
@media (max-width: 720px) {
    .service-carousel {
        height: 650px;
        min-height: 650px;
        max-height: 650px;
    }

    .service-carousel .slide {
        height: 650px;
        grid-template-rows: 190px 440px;
        gap: 20px;
    }

    .service-carousel .hero-image {
        height: 190px;
        min-height: 190px;
        max-height: 190px;
    }

    .service-carousel .hero-text {
        height: 440px;
        min-height: 440px;
        max-height: 440px;
        padding: 26px 24px;
        grid-template-rows: 26px 118px auto;
        row-gap: 14px;
        overflow: hidden;
    }

    .service-carousel .hero-label {
        height: 26px;
        font-size: 10.5px;
    }

    .service-carousel .hero-text h3 {
        height: 118px;
        font-size: 27px;
        line-height: 1.08;
        overflow: hidden;
        display: block;
        -webkit-line-clamp: unset !important;
        -webkit-box-orient: unset !important;
    }

    .service-carousel .hero-list {
        display: block;
        max-height: 250px;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.32;
    }

    .service-carousel .hero-list li {
        min-height: 48px;
        padding: 8px 0 8px 22px;
        display: flex;
        align-items: center;
    }

    .service-carousel .hero-list li::before {
        top: 50%;
        transform: translateY(-50%);
    }
}
/* FORCE REMOVE OVAL TITLE FROM SERVICE CAROUSEL */
.service-carousel .hero-label {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;

    color: #bdbdbd !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;

    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
}

.service-carousel .hero-label::before,
.service-carousel .hero-label::after {
    display: none !important;
    content: none !important;
}

/* Reduce space between service title and bullet list */
.service-carousel .hero-text {
    grid-template-rows: 30px 125px auto !important;
    row-gap: 12px !important;
}

.service-carousel .hero-text h3 {
    height: 125px !important;
    margin: 0 !important;
}

/* Mobile */
@media (max-width: 720px) {
    .service-carousel .hero-text {
        grid-template-rows: 26px 92px auto !important;
        row-gap: 10px !important;
    }

    .service-carousel .hero-text h3 {
        height: 92px !important;
        margin: 0 !important;
    }
}
/* MOBILE PERFORMANCE FIX FOR SLIDESHOWS */
@media (max-width: 720px) {
    .top-slide,
    .service-carousel .slide {
        transition: opacity 0.8s ease, visibility 0.8s ease !important;
        transform: none !important;
        clip-path: none !important;
        will-change: opacity;
    }

    .top-slide.active,
    .service-carousel .slide.active {
        transform: none !important;
        clip-path: none !important;
    }

    .top-slide.is-leaving,
    .service-carousel .slide.is-leaving {
        transform: none !important;
        clip-path: none !important;
    }

    .top-content,
    .service-carousel .hero-image,
    .service-carousel .hero-text {
        transform: none !important;
        transition: opacity 0.8s ease !important;
    }

    .hero-bg {
        transform: none !important;
        transition: opacity 0.8s ease !important;
        will-change: opacity;
    }

    .hero-bg::after {
        backdrop-filter: none !important;
    }
}
@media (orientation: landscape) and (max-height: 520px) {
    .services-section {
        padding-bottom: calc(110px + env(safe-area-inset-bottom)) !important;
    }

    .service-carousel {
        margin-bottom: calc(100px + env(safe-area-inset-bottom)) !important;
    }
}
/* =========================
   CONTACT SECTION - CLEAN OLD STYLE FIX
   keeps same text, removes AI card/icon look
   ========================= */

.contact-section {
    padding: 72px 7% !important;
    background: #101010 !important;
    color: #ffffff !important;
}

/* Hide the old icons */
.contact-section .icon,
.contact-section .contact-icon,
.contact-section i,
.contact-section svg,
.contact-section img {
    display: none !important;
}

/* Keep the contact layout, but remove card feeling */
.contact-section .contact-grid,
.contact-section .contact-wrapper,
.contact-section .contact-cards,
.contact-section .contact-links {
    max-width: 1180px !important;
    margin: 42px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
}

/* Style the old contact boxes as simple columns */
.contact-section .contact-card,
.contact-section .contact-item,
.contact-section .contact-box,
.contact-section .contact-method,
.contact-section .contact-link {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 28px 28px !important;
    min-height: auto !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Vertical dividers between columns */
.contact-section .contact-card + .contact-card,
.contact-section .contact-item + .contact-item,
.contact-section .contact-box + .contact-box,
.contact-section .contact-method + .contact-method,
.contact-section .contact-link + .contact-link {
    border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
}

/* Small red accent */
.contact-section .contact-card::before,
.contact-section .contact-item::before,
.contact-section .contact-box::before,
.contact-section .contact-method::before,
.contact-section .contact-link::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 18px;
    background: #d71920;
    border-radius: 999px;
}

/* Headings */
.contact-section h3 {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Text */
.contact-section p {
    margin: 0 !important;
    color: #bdbdbd !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

/* Email / phone / instagram value */
.contact-section a,
.contact-section strong,
.contact-section span {
    color: #ffffff;
}

.contact-section a:hover {
    color: #ffffff !important;
}

.contact-section .contact-card:hover,
.contact-section .contact-item:hover,
.contact-section .contact-box:hover,
.contact-section .contact-method:hover,
.contact-section .contact-link:hover {
    background: rgba(255, 255, 255, 0.035) !important;
}

/* Mobile */
@media (max-width: 720px) {
    .contact-section {
        padding: 56px 22px !important;
    }

    .contact-section .contact-grid,
    .contact-section .contact-wrapper,
    .contact-section .contact-cards,
    .contact-section .contact-links {
        grid-template-columns: 1fr !important;
        margin-top: 30px !important;
    }

    .contact-section .contact-card,
    .contact-section .contact-item,
    .contact-section .contact-box,
    .contact-section .contact-method,
    .contact-section .contact-link {
        padding: 22px 0 !important;
    }

    .contact-section .contact-card + .contact-card,
    .contact-section .contact-item + .contact-item,
    .contact-section .contact-box + .contact-box,
    .contact-section .contact-method + .contact-method,
    .contact-section .contact-link + .contact-link {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    }
}