:root {
    --bg: #050816;
    --bg-2: #09101f;
    --panel: rgba(12, 18, 36, 0.82);
    --panel-2: rgba(17, 25, 48, 0.92);
    --border: rgba(110, 168, 254, 0.16);
    --border-strong: rgba(110, 168, 254, 0.28);
    --text: #eef4ff;
    --muted: #a9b8d3;
    --primary: #5ea2ff;
    --secondary: #7b61ff;
    --accent: #00d1ff;
    --success: #25d366;
    --shadow: 0 20px 60px rgba(0,0,0,.45);
    --shadow-soft: 0 12px 30px rgba(0,0,0,.25);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 10%, rgba(0,209,255,.14), transparent 20%), radial-gradient(circle at 90% 12%, rgba(123,97,255,.14), transparent 22%), radial-gradient(circle at 50% 100%, rgba(94,162,255,.10), transparent 25%), linear-gradient(180deg, #04070f 0%, #07101e 40%, #081121 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron',sans-serif;
    color: #fff;
    letter-spacing: .4px;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: .3s ease;
}

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

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0,209,255,.08);
    border: 1px solid rgba(0,209,255,.18);
    box-shadow: inset 0 0 20px rgba(0,209,255,.04);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-big {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: 18px 0 18px;
}

.brand-accent {
    color: var(--accent);
}

.premium-panel {
    background: linear-gradient(180deg, rgba(14, 23, 45, .9), rgba(8, 14, 28, .88));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

    .premium-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(0,209,255,.08), transparent 28%), radial-gradient(circle at bottom left, rgba(123,97,255,.08), transparent 26%);
        pointer-events: none;
    }

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    border: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    box-shadow: 0 14px 32px rgba(94,162,255,.25);
    transition: .3s ease;
}

    .btn-main:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(123,97,255,.28);
    }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 14px;
    border: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg,#1fbf5c,#25d366);
    box-shadow: 0 14px 28px rgba(37,211,102,.22);
}

    .btn-whatsapp:hover {
        color: #fff;
        transform: translateY(-2px);
    }

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: rgba(3,6,14,.92);
    backdrop-filter: blur(10px);
}

    #spinner.show {
        opacity: 1;
        visibility: visible;
        transition: opacity .4s ease-out, visibility 0s linear 0s;
    }

.topbar-premium {
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ticker-wrap {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: tickerMove 16s linear infinite;
    color: #dce7fb;
    font-size: .94rem;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-140%)
    }
}

.topbar-premium a,
.topbar-premium span,
.topbar-premium i {
    color: #d8e3fa !important;
}

.navbar-shell {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(5,8,18,.86), rgba(5,8,18,.48));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-premium {
    background: linear-gradient(180deg, rgba(10,16,31,.92), rgba(9,14,26,.88));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 12px 18px;
}

.navbar-brand h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
}

.navbar-brand small {
    display: block;
    margin-top: 6px;
    font-size: .68rem;
    font-family: 'Inter',sans-serif;
    letter-spacing: 1.2px;
    color: #aab8d3;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.86);
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 999px;
    margin: 0 4px;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #fff;
        background: linear-gradient(135deg, rgba(94,162,255,.14), rgba(123,97,255,.14));
        border: 1px solid rgba(94,162,255,.18);
        box-shadow: inset 0 0 18px rgba(94,162,255,.08);
    }

.cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-card {
    padding: 42px;
    height: 100%;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
    margin-top: 30px;
}

    .about-list .item {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.07);
    }

        .about-list .item i {
            color: var(--accent);
            font-size: 1.05rem;
        }

.social-premium a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-right: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
}

    .social-premium a:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg,var(--primary),var(--secondary));
    }

.about-visual {
    min-height: 560px;
    padding: 26px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

    .image-stack .img-main,
    .image-stack .img-float {
        position: absolute;
        overflow: hidden;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,.12);
        box-shadow: var(--shadow);
    }

    .image-stack .img-main {
        top: 24px;
        left: 24px;
        width: 68%;
        height: 72%;
    }

    .image-stack .img-float {
        bottom: 20px;
        right: 18px;
        width: 58%;
        height: 52%;
    }

    .image-stack img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hud-box {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(5,10,20,.78);
    border: 1px solid rgba(0,209,255,.18);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

    .hud-box strong {
        display: block;
        color: #fff;
        font-size: 1.05rem;
    }

    .hud-box span {
        color: #b4c3df;
        font-size: .92rem;
    }

.fact-card {
    height: 100%;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-soft);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

    .fact-card::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -20px;
        top: -20px;
        background: radial-gradient(circle, rgba(0,209,255,.12), transparent 65%);
        pointer-events: none;
    }

    .fact-card:hover {
        transform: translateY(-8px);
        border-color: var(--border-strong);
    }

.fact-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 18px;
    font-size: 1.7rem;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(94,162,255,.14), rgba(123,97,255,.14));
    border: 1px solid rgba(94,162,255,.18);
    box-shadow: inset 0 0 18px rgba(94,162,255,.07);
}

.service-card {
    height: 100%;
    padding: 32px 26px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17,25,48,.92), rgba(8,14,28,.92));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-soft);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(0,209,255,.10), transparent 30%);
        opacity: 0;
        transition: .35s ease;
        pointer-events: none;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--border-strong);
    }

        .service-card:hover::after {
            opacity: 1;
        }

.service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    box-shadow: 0 16px 28px rgba(94,162,255,.24);
}

.contact-card {
    padding: 42px;
}

.form-control,
textarea.form-control {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    border-radius: 16px;
    padding: 16px 18px !important;
    box-shadow: none !important;
}

    .form-control::placeholder {
        color: #9fb0d0;
    }

    .form-control:focus,
    textarea.form-control:focus {
        background: rgba(255,255,255,.07);
        color: #fff;
        border-color: rgba(0,209,255,.34);
    }

.terms-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

    .terms-box input {
        margin-top: 5px;
        accent-color: var(--accent);
    }

    .terms-box label {
        color: #d9e5fb;
    }

    .terms-box a {
        color: var(--accent);
    }

.footer-premium {
    padding-top: 80px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.footer-box {
    height: 100%;
    padding: 28px;
}

.footer-premium h5 {
    margin-bottom: 20px;
}

.footer-premium ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-premium ul li {
        margin-bottom: 14px;
    }

.footer-premium a {
    color: #dce6fb;
}

    .footer-premium a:hover {
        color: var(--accent);
    }

.footer-desc {
    max-width: 700px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin: 0 6px;
    color: #fff;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
}

    .footer-social a:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg,var(--primary),var(--secondary));
    }

.tiktok-btn {
    background: #000 !important;
    border-color: #000 !important;
}

.copyright-bar {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.copyright-text {
    color: #b8c6df;
}

.copyright-link {
    color: #e8f0ff;
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 95px;
    z-index: 99;
    display: none;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff;
    box-shadow: 0 16px 34px rgba(94,162,255,.25);
}

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 100;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    background: linear-gradient(135deg,#1fbf5c,#25d366);
    box-shadow: 0 18px 35px rgba(37,211,102,.28);
}

    .whatsapp-float:hover {
        color: #fff;
        transform: translateY(-3px) scale(1.03);
    }

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

    .about-card,
    .contact-card {
        padding: 28px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 400px;
    }

    .image-stack {
        min-height: 360px;
    }

    .cta-group {
        margin-top: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand h1 {
        font-size: 1.6rem;
    }

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

    .topbar-premium {
        display: none !important;
    }

    .about-visual {
        min-height: 330px;
    }

    .image-stack .img-main {
        width: 70%;
        height: 70%;
        top: 18px;
        left: 18px;
    }

    .image-stack .img-float {
        width: 58%;
        height: 48%;
        right: 14px;
        bottom: 14px;
    }

    .back-to-top {
        right: 18px;
        bottom: 88px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
    }
}
.hero-mini {
    padding: 70px 0 30px;
}

    .hero-mini .premium-panel {
        padding: 42px;
    }

.service-price {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #ffffff;
    font-weight: 700;
    font-size: .95rem;
}

.contact-info-card {
    height: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 16px 28px rgba(94,162,255,.24);
}

.map-card {
    padding: 18px;
    height: 100%;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    border-radius: 20px;
    filter: grayscale(0.15) contrast(1.05);
}

.services-intro-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

    .services-intro-list .item {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.07);
    }

        .services-intro-list .item i {
            color: var(--accent);
        }

@media (max-width: 991.98px) {
    .services-intro-list {
        grid-template-columns: 1fr;
    }

    .map-frame {
        min-height: 380px;
    }
}
.hero-mini {
    padding: 70px 0 30px;
}

    .hero-mini .premium-panel {
        padding: 42px;
    }

.products-intro-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

    .products-intro-list .item {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.07);
    }

        .products-intro-list .item i {
            color: var(--accent);
        }

.product-showcase {
    padding: 22px;
}

.product-gallery-card,
.product-details-card {
    padding: 24px;
    height: 100%;
}

.product-heading {
    margin-bottom: 20px;
    text-align: center;
}

.premium-carousel {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-soft);
    background: rgba(255,255,255,.02);
}

    .premium-carousel .carousel-inner img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        display: block;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

    .premium-carousel .carousel-indicators {
        margin-bottom: 14px;
        flex-wrap: wrap;
        gap: 8px;
    }

        .premium-carousel .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 0;
            opacity: .6;
            background: rgba(255,255,255,.7);
        }

        .premium-carousel .carousel-indicators .active {
            opacity: 1;
            background: var(--accent);
            box-shadow: 0 0 12px rgba(0,209,255,.7);
        }

    .premium-carousel .carousel-control-prev,
    .premium-carousel .carousel-control-next {
        width: 54px;
        height: 54px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        background: rgba(5,10,20,.62);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
        backdrop-filter: blur(8px);
    }

    .premium-carousel .carousel-control-prev {
        left: 16px;
    }

    .premium-carousel .carousel-control-next {
        right: 16px;
    }

.feature-list,
.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .feature-list li,
    .benefit-list li {
        margin-bottom: 12px;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.06);
    }

.price-box {
    margin-top: 28px;
    text-align: center;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

    .price-box h5 {
        color: #ff7c98;
        margin-bottom: 10px;
    }

    .price-box strong {
        font-size: 1.1rem;
        color: #fff;
    }

.product-cta {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-info-card {
    height: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 16px 28px rgba(94,162,255,.24);
}

.map-card {
    padding: 18px;
    height: 100%;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    border-radius: 20px;
    filter: grayscale(0.15) contrast(1.05);
}

.contact-section-title {
    max-width: 760px;
    margin: 0 auto 40px;
}

@media (max-width: 991.98px) {
    .products-intro-list {
        grid-template-columns: 1fr;
    }

    .premium-carousel .carousel-inner img {
        height: 420px;
    }

    .map-frame {
        min-height: 380px;
    }
}

@media (max-width: 767.98px) {
    .premium-carousel .carousel-inner img {
        height: 300px;
    }

    .hero-mini .premium-panel {
        padding: 28px;
    }
}
.legal-hero-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

    .legal-hero-list .item {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.07);
    }

        .legal-hero-list .item i {
            color: var(--accent);
        }

.legal-card {
    padding: 38px;
}

    .legal-card h2 {
        margin-bottom: 18px;
    }

    .legal-card h4 {
        margin-top: 28px;
        margin-bottom: 12px;
        font-size: 1.05rem;
        color: #ffffff;
    }

    .legal-card p {
        margin-bottom: 14px;
    }

    .legal-card a {
        color: var(--accent);
    }

.legal-intro {
    margin-bottom: 14px;
}

@media (max-width: 991.98px) {
    .legal-hero-list {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 26px;
    }
}
.privacy-hero-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

    .privacy-hero-list .item {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.07);
    }

        .privacy-hero-list .item i {
            color: var(--accent);
        }

.privacy-card {
    padding: 38px;
}

    .privacy-card h2 {
        margin-bottom: 18px;
    }

    .privacy-card h4 {
        margin-top: 28px;
        margin-bottom: 12px;
        font-size: 1.05rem;
        color: #ffffff;
    }

    .privacy-card p,
    .privacy-card li {
        color: var(--muted);
        line-height: 1.8;
    }

    .privacy-card ul {
        padding-left: 20px;
        margin-bottom: 14px;
    }

    .privacy-card a {
        color: var(--accent);
    }

.privacy-intro {
    margin-bottom: 14px;
}

@media (max-width: 991.98px) {
    .privacy-hero-list {
        grid-template-columns: 1fr;
    }

    .privacy-card {
        padding: 26px;
    }
}
/* =========================
   RESPONSIVE PREMIUM PATCH
   Mobile + Tablet
========================= */

/* Fix general media/content */
img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

.container,
.container-fluid {
    overflow-x: clip;
}

.row {
    --bs-gutter-x: 1.25rem;
}

/* Butoane mai flexibile */
.btn-main,
.btn-whatsapp {
    min-height: 50px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
}

/* Texte lungi */
p,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
span {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Carduri și panouri */
.premium-panel,
.service-card,
.fact-card,
.footer-box,
.product-details-card,
.product-gallery-card,
.contact-card,
.legal-card,
.privacy-card {
    width: 100%;
}

/* Navbar brand să nu rupă layout-ul */
.navbar-brand {
    max-width: 100%;
}

.navbar-brand h1 {
    word-break: break-word;
}

/* Collapse navbar mobile */
@media (max-width: 991.98px) {
    .navbar-shell {
        padding: 10px 0;
    }

    .navbar-premium {
        padding: 12px 14px;
        border-radius: 18px;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(8, 14, 28, 0.96);
        border: 1px solid rgba(255,255,255,.08);
    }

    .navbar-dark .navbar-nav .nav-link {
        display: block;
        width: 100%;
        margin: 0 0 8px;
        padding: 14px 16px;
        border-radius: 14px;
        text-align: left;
    }

    .navbar-dark .navbar-nav .nav-link:last-child {
        margin-bottom: 0;
    }

    .cta-group {
        width: 100%;
        margin-top: 12px;
    }

    .cta-group .btn-whatsapp,
    .cta-group .btn-main {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-mini {
        padding: 40px 0 20px;
    }

    .hero-mini .premium-panel,
    .about-card,
    .contact-card,
    .legal-card,
    .privacy-card,
    .product-details-card,
    .product-gallery-card,
    .contact-side-card,
    .footer-box {
        padding: 24px;
    }

    .section-title-big {
        font-size: clamp(1.9rem, 5vw, 2.6rem);
        line-height: 1.18;
    }

    .about-visual {
        min-height: 420px;
        padding: 18px;
    }

    .image-stack {
        min-height: 360px;
    }

    .image-stack .img-main {
        top: 14px;
        left: 14px;
        width: 68%;
        height: 68%;
    }

    .image-stack .img-float {
        right: 12px;
        bottom: 12px;
        width: 56%;
        height: 46%;
    }

    .hud-box {
        left: 14px;
        bottom: 14px;
        padding: 12px 14px;
        max-width: calc(100% - 28px);
    }

    .about-list,
    .services-intro-list,
    .products-intro-list,
    .legal-hero-list,
    .privacy-hero-list,
    .contact-hero-list {
        grid-template-columns: 1fr;
    }

    .premium-carousel .carousel-inner img {
        height: 420px;
    }

    .map-frame {
        min-height: 360px;
    }

    .contact-info-card {
        padding: 18px;
        gap: 14px;
    }

    .contact-info-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 1.1rem;
        border-radius: 16px;
    }

    .footer-premium {
        padding-top: 60px;
        margin-top: 60px;
    }

    .back-to-top {
        right: 18px;
        bottom: 88px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
    }
}

/* Telefon */
@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

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

    .hero-mini {
        padding: 28px 0 12px;
    }

    .topbar-premium {
        display: none !important;
    }

    .section-kicker {
        font-size: 0.72rem;
        gap: 8px;
        padding: 8px 12px;
        letter-spacing: 0.7px;
    }

    .section-title-big {
        font-size: 1.75rem;
        margin: 14px 0 14px;
        line-height: 1.2;
    }

    .navbar-brand h1 {
        font-size: 1.28rem;
    }

    .navbar-brand small {
        font-size: 0.58rem;
        letter-spacing: 0.9px;
    }

    .premium-panel,
    .service-card,
    .fact-card,
    .footer-box {
        border-radius: 20px;
    }

    .hero-mini .premium-panel,
    .about-card,
    .contact-card,
    .legal-card,
    .privacy-card,
    .product-details-card,
    .product-gallery-card,
    .contact-side-card,
    .footer-box {
        padding: 18px;
    }

    .about-list .item,
    .services-intro-list .item,
    .products-intro-list .item,
    .legal-hero-list .item,
    .privacy-hero-list .item,
    .contact-hero-list .item {
        min-height: auto;
        padding: 14px;
        border-radius: 14px;
    }

    .fact-card {
        padding: 20px;
    }

    .fact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.35rem;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    .service-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .service-price {
        display: block;
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-visual {
        min-height: 300px;
        padding: 14px;
    }

    .image-stack {
        min-height: 270px;
    }

    .image-stack .img-main {
        top: 8px;
        left: 8px;
        width: 72%;
        height: 68%;
        border-radius: 18px;
    }

    .image-stack .img-float {
        right: 8px;
        bottom: 8px;
        width: 56%;
        height: 42%;
        border-radius: 18px;
    }

    .hud-box {
        left: 10px;
        bottom: 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .hud-box strong {
        font-size: 0.92rem;
    }

    .hud-box span {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .form-control,
    textarea.form-control {
        border-radius: 14px;
        padding: 14px 15px !important;
        font-size: 15px;
    }

    .terms-box {
        padding: 12px 13px;
        gap: 10px;
        border-radius: 14px;
    }

    .terms-box label {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .btn-main,
    .btn-whatsapp {
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 0.95rem;
    }

    .product-cta,
    .contact-actions,
    .actions {
        flex-direction: column;
    }

    .premium-carousel {
        border-radius: 18px;
    }

    .premium-carousel .carousel-inner img {
        height: 240px;
        object-fit: cover;
    }

    .premium-carousel .carousel-control-prev,
    .premium-carousel .carousel-control-next {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .premium-carousel .carousel-control-prev {
        left: 8px;
    }

    .premium-carousel .carousel-control-next {
        right: 8px;
    }

    .premium-carousel .carousel-indicators {
        gap: 6px;
        margin-bottom: 8px;
    }

    .premium-carousel .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .contact-info-card {
        align-items: flex-start;
        padding: 16px;
        border-radius: 18px;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .map-card {
        padding: 12px;
    }

    .map-frame {
        min-height: 260px;
        border-radius: 16px;
    }

    .legal-card h2,
    .privacy-card h2 {
        font-size: 1.5rem;
    }

    .legal-card h4,
    .privacy-card h4 {
        font-size: 1rem;
        line-height: 1.5;
    }

    .footer-premium {
        padding-top: 48px;
        margin-top: 48px;
    }

    .footer-box {
        padding: 18px;
    }

    .footer-social a,
    .social-premium a,
    .contact-social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .copyright-bar {
        margin-top: 20px;
        padding-top: 18px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        right: 14px;
        bottom: 76px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 1.45rem;
    }
}

/* Extra small phones */
@media (max-width: 575.98px) {
    .container,
    .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .row {
        --bs-gutter-x: 0.9rem;
    }

    .section-title-big {
        font-size: 1.55rem;
    }

    .navbar-premium {
        padding: 10px 12px;
    }

    .navbar-collapse {
        padding: 12px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 12px 14px;
        font-size: 0.96rem;
    }

    .hero-mini .premium-panel,
    .about-card,
    .contact-card,
    .legal-card,
    .privacy-card,
    .product-details-card,
    .product-gallery-card,
    .contact-side-card,
    .footer-box,
    .service-card,
    .fact-card {
        padding: 16px;
    }

    .premium-carousel .carousel-inner img {
        height: 210px;
    }

    .image-stack {
        min-height: 240px;
    }

    .map-frame {
        min-height: 220px;
    }

    .hud-box {
        max-width: calc(100% - 20px);
    }
}

/* Landscape phones */
@media (max-width: 991.98px) and (orientation: landscape) {
    .premium-carousel .carousel-inner img {
        height: 280px;
    }

    .map-frame {
        min-height: 260px;
    }
}