:root {
    --primary: #1d8fe1;
    --primary-dark: #0b6fa8;
    --dark: #0f1e2b;
    --text: #1a2738;
    --light: #f5f9ff;
    --accent: #ff9f1c;
    --accent-alt: #8cc63f;
    --accent-purple: #9c5de8;
    --radius: 18px;
    --transition: all 0.3s ease;
    --hero-background-photo: linear-gradient(120deg, rgba(245, 249, 255, 0.98), rgba(255, 255, 255, 0.92));
    --hero-photo-main: linear-gradient(135deg, rgba(29, 143, 225, 0.92), rgba(156, 93, 232, 0.85));
    --hero-photo-secondary: linear-gradient(135deg, rgba(140, 198, 63, 0.78), rgba(29, 143, 225, 0.82));
    --hero-photo-detail: linear-gradient(135deg, rgba(255, 159, 28, 0.92), rgba(239, 90, 161, 0.78));
    /* Ajusteaza valorile de mai sus cu URL-urile foto finale pentru eroul de pe prima pagina */
    --topbar-height: 84px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background: white;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, rgba(6, 12, 24, 0.96), rgba(18, 34, 61, 0.94));
    color: rgba(248, 250, 252, 0.95);
    box-shadow: 0 12px 32px rgba(4, 10, 22, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.95);
}

.logo__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo__link:hover {
    opacity: 0.9;
}

.logo__image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo__text {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.nav a {
    position: relative;
    color: rgba(248, 250, 252, 0.9);
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: #ffffff;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.nav-active {
    color: var(--primary) !important;
}

.nav-active::after {
    transform: scaleX(1) !important;
}

.topbar__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.topbar__mobile-actions {
    display: none;
    align-items: center;
    gap: 0.45rem;
}

.topbar__offer {
    display: none;
    padding: 0.4rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.35);
    color: rgba(248, 250, 252, 0.95);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(248, 250, 252, 0.08);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.topbar__offer:hover,
.topbar__offer:focus-visible {
    color: #ffffff;
    border-color: rgba(248, 250, 252, 0.7);
    background: rgba(29, 143, 225, 0.2);
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
    outline: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: rgba(248, 250, 252, 0.9);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    outline: none;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.2);
}

.nav-toggle__icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.topbar--menu-open .nav-toggle__icon {
    transform: rotate(180deg);
}

body.nav-open {
    overflow: hidden;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn--primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 25px rgba(29, 143, 225, 0.24);
}

.btn--primary:hover {
    background: #0ea5e9;
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn--outline {
    border-color: var(--primary);
    color: var(--primary);
    background: white;
}

.btn--outline:hover {
    background: var(--primary);
    color: white;
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn--ghost:hover {
    border-color: white;
}

.btn--gradient {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.25), rgba(255, 255, 255, 0.2)) !important;
    border-color: white !important;
    color: var(--primary-dark) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.3) !important;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.btn--gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(29, 143, 225, 0.4) !important;
}

.btn--light {
    background: white;
    color: var(--primary);
    border: none;
}

.btn--wide {
    width: 100%;
    justify-content: center;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4.5rem;
    background: var(--hero-background-photo);
}

.hero--home {
   
    display: flex;
    align-items: center;
    padding: 9rem 0 20rem;
    background: linear-gradient(120deg, rgba(245, 249, 255, 0.96), rgba(255, 255, 255, 0.82));
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__gradient {
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 18% 22%, rgba(29, 143, 225, 0.35), transparent 55%),
        radial-gradient(circle at 78% 30%, rgba(156, 93, 232, 0.32), transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(255, 159, 28, 0.18), transparent 70%);
    filter: blur(0);
    opacity: 0.9;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.18), transparent 55%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, transparent 65%);
    mix-blend-mode: screen;
    opacity: 0.4;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.55;
    animation: heroPulse 14s ease-in-out infinite alternate;
}

.hero__orb--one {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -110px;
    background: radial-gradient(circle, rgba(156, 93, 232, 0.55), transparent 70%);
}

.hero__orb--two {
    width: 360px;
    height: 360px;
    bottom: -150px;
    left: -80px;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.32), transparent 70%);
    animation-delay: -3s;
}

.hero__orb--three {
    width: 260px;
    height: 260px;
    top: 42%;
    left: 48%;
    background: radial-gradient(circle, rgba(29, 143, 225, 0.38), transparent 70%);
    animation-delay: -1.5s;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero__inner--home {
    display: grid;
    gap: 4rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.hero:not(.hero--home) .hero__content h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.hero:not(.hero--home) .hero__content p {
    max-width: 520px;
}

.hero__content {
     padding-top: 1rem;
    color: var(--dark);
}

.hero__content p {
    font-size: 1.05rem;
    max-width: 560px;
    color: rgba(15, 30, 43, 0.78);
    margin-bottom: 1.75rem;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.16), rgba(156, 93, 232, 0.16));
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.75rem;
}

.hero__checklist {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.hero__checklist li {
    position: relative;
    padding-left: 1.9rem;
    font-weight: 500;
    color: rgba(15, 30, 43, 0.8);
}

.hero__checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 6px rgba(29, 143, 225, 0.18);
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 540px;
    margin: 0 auto;
}

.hero-metric {
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(29, 143, 225, 0.2);
    border-radius: calc(var(--radius) - 2px);
    box-shadow: 0 8px 25px rgba(15, 30, 43, 0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-metric strong {
    display: block;
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.metric-unit {
    font-size: 0.7em;
    vertical-align: super;
}

.hero-metric span {
    display: block;
    font-size: 1rem;
    color: rgba(15, 30, 43, 0.7);
    font-weight: 500;
}

.hero-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 30, 43, 0.15);
}

.hero__visual {
    position: relative;
    min-height: clamp(460px, 56vw, 520px);
    max-width: 520px;
    margin-left: auto;
}

.hero__photo-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (min-width: 561px) {
    .hero__photo-slider {
        display: contents;
    }
}

.hero__photo {
    position: absolute;
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 30, 43, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.85);
    animation: heroFloat 12s ease-in-out infinite;
    background: #fff;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__photo--main {
    top: 0;
    right: clamp(-10px, -2vw, 0px);
    width: clamp(300px, 32vw, 360px);
    height: clamp(380px, 52vw, 460px);
    animation-delay: 0.2s;
}

.hero__photo--secondary {
    bottom: 18%;
    left: clamp(-70px, -9vw, -25px);
    width: clamp(190px, 22vw, 240px);
    height: clamp(230px, 30vw, 280px);
    animation-duration: 13s;
    animation-delay: -1s;
}

.hero__photo--tertiary {
    bottom: -30px;
    right: clamp(-20px, 6vw, 30px);
    width: clamp(160px, 18vw, 210px);
    height: clamp(170px, 24vw, 220px);
    animation-duration: 10s;
    animation-delay: -2s;
}

.hero__label {
    position: absolute;
    left: 1.3rem;
    bottom: 1.3rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(15, 30, 43, 0.85);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__floating-card {
    position: absolute;
    padding: 1.5rem;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(29, 143, 225, 0.14);
    box-shadow: 0 24px 55px rgba(15, 30, 43, 0.16);
    max-width: 230px;
    animation: heroFloat 14s ease-in-out infinite;
}

.hero__floating-card--top {
    top: -35px;
    left: clamp(-20px, 10%, 40px);
    animation-delay: -1.4s;
}

.hero__floating-card--bottom {
    bottom: -45px;
    right: clamp(-30px, 6%, 40px);
    animation-delay: 0.9s;
}

.hero__floating-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.hero__floating-card strong {
    display: block;
    font-size: 1.15rem;
    color: var(--dark);
}

.hero__floating-card p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    color: rgba(15, 30, 43, 0.75);
    line-height: 1.4;
}

.hero__floating-author {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: rgba(15, 30, 43, 0.55);
    font-weight: 600;
}

.hero__stars {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    background: linear-gradient(120deg, var(--accent), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -18px, 0);
        -webkit-transform: translate3d(0, -18px, 0);
    }
}

@keyframes heroPulse {
    0% {
        transform: scale(0.94);
        opacity: 0.45;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes heroDrift {
    0% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        transform: rotate(8deg) scale(1.05);
    }
}

.hero--services,
.hero--packages,
.hero--about,
.hero--gallery,
.hero--contact {
    padding: 4rem 0 3rem;
}

.hero--services h1,
.hero--packages jyn umh,
.hero--about h1,
.hero--gallery h1,
.hero--contact h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.card {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(17, 24, 39, 0.05);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.card--light {
    background: white;
}

.card--gradient {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.92), rgba(156, 93, 232, 0.85));
    color: white;
}

.card--featured {
    transform: scale(1.15);
    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.25),
        0 20px 50px rgba(15, 23, 42, 0.2),
        0 40px 80px rgba(15, 23, 42, 0.15),
        0 60px 120px rgba(15, 23, 42, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    z-index: 2;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.section {
    padding: 5rem 0;
}

/* Pachete section with diagonal background lines */
#pachete {
    position: relative;
    overflow: hidden;
}

/* Diagonal background lines for pachete section */
#pachete::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, transparent 49%, rgba(156, 93, 232, 0.03) 50%, rgba(156, 93, 232, 0.03) 50.5%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(156, 93, 232, 0.03) 50%, rgba(156, 93, 232, 0.03) 50.5%, transparent 51%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

#pachete::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-image:
        linear-gradient(45deg, transparent 49%, rgba(156, 93, 232, 0.02) 50%, rgba(156, 93, 232, 0.02) 50.5%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(156, 93, 232, 0.02) 50%, rgba(156, 93, 232, 0.02) 50.5%, transparent 51%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content appears above background lines */
#pachete .container {
    position: relative;
    z-index: 1;
}

#pachete .about__content,
#pachete .service-buttons,
#pachete .service-packages,
#pachete .additional-services {
    position: relative;
    z-index: 1;
}

#pachete .about__content h2 {
    color: var(--dark);
}

#pachete .about__content p {
    color: rgba(26, 39, 56, 0.82);
}

#pachete .feature__icon {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.88), rgba(156, 93, 232, 0.82));
}

.section--alt .about__content h2 {
    color: var(--dark);
}

.section--alt .about__content p {
    color: rgba(26, 39, 56, 0.82);
}

#despre {
    background: linear-gradient(135deg, #0f1e2b 0%, #1a2738 30%, #2d1b69 60%, #1d8fe1 100%);
    color: white;
}

#despre h2 {
    color: white;
}

#despre p {
    color: rgba(255, 255, 255, 0.9);
}

#despre .section__eyebrow {
    color: #1d8fe1;
}

#despre .stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.2rem 1.6rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.18), rgba(156, 93, 232, 0.14));
    border: 1px solid rgba(29, 143, 225, 0.35);
    box-shadow: 0 18px 40px -25px rgba(8, 17, 45, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(4px);
}

#despre .stat__number {
    color: #1d8fe1;
}

#despre .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

#despre .stat:hover {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.28), rgba(156, 93, 232, 0.22));
    border-color: rgba(29, 143, 225, 0.55);
    box-shadow: 0 26px 50px -20px rgba(8, 17, 45, 0.95);
    transform: translateY(-4px);
}

#despre .about__list li {
    color: rgba(255, 255, 255, 0.9);
}

.section--alt {
    background: var(--light);
}

.section__eyebrow {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.grid--3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.grid--3 .feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature {
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(156, 93, 232, 0.25);
}

/* Diagonal gradient effect - only on boxes 1 and 4 */
.grid--2 .feature--bordered:nth-child(1) {
    background: linear-gradient(150deg, rgba(29, 143, 225, 0.34) 0%, rgba(246, 250, 255, 0.98) 100%);
}

.grid--2 .feature--bordered:nth-child(2) {
    background: linear-gradient(150deg, rgba(156, 93, 232, 0.32) 0%, rgba(248, 243, 255, 0.98) 100%);
}

.grid--2 .feature--bordered:nth-child(3) {
    background: linear-gradient(150deg, rgba(46, 133, 222, 0.28) 0%, rgba(156, 93, 232, 0.24) 48%, rgba(245, 249, 255, 0.98) 100%);
}

.grid--2 .feature--bordered:nth-child(4) {
    background: linear-gradient(150deg, rgba(156, 93, 232, 0.28) 0%, rgba(29, 143, 225, 0.22) 52%, rgba(235, 242, 255, 0.98) 100%);
}

.feature--bordered {
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    box-shadow:
        8px 8px 20px rgba(15, 23, 42, 0.12),
        4px 4px 12px rgba(15, 23, 42, 0.08);
}

.feature--bordered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.feature--bordered::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.grid--2 .feature--bordered:nth-child(1):hover {
    background: linear-gradient(150deg, rgba(29, 143, 225, 0.42) 0%, rgba(246, 250, 255, 1) 100%);
}

.grid--2 .feature--bordered:nth-child(2):hover {
    background: linear-gradient(150deg, rgba(156, 93, 232, 0.4) 0%, rgba(248, 243, 255, 1) 100%);
}

.grid--2 .feature--bordered:nth-child(3):hover {
    background: linear-gradient(150deg, rgba(46, 133, 222, 0.36) 0%, rgba(156, 93, 232, 0.3) 48%, rgba(245, 249, 255, 1) 100%);
}

.grid--2 .feature--bordered:nth-child(4):hover {
    background: linear-gradient(150deg, rgba(156, 93, 232, 0.36) 0%, rgba(29, 143, 225, 0.28) 52%, rgba(235, 242, 255, 1) 100%);
}

.feature--bordered:hover {
    transform: translateY(-2px);
    box-shadow:
        12px 12px 30px rgba(15, 23, 42, 0.15),
        6px 6px 18px rgba(15, 23, 42, 0.10);
}

.feature--bordered h3 {
    color: var(--dark);
}

.feature--bordered p {
    color: rgba(26, 39, 56, 0.84);
}

.feature--featured {
    position: relative;
    background:
        linear-gradient(135deg, #1d8fe1 0%, #9c5de8 50%, #8b5cf6 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%),
        radial-gradient(circle at bottom left, rgba(255, 159, 28, 0.1), transparent 60%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
    z-index: 2;
    border-radius: var(--radius);
    padding: 2.5rem;
    overflow: hidden;
}

.feature--featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
    pointer-events: none;
}

.feature--featured::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    right: -30%;
    bottom: -30%;
    background-image:
        radial-gradient(circle 26px at 12px 24px, rgba(255, 255, 255, 0.85), transparent 58%),
        radial-gradient(circle 34px at 160px 110px, rgba(156, 93, 232, 0.5), transparent 65%),
        radial-gradient(circle 22px at 90px 200px, rgba(29, 143, 225, 0.45), transparent 65%),
        radial-gradient(circle 30px at 210px 60px, rgba(255, 159, 28, 0.45), transparent 60%),
        radial-gradient(circle 28px at 40px 300px, rgba(140, 198, 63, 0.42), transparent 60%),
        radial-gradient(circle 24px at 200px 280px, rgba(255, 255, 255, 0.6), transparent 58%);
    background-size: 240px 420px, 220px 360px, 260px 460px, 280px 480px, 240px 400px, 260px 440px;
    background-repeat: repeat;
    background-position: 0 -400px, 150px -520px, 60px -600px, 210px -480px, 20px -560px, 180px -620px;
    filter: blur(12px);
    opacity: 1;
    animation: orbFall 12s linear infinite;
    animation-delay: -4s;
    will-change: background-position;
    z-index: 1;
    pointer-events: none;
}

.feature--featured .feature__icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.feature--featured h3 {
    color: white;
    position: relative;
    z-index: 2;
}

.feature--featured p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.82), rgba(47, 83, 247, 0.55));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.icon_selection_pachet {
    width: auto;
    height: auto;
    min-height: 80px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 3.5rem;
    padding: 0;
}

.icon_selection_pachet--black {
    color: #000000 !important;
}

.mirror__icon {
  font-size: 43px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Homepage packages grid */
.packages-home {
    display: grid;
    gap: 3rem;
}
.packages-home__intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 520px;
}
.packages-home__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.packages-home__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.package-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
    height: 100%;
}
.package-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 159, 28, 0.14);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.package-card h3 {
    font-size: 1.3rem;
    margin: 0;
}
.package-card__lead {
    margin: 0;
    color: var(--text);
}
.package-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.package-card ul li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.95rem;
}
.package-card ul li::before {
    content: '';
    position: absolute;
    left: 0.1rem;
    top: 0.45rem;
    width: 0.65rem;
    height: 0.35rem;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}
.package-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.package-card__price {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.package-card__price--header {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-align: left;
}
.package-card--featured {
    border: 2px solid var(--primary);
    box-shadow: 0 28px 60px rgba(29, 143, 225, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(29, 143, 225, 0.12));
}
.package-card--featured .package-card__tag {
    background: var(--primary);
    color: #ffffff;
}
@media (min-width: 992px) {
    .packages-home {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: start;
    }
    .packages-home__intro {
        position: sticky;
        top: 3rem;
    }
}
@media (max-width: 767px) {
    .packages-home__cta {
        flex-direction: column;
        align-items: stretch;
    }
    .package-card {
        padding: 1.75rem 1.5rem;
    }
}
.package {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(156, 93, 232, 0.03));
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem 1.25rem;
    border: 2px solid rgba(156, 93, 232, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    height: 100%;
    justify-content: flex-start;
    width: 100%;
    min-height: 380px;
    transition: all 0.3s ease;
}

.package:hover {
    border-color: rgba(156, 93, 232, 0.25);
    box-shadow: 0 8px 25px rgba(156, 93, 232, 0.15);
    transform: translateY(-2px);
}

.package__tag {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.15), rgba(255, 159, 28, 0.1));
    color: #7c3aed;
    border: 1px solid rgba(156, 93, 232, 0.2);
}

.package__header {
    margin-bottom: 1.5rem;
}

.package__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.package ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.package ul li {
    position: relative;
    padding-left: 1.5rem;
}

.package ul li::before {
    content: '';
    position: absolute;
    left: 0.05rem;
    top: 0.45rem;
    width: 0.65rem;
    height: 0.35rem;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

.package__duration {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    color: var(--text);
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.package__footer {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
    flex-grow: 1;
    justify-content: flex-end;
    padding-bottom: 0.8rem;
}
.package__footer ul {
    order: 1;
    flex-grow: 1;
    margin: 0 0 1rem;
}

.package__footer .package__price {
    order: 2;
    margin: 0;
}

.package__footer .btn {
    order: 3;
}

.package--featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 159, 28, 0.12));
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    margin: -10px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
    z-index: 2;
    position: relative;
}


.service-packages .grid--3 {
    width: 100%;
    max-width: 1100px;
}

.about {
    display: grid;
    gap: 3.5rem;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

.about-mobile {
    display: none;
}

.about--highlight {
    position: relative;
    background: linear-gradient(135deg, rgba(23, 43, 77, 0.25), rgba(88, 77, 232, 0.2));
    padding: clamp(36px, 5vw, 56px);
    border-radius: 36px;
    overflow: hidden;
}

.about--highlight::before,
.about--highlight::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.about--highlight::before {
    background: rgba(29, 143, 225, 0.3);
    top: -140px;
    right: 20%;
}

.about--highlight::after {
    background: rgba(255, 159, 28, 0.25);
    bottom: -180px;
    left: 15%;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.about__content h2 {
    color: #fff;
    margin-bottom: 1.2rem;
}

.about__content p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.about__stats {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-content: start;
    align-self: start;
}

.about-card {
    position: relative;
    padding: 1.8rem 1.6rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.82), rgba(47, 83, 247, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(5, 11, 37, 0.35);
    display: grid;
    gap: 0.9rem;
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 70px rgba(5, 11, 37, 0.42);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.82), rgba(47, 83, 247, 0.55));
    font-size: 1.4rem;
}

.about-card__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    transition: transform 0.3s ease;
}

.about-card__number.animated {
    transform: scale(1.06);
}

.about-card__label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.95rem;
}

.stat__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat__number.animated {
    transform: scale(1.06);
}


.gallery__item {
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.12), rgba(255, 159, 28, 0.12));
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    font-weight: 600;
}


#galerie {
    background: linear-gradient(135deg, rgba(245, 249, 255, 0.95), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

#galerie::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 55%);
    pointer-events: none;
}

#galerie .container {
    position: relative;
    z-index: 1;
}

#galerie .section__eyebrow {
    color: var(--primary);
}

#galerie h2 {
    color: var(--dark);
}

#galerie .gallery-note {
    color: rgba(255, 255, 255, 0.88);
}

.gallery-highlight {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2.5rem;
}
.gallery-service {
    background: linear-gradient(155deg,
        rgba(245, 249, 255, 0.98) 0%,
        rgba(228, 240, 255, 0.95) 40%,
        rgba(211, 233, 255, 0.92) 65%,
        rgba(156, 93, 232, 0.88) 100%);
    border-radius: var(--radius);
    padding: 2rem 2rem 2.5rem;
    box-shadow:
        0 18px 42px rgba(15, 30, 43, 0.22),
        0 8px 24px rgba(29, 143, 225, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.78);
    display: grid;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.gallery-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.5) 55%,
        rgba(29, 143, 225, 0.26) 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-service > * {
    position: relative;
    z-index: 2;
}

.gallery-service__header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.gallery-service__header h3 {
    font-size: 1.35rem;
    color: var(--dark);
}
.gallery-service__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    align-items: stretch;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) - 6px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

.gallery-photo:hover::after {
    opacity: 1;
}

.gallery-photo--main {
    grid-row: span 2;
}

.gallery-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
}

@media (max-width: 900px) {
    .gallery-service__grid {
        grid-auto-rows: 170px;
    }
}

@media (max-width: 720px) {
    .gallery-highlight {
        gap: 2rem;
    }

    .gallery-service__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
    }

    .gallery-photo--main {
        grid-column: span 2;
        grid-row: auto;
        height: 220px;
    }
}
@media (max-width: 520px) {
    .gallery-highlight {
        gap: 1.75rem;
    }

    .gallery-service {
        padding: 1.5rem 1.25rem 1.75rem;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.85);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
        text-align: left;
    }

    .gallery-service::before {
        display: none;
    }

    .gallery-service__header {
        align-items: flex-start;
        gap: 0.4rem;
    }

    .gallery-service__header h3 {
        font-size: 1.2rem;
    }

    .gallery-service__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 0.75rem;
    }

    .gallery-photo--main {
        grid-column: auto;
        height: auto;
    }

    .gallery-photo {
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    }

    .gallery-photo img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .gallery-photo::after {
        display: none;
    }
}

.cta {
    position: relative;
    background:
        linear-gradient(135deg, #1d8fe1 0%, #9c5de8 50%, #8b5cf6 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%),
        radial-gradient(circle at bottom left, rgba(255, 159, 28, 0.1), transparent 60%);
    color: white;
    padding: 6rem 0;
    overflow: hidden;
}

/* Preserve the animated background elements */
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.08);
    z-index: 1;
    pointer-events: none;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -35%;
    right: -35%;
    bottom: -35%;
    background-image:
        radial-gradient(circle 28px at 40px 40px, rgba(255, 255, 255, 0.8), transparent 58%),
        radial-gradient(circle 36px at 200px 120px, rgba(255, 159, 28, 0.5), transparent 65%),
        radial-gradient(circle 32px at 120px 260px, rgba(156, 93, 232, 0.48), transparent 68%),
        radial-gradient(circle 30px at 260px 80px, rgba(29, 143, 225, 0.48), transparent 65%),
        radial-gradient(circle 26px at 80px 360px, rgba(140, 198, 63, 0.45), transparent 68%),
        radial-gradient(circle 24px at 220px 340px, rgba(255, 255, 255, 0.62), transparent 55%);
    background-size: 300px 520px, 260px 480px, 320px 560px, 280px 500px, 260px 520px, 300px 560px;
    background-repeat: repeat;
    background-position: 0 -400px, 150px -520px, 60px -600px, 210px -480px, 20px -560px, 180px -620px;
    filter: blur(16px);
    opacity: 0.95;
    animation: orbFall 18s linear infinite;
    animation-delay: -6s;
    will-change: background-position;
    z-index: 2;
    pointer-events: none;
}

@keyframes orbFall {
    0% {
        background-position:
            0 -400px,
            150px -520px,
            60px -600px,
            210px -480px,
            20px -560px,
            180px -620px;
    }
    100% {
        background-position:
            0 20px,
            150px -160px,
            60px -140px,
            210px 0px,
            20px -160px,
            180px -180px;
    }
}

@keyframes footerGlow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(20px, -18px, 0) scale(1.05);
    }
    100% {
        transform: translate3d(-16px, 14px, 0) scale(1.02);
    }
}

.cta__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.cta__badge-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta__content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.15;
}

.cta__description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 480px;
}

.cta__features {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.cta__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__feature:last-child {
    border-bottom: none;
}

.cta__feature-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.cta__feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.cta__feature span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta__action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta__card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: calc(var(--radius) + 6px);
    padding: 2.5rem;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    text-align: center;
    max-width: 360px;
    position: relative;
    overflow: hidden;
}

.cta__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at top right, rgba(29, 143, 225, 0.08), transparent 60%),
        radial-gradient(circle at bottom left, rgba(156, 93, 232, 0.08), transparent 60%);
    pointer-events: none;
}

.cta__card-header {
    margin-bottom: 2rem;
}

.cta__card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta__card p {
    color: rgba(15, 30, 43, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.btn--cta {
    padding: 0.85rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.2px;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 30, 43, 0.18);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    margin: 0 auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 30, 43, 0.22);
}

.cta__benefits {
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.cta__benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(15, 30, 43, 0.8);
}

.cta__benefit-check {
    width: 16px;
    height: 16px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.cta__visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta__floating-element--1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.cta__floating-element--2 {
    bottom: 30%;
    left: 10%;
    animation-delay: -2s;
}

.cta__floating-element--3 {
    top: 60%;
    right: 40%;
    animation-delay: -4s;
}

.cta__orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(1px);
}

.cta__orb--purple {
    background: radial-gradient(circle, rgba(156, 93, 232, 0.8), transparent 70%);
    animation: ctaPulse 4s ease-in-out infinite;
}

.cta__orb--blue {
    background: radial-gradient(circle, rgba(29, 143, 225, 0.8), transparent 70%);
    animation: ctaPulse 4s ease-in-out infinite;
    animation-delay: -1s;
}

.cta__orb--accent {
    background: radial-gradient(circle, rgba(255, 159, 28, 0.8), transparent 70%);
    animation: ctaPulse 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(15px, -20px, 0) scale(1.05);
    }
    66% {
        transform: translate3d(-10px, 15px, 0) scale(0.95);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.contact__info ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin: 1.5rem 0;
}

.contact__socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact__socials a {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(29, 143, 225, 0.35);
    color: var(--primary);
    transition: var(--transition);
}

.contact__socials a:hover {
    background: var(--primary);
    color: white;
}

.contact__form {
    display: grid;
    gap: 0.8rem;
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 55px -25px rgba(15, 23, 42, 0.55);
}

.contact__form--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.15), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.contact__form--cta .contact__cta-text {
    font-size: 1rem;
    color: #1f2937;
    max-width: 28rem;
}

.contact__cta-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 999px;
}

.contact__cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.contact__cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    width: 100%;
    max-width: 26rem;
}

.contact__cta-benefits li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 500;
    text-align: left;
}

.contact__cta-benefits li::before {
    content: '';
    width: 0.7rem;
    height: 0.35rem;
    border-left: 2px solid #1d4ed8;
    border-bottom: 2px solid #1d4ed8;
    transform: rotate(-45deg);
    margin-right: 0.4rem;
}

.contact__cta-button {
    margin-top: 0.5rem;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 143, 225, 0.18);
}

.section--contact-cta {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #2f1d79 0%, #0a0f2d 45%, #040c24 100%);
    overflow: hidden;
}

.section--contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(40% 35% at 15% 10%, rgba(156, 93, 232, 0.25), transparent),
                radial-gradient(50% 45% at 85% 25%, rgba(29, 143, 225, 0.25), transparent),
                radial-gradient(60% 50% at 50% 90%, rgba(14, 197, 224, 0.18), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.section--contact-cta .container {
    position: relative;
    z-index: 1;
}

.contact--cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.contact__info--cta h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
}

.contact__info--cta p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.contact__info--cta .section__eyebrow {
    color: #5fb4ff;
    letter-spacing: 0.32em;
}

.contact__details {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.4rem;
    display: grid;
    gap: 0.75rem;
}

.contact__details li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.contact__details strong {
    color: #fff;
    font-weight: 600;
    margin-right: 0.25rem;
}

.contact__details a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact__details a:hover {
    color: #5fb4ff;
    border-color: rgba(95, 180, 255, 0.6);
}

.contact__socials--cta {
    gap: 1.1rem;
}

.contact__social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    background: rgba(5, 13, 38, 0.55);
    border: 1px solid rgba(95, 180, 255, 0.35);
    color: #5fb4ff;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact__social-pill:hover {
    transform: translateY(-2px);
    background: rgba(5, 78, 160, 0.35);
    border-color: rgba(95, 180, 255, 0.7);
    box-shadow: 0 12px 25px -10px rgba(95, 180, 255, 0.5);
    color: #fff;
}

.contact__card {
    align-self: stretch;
    background: rgba(10, 16, 40, 0.85);
    border-radius: 28px;
    border: 1px solid rgba(95, 180, 255, 0.25);
    padding: 2.6rem 2.4rem;
    box-shadow: 0 35px 80px -40px rgba(8, 16, 45, 0.85);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    overflow: hidden;
}

.contact__card::before {
    content: "";
    position: absolute;
    inset: -40% -30% 40% 40%;
    background: radial-gradient(circle at top right, rgba(95, 180, 255, 0.35), transparent 60%);
    pointer-events: none;
}

.contact__card-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(95, 180, 255, 0.75);
}

.contact__card h3 {
    font-size: 1.85rem;
    color: #fff;
    margin: 0;
}

.contact__card p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.contact__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.contact__card-list li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact__card-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5fb4ff, #9c5de8);
    box-shadow: 0 0 12px rgba(95, 180, 255, 0.7);
}

.contact__card-btn {
    align-self: flex-start;
    padding: 0.9rem 2.2rem;
    border-radius: 18px;
    font-size: 1rem;
    box-shadow: 0 18px 45px -20px rgba(95, 180, 255, 0.8);
}

.contact__card-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: auto;
}

@media (max-width: 768px) {
    .section--contact-cta {
        padding: 4rem 0;
    }

    .contact--cta {
        gap: 2.5rem;
    }

    .contact__card {
        padding: 2.2rem 2rem;
    }
}

.form__note {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

.footer {
    position: relative;
    background: linear-gradient(140deg, #0a1324 0%, #080f1e 55%, #050910 100%);
    color: #e2e8f0;
    padding: 4.75rem 0 2.75rem;
    overflow: hidden;
}

.footer__backdrop {
    position: absolute;
    inset: -40% -30% -20%;
    z-index: 0;
    pointer-events: none;
}

.footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.65;
    mix-blend-mode: screen;
    animation: footerGlow 18s ease-in-out infinite alternate;
}

.footer__glow--one {
    width: 460px;
    height: 460px;
    top: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(29, 143, 225, 0.55), transparent 70%);
}

.footer__glow--two {
    width: 520px;
    height: 520px;
    bottom: -30%;
    right: -12%;
    background: radial-gradient(circle, rgba(156, 93, 232, 0.5), transparent 72%);
    animation-delay: -4s;
}

.footer__glow--three {
    width: 360px;
    height: 360px;
    top: 22%;
    right: 22%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.45), transparent 70%);
    animation-delay: -2s;
}

.footer__texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(circle at 80% 88%, rgba(140, 198, 63, 0.12), transparent 65%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.04) 20%, transparent 55%);
    opacity: 0.35;
    mix-blend-mode: screen;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 3rem;
    align-items: flex-start;
}

.footer__nav,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 320px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.footer__logo img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    object-fit: cover;
}

.footer__logo-name {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(120deg, #ffffff, rgba(148, 197, 255, 0.95));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__logo-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.78);
    margin-top: 0.2rem;
}

.footer__tagline {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.65);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
}

.footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer__social {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.55);
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer__social:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.footer__title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(203, 213, 225, 0.92);
    margin-bottom: 1.2rem;
}

.footer__links,
.footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.footer__links a {
    color: rgba(226, 232, 240, 0.88);
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer__links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer__contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.92rem;
    color: rgba(203, 213, 225, 0.85);
}

.footer__contact-label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: rgba(148, 163, 184, 0.9);
}

.footer__contact-list a {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer__contact-list a:hover {
    color: var(--accent);
}

.footer__contact-note {
    margin-top: 0.75rem;
    color: rgba(148, 163, 184, 0.82);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer__cta {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.18), rgba(156, 93, 232, 0.12));
    border: 1px solid rgba(148, 197, 255, 0.26);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.35);
    max-width: 320px;
}

.footer__cta p {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__cta .btn {
    align-self: flex-start;
    box-shadow: 0 14px 35px rgba(29, 143, 225, 0.35);
}

.footer__cta .btn:hover {
    transform: translateY(-3px);
}

.footer__bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
}

.footer__bottom a {
    color: rgba(226, 232, 240, 0.88);
}

.footer__bottom a:hover {
    color: #ffffff;
}

.footer__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: rgba(203, 213, 225, 0.85);
}

.footer__meta-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(148, 197, 255, 0.85);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery__overlay p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-showcase {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.showcase-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
}

.showcase-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact__details h3,
.contact__faq h3 {
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.checkbox-group {
    display: grid;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.package__description {
    color: var(--text);
    margin-bottom: 1rem;
}

.feature__benefits {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.feature__benefits li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature__benefits li::before {
    content: '';
    position: absolute;
    left: 0.1rem;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.35rem;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
    font-size: 1.2em;
}

/* ========================================
   SERVICII.HTML STYLES - MOVED TO CSS FILE
   ======================================== */

/* Service Buttons Section */
.service-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

/* Combined Packages Container - Stays visible when packages open */
.combined-packages-container {
    position: relative;
    z-index: 5;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-selector-mobile {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.mobile-service-card,
.mobile-special-card {
    border-radius: 20px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(233, 245, 255, 0.85));
    border: 1px solid rgba(148, 197, 255, 0.35);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    position: relative;
    overflow: visible;
}

.mobile-service-card::after {
    content: '';
    position: absolute;
    inset: -40% auto auto -20%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(29, 143, 225, 0.25), transparent 65%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.mobile-service-card > * {
    position: relative;
    z-index: 1;
}

.mobile-service-card__label {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.mobile-service-card__select {
    position: relative;
    margin-top: 0.85rem;
}

.mobile-service-select {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.mobile-service-select__trigger {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(29, 143, 225, 0.55);
    padding: 14px 52px 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(214, 236, 255, 0.92));
    box-shadow:
        inset 0 1px 2px rgba(15, 30, 43, 0.08),
        0 10px 22px rgba(15, 23, 42, 0.12);
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-service-select__label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

.mobile-service-select__label-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: rgba(29, 143, 225, 0.12);
    box-shadow: inset 0 0 12px rgba(29, 143, 225, 0.15);
}

.mobile-service-select__label-text {
    font-size: 1rem;
}

.mobile-service-select__trigger:hover {
    border-color: rgba(29, 143, 225, 0.75);
}

.mobile-service-select__trigger:focus-visible {
    border-color: var(--primary);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.6),
        0 0 0 3px rgba(29, 143, 225, 0.25),
        0 12px 26px rgba(15, 23, 42, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(233, 245, 255, 0.95));
}

.mobile-service-select__chevron {
    background: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
    position: relative;
}

.mobile-service-select__chevron::before {
    content: '';
    width: 8px;
    height: 8px;
    border: solid rgba(15, 23, 42, 0.75);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
}

.mobile-service-select.is-open .mobile-service-select__chevron::before {
    transform: rotate(-135deg);
}

.mobile-service-select__options {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 247, 255, 0.95));
    border-radius: 18px;
    border: 1px solid transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        max-height 0.35s ease,
        margin-top 0.25s ease,
        padding 0.25s ease,
        box-shadow 0.25s ease;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}

.mobile-service-select.is-open .mobile-service-select__options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 10px;
    margin-top: 12px;
    max-height: 600px;
    border-color: rgba(148, 197, 255, 0.45);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.2);
}

.mobile-service-select__option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(214, 236, 255, 0.7));
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.mobile-service-select__option:hover,
.mobile-service-select__option:focus-visible {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(214, 236, 255, 0.85));
    border-color: rgba(29, 143, 225, 0.4);
    outline: none;
    transform: translateY(-1px);
}

.mobile-service-select__option.is-active {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.15), rgba(156, 93, 232, 0.25));
    border-color: rgba(29, 143, 225, 0.45);
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(29, 143, 225, 0.15);
}

.mobile-service-select__option.is-active .mobile-service-select__option-icon {
    background: rgba(29, 143, 225, 0.25);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.2);
}

.mobile-service-select__option-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(29, 143, 225, 0.14);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mobile-service-select__option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-service-select__option-text strong {
    font-size: 1rem;
    line-height: 1.1;
    color: #0f172a;
}

.mobile-service-select__option-text small {
    font-size: 0.82rem;
    color: rgba(15, 23, 42, 0.7);
}

.mobile-service-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    border: 0;
    padding: 0;
}

.mobile-special-card {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.12), rgba(156, 93, 232, 0.22));
    color: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-special-card__badge {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #fff;
    background: rgba(15, 23, 42, 0.45);
    padding: 6px 12px;
    border-radius: 999px;
    align-self: flex-start;
}

.mobile-special-card p {
    margin: 0;
    color: rgba(15, 23, 42, 0.85);
    line-height: 1.5;
}

.mobile-special-card__action {
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(29, 143, 225, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-special-card__action:active {
    transform: translateY(2px);
    box-shadow: 0 6px 12px rgba(29, 143, 225, 0.25);
}

.service-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 249, 255, 0.95), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(29, 143, 225, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.12);
}

.service-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.service-btn--featured {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.08), rgba(255, 255, 255, 0.95));
    border: none;
    box-shadow: 0 6px 20px rgba(29, 143, 225, 0.18);
}

.service-btn--featured:hover {
    box-shadow: 0 8px 25px rgba(29, 143, 225, 0.25);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.12), rgba(255, 255, 255, 0.98));
}

.service-btn--gradient {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.08), rgba(255, 255, 255, 0.95));
    border: none;
    box-shadow: 0 6px 20px rgba(29, 143, 225, 0.18);
}

.service-btn--gradient:hover {
    box-shadow: 0 8px 25px rgba(29, 143, 225, 0.25);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.12), rgba(255, 255, 255, 0.98));
}

.service-btn--gradient.active {
    background: linear-gradient(135deg, rgba(11, 111, 168, 0.9), rgba(29, 143, 225, 0.7), rgba(239, 246, 255, 0.3));
    color: white;
    border: 2px solid rgba(11, 111, 168, 0.8);
    box-shadow: 0 8px 25px rgba(11, 111, 168, 0.4);
    transform: translateY(-2px);
}

.service-btn--gradient.active h3 {
    color: white;
}

.service-btn--featured.active {
    background: linear-gradient(135deg, rgba(11, 111, 168, 0.9), rgba(29, 143, 225, 0.7), rgba(239, 246, 255, 0.3));
    color: white;
    border: 2px solid rgba(11, 111, 168, 0.8);
    box-shadow: 0 8px 25px rgba(11, 111, 168, 0.4);
    transform: translateY(-2px);
}

.service-btn--featured.active h3 {
    color: white;
}

.service-btn__icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.service-btn__icon svg {
    width: 50px;
    height: 50px;
}

.service-btn h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.service-btn__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.75rem;
}

/* Service Packages Section */
.service-packages {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.05), rgba(255, 255, 255, 0.98));
    border-radius: 12px;
    border: 2px solid rgba(156, 93, 232, 0.15);
    display: flex;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(156, 93, 232, 0.08);
}

.service-packages h3 {
    color: #333;
    margin-bottom: 2rem;
}

.service-packages,
.service-packages .grid,
.service-packages .grid > *,
.service-packages .package,
.service-packages .package-card,
.additional-service {
    scroll-margin-top: calc(var(--topbar-height, 84px) + 162px);
}

/* Feature Icons */
.feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

/* Base circular icon styling */
.feature__icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.3);
    position: relative;
}

/* Camera Icon Specific Styling */
.feature__icon-camera {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 360 Degree Icon Specific Styling */
.feature__icon-360 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* Mirror Icon Specific Styling */
.feature__icon-mirror {
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Cards */
.feature--gradient {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(29, 143, 225, 0.15);
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}

.feature--gradient:hover {
    box-shadow: 0 6px 20px rgba(29, 143, 225, 0.18);
    transform: translateY(-2px);
}

.feature--gradient h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature__benefits {
    margin-top: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature__benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

/* Main Services Section */
.main-services {
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.15), rgba(135, 206, 235, 0.4), rgba(255, 255, 255, 0.95));
    padding: 3rem 0;
    margin: 0;
    box-shadow: 0 8px 25px rgba(29, 143, 225, 0.15);
}

/* Additional Services Section */
/* Additional Services Section - Consolidated */
.additional-services {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.15), rgba(186, 123, 235, 0.12), rgba(255, 255, 255, 0.95));
    position: relative;
    box-shadow: 0 8px 25px rgba(156, 93, 232, 0.15);
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(156, 93, 232, 0.15) 0%,
        rgba(186, 123, 235, 0.12) 25%,
        rgba(216, 153, 238, 0.10) 50%,
        rgba(245, 183, 241, 0.08) 75%,
        rgba(255, 213, 244, 0.06) 100%);
    pointer-events: none;
    z-index: 0;
}

.additional-services__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.additional-services__title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.additional-services__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.additional-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.extra-services-selector {
    max-width: 520px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    display: none;
}

.extra-service-select {
    width: 100%;
}

.extra-service-display {
    position: relative;
    z-index: 1;
}

.extra-service-display.has-dropdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.extra-service-placeholder {
    display: none;
    border-radius: 18px;
    border: 1px dashed rgba(29, 143, 225, 0.35);
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    text-align: center;
    color: rgba(15, 23, 42, 0.7);
    font-weight: 500;
    line-height: 1.5;
}

@keyframes extraCardFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.extra-service-placeholder--top {
    display: none;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .extra-services-selector {
        display: block;
    }

    .extra-service-display.has-dropdown {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 520px;
        margin: 0 auto;
    }

    .extra-service-display.has-dropdown .extra-service-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 120px;
    }
    .extra-service-placeholder--top {
        display: block;
    }

    .extra-service-display.has-dropdown .additional-service {
        display: none;
    }

    .extra-service-display.has-dropdown .additional-service.is-active {
        display: block;
        animation: extraCardFade 0.25s ease;
    }
}

@media (max-width: 768px) {
    .dragon-banner,
    .carousel-section {
        display: none;
    }

    .hero__tag {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero {
        padding: 5.5rem 0 3.5rem;
    }

    .hero--home {
        padding: 7.5rem 0 4.5rem;
        min-height: auto;
    }

    .hero__inner {
        gap: 2.2rem;
        text-align: center;
        align-items: center;
    }

    .hero__inner--home {
        gap: 3rem;
    }

    .hero__content p {
        margin: 1.5rem auto 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__checklist {
        margin: 0 auto 2rem;
        text-align: left;
    }

    .hero__metrics {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        text-align: center;
    }

    .hero__visual {
        margin: 0 auto;
        max-width: 360px;
        min-height: 420px;
    }

    .hero__photo--main {
        right: 0;
    }

    .hero__photo--secondary {
        left: -10px;
        bottom: 14%;
    }

    .hero__photo--tertiary {
        right: 10px;
        bottom: -15px;
    }

    .hero__floating-card {
        animation: none;
    }

    .hero__floating-card--top {
        top: -15px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .hero__floating-card--bottom {
        bottom: -25px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .nav {
        display: none;
    }

    .topbar__inner {
        justify-content: space-between;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.75rem;
    }

    .footer__brand,
    .footer__nav,
    .footer__contact,
    .footer__cta {
        padding: 1.4rem 1.25rem 1.6rem;
        border-radius: 20px;
        background: rgba(6, 16, 32, 0.78);
        border: 1px solid rgba(148, 197, 255, 0.18);
        box-shadow: 0 18px 44px rgba(4, 10, 22, 0.45);
    }

    .footer__brand {
        order: 1;
        align-items: center;
        text-align: center;
        gap: 1rem;
        max-width: none;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__tagline {
        margin: 0 auto;
    }

    .footer__badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .footer__socials {
        justify-content: center;
        gap: 1rem;
    }

    .footer__cta {
        order: 5;
        max-width: none;
        text-align: center;
        align-items: center;
        gap: 1rem;
        background: linear-gradient(135deg, rgba(29, 143, 225, 0.24), rgba(156, 93, 232, 0.18));
        border: 1px solid rgba(148, 197, 255, 0.26);
    }

    .footer__cta p {
        text-align: center;
    }

    .footer__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .footer__nav {
        order: 3;
    }

    .footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: center;
        gap: 0.9rem;
    }

    .footer__links a {
        display: inline-flex;
        justify-content: center;
    }

    .footer__contact {
        order: 4;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .footer__contact-list {
        gap: 1rem;
    }

    .footer__contact-list li {
        align-items: center;
    }

    .footer__contact-note {
        margin: 0 auto;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .footer__meta {
        justify-content: center;
        gap: 0.65rem;
    }

    .hero--services,
    .hero--packages,
    .hero--about,
    .hero--gallery,
    .hero--contact {
        padding: 3rem 0 2rem;
    }

    /* CTA Section Responsive */
    .cta__inner {
        gap: 2rem;
        padding: 0 1rem;
        align-items: center;
        text-align: center;
    }

    .cta__visual {
        flex: none;
    }

    .cta__icon {
        margin: 0 auto;
    }
}


.additional-service {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(29, 143, 225, 0.05));
    border: 1px solid rgba(29, 143, 225, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.08);
}

.additional-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 143, 225, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(29, 143, 225, 0.08));
}

.additional-service__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.3);
}

.additional-service h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.additional-service p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.additional-service__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.additional-service .btn {
    width: 100%;
    justify-content: center;
}

/* ========================================
    CUSTOM BUTTON STYLES FOR SERVICII.HTML
    ======================================== */

/* AI Integration Booth Button - Top Button */
.ai-integration-btn {
    min-width: 437px !important;
    width: 437px;
    max-width: 437px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.12), rgba(255, 159, 28, 0.08), rgba(255, 255, 255, 0.95)) !important;
    border: 2px solid rgba(156, 93, 232, 0.25) !important;
    box-shadow: 0 6px 25px rgba(156, 93, 232, 0.2) !important;
}

.ai-integration-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ai-integration-btn .service-btn__icon {
    font-size: 2.8rem;
    min-height: 65px;
}

.ai-integration-btn h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.ai-integration-btn.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(156, 93, 232, 0.7), rgba(239, 246, 255, 0.3)) !important;
    color: white !important;
    border: 2px solid rgba(124, 58, 237, 0.8) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4) !important;
    transform: translateY(-2px) !important;
}

.ai-integration-btn.active h3 {
    color: white;
}

/* Combined Packages Button - Standalone with Purple Effect */
.combined-packages-btn {
    min-width: 437px !important;
    width: 437px;
    max-width: 437px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.12), rgba(255, 159, 28, 0.08), rgba(255, 255, 255, 0.95)) !important;
    border: 2px solid rgba(156, 93, 232, 0.25) !important;
    box-shadow: 0 6px 25px rgba(156, 93, 232, 0.2) !important;
}

.combined-packages-btn:hover {
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.18), rgba(255, 159, 28, 0.12), rgba(255, 255, 255, 0.98)) !important;
    border-color: rgba(156, 93, 232, 0.35) !important;
    box-shadow: 0 8px 30px rgba(156, 93, 232, 0.3) !important;
    transform: translateY(-3px);
}

.combined-packages-btn .service-btn__icon {
    font-size: 2.8rem;
    min-height: 65px;
}

.combined-packages-btn h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.combined-packages-btn.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(156, 93, 232, 0.7), rgba(239, 246, 255, 0.3)) !important;
    color: white !important;
    border: 2px solid rgba(124, 58, 237, 0.8) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4) !important;
    transform: translateY(-2px) !important;
}

.combined-packages-btn.active h3 {
    color: white;
}

/* ========================================
    END OF SERVICII.HTML STYLES
    ======================================== */

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    .topbar__mobile-actions {
        display: flex;
        margin-left: auto;
    }

    .topbar__offer {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .topbar__inner {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .topbar__menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        background: linear-gradient(135deg, rgba(6, 12, 24, 0.98), rgba(14, 26, 46, 0.96));
        color: rgba(248, 250, 252, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 24px 48px rgba(4, 12, 26, 0.6);
        padding: 1.25rem 1.25rem 1.75rem;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .topbar--menu-open .topbar__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid rgba(248, 250, 252, 0.18);
        background: rgba(248, 250, 252, 0.08);
        font-weight: 600;
    }

    .nav a.nav-active {
        background: linear-gradient(135deg, rgba(29, 143, 225, 0.28), rgba(156, 93, 232, 0.22));
        border-color: rgba(248, 250, 252, 0.35);
    }

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

    .topbar__cta {
        width: 100%;
        justify-content: center;
    }

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

    .grid--2 .feature {
        text-align: center;
    }

    .services-section {
        margin-top: 4rem !important;
    }

    .services-header {
        padding-inline: 1rem;
    }

    .service-selector {
        display: none;
    }

    .service-selector-mobile {
        display: flex;
    }

    .service-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .service-btn {
        min-height: 0;
        padding: 1.25rem 1rem;
    }

    .ai-integration-btn,
    .combined-packages-btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .hero--services,
    .hero--packages,
    .hero--about,
    .hero--gallery,
    .hero--contact {
        padding: 3rem 0 2rem;
    }

    /* CTA Section Responsive */
    .cta {
        padding: 3rem 0;
    }

    .cta__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .cta__content {
        align-items: center;
        text-align: center;
    }

    .cta__features {
        align-self: center;
        max-width: 300px;
    }

    .cta__card {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .cta__visual {
        height: 200px;
        position: relative;
    }

    .cta__floating-element--1 {
        top: 10%;
        right: 15%;
    }

    .cta__floating-element--2 {
        bottom: 20%;
        left: 15%;
    }

    .cta__floating-element--3 {
        top: 50%;
        right: 35%;
    }

    .cta__orb {
        width: 60px;
        height: 60px;
    }

    .cta__content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta__description {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .cta__feature span {
        font-size: 0.9rem;
    }

    .btn--cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
    }

    .cta__benefit {
        font-size: 0.85rem;
    }


.gallery__item {
    background: linear-gradient(135deg, rgba(156, 93, 232, 0.12), rgba(255, 159, 28, 0.12));
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    font-weight: 600;
}

    .about {
        grid-template-columns: 1fr;
    }

    .about--desktop {
        display: none;
    }

    .about-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-mobile__card {
        position: relative;
        padding: 1.85rem 1.6rem 2rem;
        border-radius: 28px;
        background: linear-gradient(140deg, rgba(8, 16, 35, 0.95), rgba(33, 66, 160, 0.9));
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 28px 55px rgba(4, 10, 24, 0.45);
        color: #f8fafe;
        overflow: hidden;
    }

    .about-mobile__card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(255, 159, 28, 0.25), transparent 55%);
        opacity: 0.7;
        pointer-events: none;
    }

    .about-mobile__card > * {
        position: relative;
        z-index: 1;
    }

    .about-mobile__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 0.9rem;
    }

    .about-mobile__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .about-mobile__tag {
        padding: 0.35rem 0.9rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .about-mobile__card h2 {
        font-size: clamp(1.55rem, 7vw, 1.85rem);
        margin-bottom: 0.75rem;
    }

    .about-mobile__card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .about-mobile__card p {
        color: rgba(255, 255, 255, 0.85);
    }

    .about-mobile__story p + p {
        margin-top: 0.35rem;
    }

    .about-mobile__list {
        list-style: none;
        margin-top: 1.35rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-mobile__list li {
        position: relative;
        padding-left: 1.6rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    .about-mobile__list li::before {
        content: "";
        position: absolute;
        top: 0.55rem;
        left: 0;
        width: 0.75rem;
        height: 0.75rem;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(29, 143, 225, 0.9), rgba(156, 93, 232, 0.9));
        box-shadow: 0 0 12px rgba(29, 143, 225, 0.6);
    }

    .about-mobile__stats-card {
        background: linear-gradient(135deg, rgba(11, 25, 54, 0.97), rgba(17, 92, 201, 0.92));
    }

    .about-mobile__stat-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
        margin-top: 1rem;
    }

    .about-mobile__stat {
        padding: 1rem;
        border-radius: 20px;
        background: rgba(5, 12, 28, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.04);
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        align-items: center;
        text-align: center;
    }

    .about-mobile__stat-number {
        font-size: 1.75rem;
        color: #fff;
    }

    .about-mobile__stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.75);
    }

    .about-mobile__rating {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
    }

    .about-mobile__star {
        font-size: 1.35rem;
        color: #ffcf5c;
    }

    .about-mobile__footnote {
        margin-top: 1.25rem;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .gallery-showcase {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Carousel responsive styles */
    .carousel-section {
        padding: 3rem 0;
    }

    .slide {
        height: 400px;
    }

    .slide .item {
        height: 350px;
    }

    .button {
        bottom: -50px;
    }

}

/* ========================================
   CAROUSEL STYLES - NEW DESIGN
   ======================================== */

.carousel-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(245, 249, 255, 0.8), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at top right, rgba(29, 143, 225, 0.08), transparent 60%),
        radial-gradient(circle at bottom left, rgba(156, 93, 232, 0.08), transparent 60%);
    pointer-events: none;
}

.carousel-section .container {
    position: relative;
    z-index: 2;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
    border-radius: 20px;
    overflow: visible;
}

.slide {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: visible;
}

.slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    cursor: pointer;
    overflow: hidden;
}

.slide .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.slide .item:nth-child(3) {
    left: 65%;
    width: 200px;
    height: 300px;
    top: 55%;
}

.slide .item:nth-child(4) {
    left: calc(65% + 220px);
    width: 200px;
    height: 300px;
    top: 60%;
}

.slide .item:nth-child(5) {
    left: calc(65% + 440px);
    width: 200px;
    height: 300px;
    top: 65%;
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6) {
    left: calc(65% + 660px);
    opacity: 0;
    width: 200px;
    height: 300px;
    top: 70%;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: 'Poppins', system-ui;
    display: none;
    z-index: 2;
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: rgba(29, 143, 225, 0.9);
    color: white;
    margin-bottom: 1rem;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    box-shadow: 0 4px 15px rgba(29, 143, 225, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.content button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-size: 1rem;
}

.button button:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 143, 225, 0.3);
}

/* Carousel responsive styles */
@media (max-width: 1024px) {
    .carousel-section .container {
        width: 900px;
        height: 500px;
    }

    .slide {
        height: 500px;
    }

    .slide .item:nth-child(3) {
        left: 70%;
        width: 160px;
        height: 240px;
    }

    .slide .item:nth-child(4) {
        left: calc(70% + 180px);
        width: 140px;
        height: 210px;
    }

    .slide .item:nth-child(5) {
        left: calc(70% + 320px);
        width: 120px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 3rem 0;
    }

    .carousel-section .container {
        width: 95%;
        height: 400px;
    }

    .slide {
        height: 400px;
    }

    .slide .item {
        width: 150px;
        height: 225px;
    }

    .slide .item:nth-child(3) {
        left: 75%;
        width: 120px;
        height: 180px;
        top: 60%;
    }

    .slide .item:nth-child(4) {
        left: calc(75% + 130px);
        width: 100px;
        height: 150px;
        top: 65%;
    }

    .slide .item:nth-child(5) {
        left: calc(75% + 240px);
        width: 80px;
        height: 120px;
        top: 70%;
    }

    .item .content {
        left: 50px;
        width: 250px;
    }

    .content .name {
        font-size: 30px;
    }

    .content .des {
        font-size: 14px;
    }

    .button {
        bottom: -50px;
    }

    .button button {
        width: 35px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Galerie experience */
.gallery-overview {
    position: relative;
    padding: 7rem 0 6rem;
    background: linear-gradient(135deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.7));
    overflow: hidden;
}

.gallery-overview::before,
.gallery-overview::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.gallery-overview::before {
    top: -140px;
    right: -180px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at center, rgba(29, 143, 225, 0.26), transparent 65%);
}

.gallery-overview::after {
    bottom: -120px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at center, rgba(156, 93, 232, 0.22), transparent 65%);
}

.gallery-overview__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.gallery-overview__content h2 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.gallery-overview__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.gallery-overview__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
}

.gallery-overview__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin: 2.75rem 0 2rem;
}

.metric-card {
    padding: 1.5rem;
    background: linear-gradient(140deg, rgba(29, 143, 225, 0.14), rgba(156, 93, 232, 0.12), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(29, 143, 225, 0.18);
    border-radius: calc(var(--radius) - 4px);
    box-shadow: 0 20px 45px -28px rgba(15, 30, 43, 0.6);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.metric-card strong {
    display: block;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.metric-card span {
    font-size: 0.95rem;
    color: rgba(15, 30, 43, 0.72);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: rgba(156, 93, 232, 0.35);
    box-shadow: 0 26px 55px -24px rgba(15, 30, 43, 0.65);
}

.gallery-overview__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.gallery-overview__highlights li {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 500;
}

.gallery-overview__highlights li::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    box-shadow: 0 0 0 6px rgba(29, 143, 225, 0.12);
}

.gallery-mobile-showcase {
    display: none;
    margin-top: 2rem;
    gap: 1.35rem;
}

.gallery-mobile-card {
    position: relative;
    border-radius: 28px;
    padding: 1.35rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.65));
    border: 1px solid rgba(29, 143, 225, 0.12);
    box-shadow: 0 24px 55px -28px rgba(12, 26, 48, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.gallery-mobile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(156, 93, 232, 0.18), transparent 55%);
    pointer-events: none;
}

.gallery-mobile-card > * {
    position: relative;
    z-index: 1;
}

.gallery-mobile-card__image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 35px rgba(15, 30, 43, 0.18);
}

.gallery-mobile-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-mobile-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gallery-mobile-card__badge {
    align-self: flex-start;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(29, 143, 225, 0.12);
    color: var(--primary-dark);
}

.gallery-mobile-card__body h3 {
    font-size: 1.25rem;
    margin: 0;
}

.gallery-mobile-card__body p {
    margin: 0;
    color: rgba(15, 30, 43, 0.8);
}

.gallery-mobile-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gallery-mobile-card__tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(29, 143, 225, 0.08);
    color: var(--primary-dark);
}

.gallery-overview__media {
    position: relative;
    min-height: 440px;
}

.gallery-overview__frame {
    position: absolute;
    width: 240px;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 30, 43, 0.18);
    border: 4px solid rgba(255, 255, 255, 0.85);
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-overview__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overview__frame--one {
    top: 0;
    left: 6%;
    transform: rotate(-5deg);
}

.gallery-overview__frame--two {
    top: 90px;
    right: 2%;
    transform: rotate(7deg);
}

.gallery-overview__frame--three {
    bottom: -30px;
    left: 42%;
    transform: rotate(2deg);
}

.gallery-overview__frame:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(15, 30, 43, 0.22);
}

.gallery-overview__badge {
    position: absolute;
    bottom: 40px;
    right: 10%;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 40px rgba(255, 159, 28, 0.35);
}

.gallery-overview__badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.gallery-spotlight {
       position: relative;
       padding: 6rem 0 8rem;
       background: linear-gradient(135deg, #0f1e2b 0%, #1a2738 30%, #2d1b69 60%, #1d8fe1 100%);
       color: white;
       overflow: hidden;
       margin-top: 200px;
   }

.gallery-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(29, 143, 225, 0.22), transparent 55%), radial-gradient(circle at 85% 80%, rgba(156, 93, 232, 0.28), transparent 40%);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.85;
}

.gallery-spotlight > .container {
    position: relative;
    z-index: 1;
}

.gallery-spotlight__intro {
     text-align: center;
     max-width: 720px;
     margin: 0 auto 3.5rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2rem;
 }

.collapse-trigger {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     padding: 0.85rem 1.8rem;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--primary), var(--accent-purple));
     color: #fff;
     font-weight: 600;
     letter-spacing: 0.04em;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(29, 143, 225, 0.35);
     text-transform: uppercase;
     font-size: 0.9rem;
}

.collapse-trigger:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 35px rgba(29, 143, 225, 0.45);
}

.collapse-trigger:active {
     transform: translateY(0);
}

.gallery-spotlight__intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.2rem;
    color: white;
}

.gallery-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.spotlight-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(29, 143, 225, 0.3);
    background: linear-gradient(135deg, rgba(29, 143, 225, 0.5), rgba(156, 93, 232, 0.3));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.spotlight-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.spotlight-card__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spotlight-card__content h3 {
    font-size: 1.35rem;
}

.spotlight-card__content p {
    color: rgba(255, 255, 255, 0.82);
}

.spotlight-card__content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.spotlight-card__content li {
    position: relative;
    padding-left: 1.4rem;
    font-weight: 500;
}

.spotlight-card__content li::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    opacity: 0.7;
}

.spotlight-card:hover {
      background: linear-gradient(135deg, rgba(29, 143, 225, 0.6), rgba(156, 93, 232, 0.4));
      border-color: rgba(29, 143, 225, 0.5);
      box-shadow: 0 12px 35px rgba(29, 143, 225, 0.2);
      transform: translateY(-2px);
  }

 /* Collapse animation for gallery spotlight cards */
.spotlight-card.collapsing {
     animation: collapseDown 0.8s ease-in-out forwards;
     transform-origin: center top;
 }

@keyframes collapseDown {
     0% {
         transform: translateY(0) scaleY(1) scaleX(1);
         opacity: 1;
         max-height: 1000px;
     }
     50% {
         transform: translateY(20px) scaleY(0.8) scaleX(0.95);
         opacity: 0.7;
         max-height: 1000px;
     }
     100% {
         transform: translateY(60px) scaleY(0.3) scaleX(0.8);
         opacity: 0.3;
         max-height: 0;
         margin-bottom: 0;
         padding-top: 0;
         padding-bottom: 0;
     }
 }


.gallery-mosaic {
    padding: 6rem 0;
    background: #ffffff;
}

.gallery-mosaic__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.gallery-mosaic__header h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.gallery-mosaic__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-mosaic__item {
    position: relative;
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 30, 43, 0.16);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
}

.gallery-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-mosaic__item::before {
    content: attr(data-label);
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 30, 43, 0.75);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-mosaic__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 30, 43, 0.65), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-mosaic__item figcaption {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-mosaic__item:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 75px rgba(15, 30, 43, 0.22);
}

.gallery-mosaic__item:hover img {
    transform: scale(1.05);
}

.gallery-mosaic__item:hover::after {
    opacity: 1;
}

.gallery-mosaic__item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}


@media (max-width: 1100px) {
    .gallery-overview__frame {
        width: 220px;
        height: 300px;
    }

    .gallery-overview__frame--three {
        left: 36%;
    }
}

@media (max-width: 960px) {
    .gallery-overview__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-overview__media {
        min-height: auto;
        display: grid;
        gap: 1.5rem;
    }

    .gallery-overview__frame {
        position: relative;
        width: 100%;
        max-width: 360px;
        height: 320px;
        transform: none;
        margin: 0 auto;
    }

    .gallery-overview__badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0 auto;
    }

}

@media (max-width: 768px) {
    .gallery-overview {
        padding: 5rem 0 4.5rem;
    }

    .gallery-mobile-showcase {
        display: flex;
        flex-direction: column;
    }

    .gallery-overview__media {
        display: none;
    }

    .gallery-spotlight {
        padding: 5rem 0;
    }

    .gallery-mosaic__grid {
        gap: 1.25rem;
    }

    .gallery-mosaic__item::before {
        font-size: 0.65rem;
    }

}

@media (max-width: 560px) {
    .hero--home {
        padding: 6.5rem 0 4rem;
    }

    .hero__content h1 {
        font-size: clamp(2.1rem, 8vw, 2.6rem);
    }

    .hero__metrics {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .hero__visual {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
        background: none;
    }

    .hero__photo-slider {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.5rem 1rem 0.75rem;
        margin: 0 -1rem;
        scroll-padding: 0 1rem;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .hero__photo-slider::-webkit-scrollbar {
        display: none;
    }

    .hero__photo,
    .hero__floating-card {
        position: relative;
        inset: auto;
        margin: 0;
        animation: none;
    }

    .hero__photo {
        flex: 0 0 78%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
        border: 1px solid rgba(226, 232, 240, 0.85);
        aspect-ratio: 3 / 4;
        overflow: hidden;
    }

    .hero__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero__inner--home {
        grid-template-columns: 1fr;
    }

    .hero__photo--main {
        height: auto;
    }

    .hero__photo--secondary,
    .hero__photo--tertiary {
        height: auto;
    }

    .hero__photo--main,
    .hero__photo--secondary,
    .hero__photo--tertiary {
        left: 0 !important;
        right: 0 !important;
    }

    .hero__floating-card--top,
    .hero__floating-card--bottom {
        left: auto !important;
        right: auto !important;
    }

    .hero__floating-card {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        text-align: left;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(226, 232, 240, 0.8);
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
        padding: 1.35rem 1.25rem;
        gap: 0.6rem;
    }

    .hero__floating-card--top,
    .hero__floating-card--bottom {
        position: relative;
        inset: auto !important;
        margin: 0;
        max-width: 100%;
    }

    .hero__floating-card--bottom {
        margin-top: 0;
    }

    .hero__floating-card strong {
        font-size: 1.05rem;
    }

    .hero__floating-card p {
        font-size: 0.92rem;
        color: rgba(15, 23, 42, 0.7);
    }

    .hero__checklist li {
        padding-left: 1.6rem;
    }

    .hero__checklist li::before {
        top: 0.35rem;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .topbar__inner {
        padding: 0.65rem 0;
    }

    .logo__image {
        width: 52px;
        height: 52px;
    }

    .logo__text {
        font-size: 1.05rem;
        letter-spacing: 0.03em;
    }

    .hero__tag {
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .hero__content p {
        font-size: 0.98rem;
    }

    .hero__metrics strong {
        font-size: 1.85rem;
    }

    .hero__metrics span {
        font-size: 0.85rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero__tag {
        flex-wrap: wrap;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero__metrics .hero-metric:last-child {
        display: none;
    }

    .packages-home {
        gap: 2.25rem;
    }

    .packages-home__intro {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .packages-home__intro h2 {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .packages-home__intro p {
        font-size: 0.98rem;
    }

    .packages-home__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .packages-home__grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 1.5rem 1.3rem;
        gap: 1.1rem;
    }

    .package-card ul li {
        padding-left: 1.1rem;
        font-size: 0.92rem;
    }

    .package-card ul li::before {
        top: 0.2rem;
    }

    .package--featured {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .dragon-banner {
        display: none;
    }

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

    .contact__info--cta p {
        margin: 1.5rem auto 2rem;
    }

    .contact__details {
        justify-items: center;
    }

    .contact__socials {
        justify-content: center;
    }

    .contact__card {
        padding: 2rem 1.6rem;
        text-align: center;
        gap: 1.4rem;
    }

    .contact__card-list {
        justify-items: center;
    }

    .contact__card-list li {
        padding-left: 1.2rem;
    }

    .contact__card-list li::before {
        top: 8px;
    }

    .contact__card-btn {
        align-self: stretch;
        text-align: center;
    }

    .carousel-section .container {
        width: 92%;
        max-width: 360px;
        height: auto;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
        overflow: hidden;
    }

    .slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .slide .item {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 200px;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
    }

    .slide .item:nth-child(n + 3) {
        display: none;
    }

    .item .content {
        left: 50%;
        width: 90%;
        max-width: 260px;
        transform: translate(-50%, -50%) !important;
        text-align: center;
    }

    .content .badge {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__brand,
    .footer__nav,
    .footer__contact {
        align-items: center;
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .gallery-spotlight__grid {
        gap: 1.5rem;
    }

    .spotlight-card__media img {
        height: 200px;
    }

    .gallery-mosaic__item figcaption {
        font-size: 0.95rem;
    }
}

/* Services section styles moved from HTML */
.services-section {
    padding: 4rem 0 2rem !important;
    margin-bottom: 0 !important;
    margin-top: 12rem ;
    position: relative;
    z-index: 10;
}

.services-header {
    position: relative;
    z-index: 11;
    color: white !important;
    margin-top: 0;
    
}

.text-blue {
    color: #1d8fe1 !important;
}

/* 3D review carousel */
.dragon-banner {
    width: 100%;
    height: 100vh;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 3;
    background: linear-gradient(135deg, #0f1e2b 0%, #1a2738 30%, #2d1b69 60%, #1d8fe1 100%);
    filter: blur(0);
    opacity: 1;
}

.dragon-banner::before {
    content: '';
    position: absolute;
    width: min(1400px, 90vw);
    top: 10%;
    left: 50%;
    height: 90%;
    transform: translateX(-50%);
    pointer-events: none;
}

.dragon-banner,
.dragon-banner * {
    box-sizing: border-box;
}

.dragon-banner * {
    margin: 0;
    padding: 0;
}

.dragon-banner .hero__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.dragon-banner .dragon-slider {
    position: absolute;
    width: 200px;
    height: 250px;
    top: -150px;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 10;
}

@keyframes autoRun {
    from {
        transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }
    to {
        transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}

.dragon-banner .dragon-slider .dragon-item {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform:
        rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
}

.dragon-banner .dragon-slider .dragon-item .review-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.dragon-banner .dragon-slider .dragon-item.front-card .review-card {
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.05) translateZ(20px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.3);
    animation: frontCardPulse 2s ease-in-out infinite;
}

@keyframes frontCardPulse {
    0%,
    100% {
        transform: scale(1.05) translateZ(20px);
        box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.08) translateZ(25px);
        box-shadow: 0 20px 50px rgba(74, 144, 226, 0.4), 0 8px 20px rgba(0, 0, 0, 0.25);
    }
}

.dragon-banner .dragon-slider .dragon-item .review-card .profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dragon-banner .dragon-slider .dragon-item .review-card .profile-pic span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1em;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dragon-banner .dragon-slider .dragon-item .review-card .stars {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dragon-banner .dragon-slider .dragon-item .review-card .review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
}

.dragon-banner .dragon-slider .dragon-item .review-card .customer {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8em;
    color: #666;
    font-weight: 600;
    margin-top: auto;
}

.dragon-banner .dragon-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.dragon-banner .dragon-content h1 {
    font-family: 'ICA Rubrik', 'Poppins', sans-serif;
    font-size: 12em;
    line-height: 1em;
    color: #4a90e2;
    position: relative;
}

.dragon-banner .dragon-content h1::after {
    position: absolute;
    inset: 0;
    content: attr(data-content);
    z-index: 100;
    -webkit-text-stroke: 2px #f0f8ff;
    color: transparent;
}

.dragon-banner .dragon-content .dragon-author {
    font-family: 'Poppins', sans-serif;
    text-align: right;
    max-width: 200px;
    margin-top: 150px;
    white-space: nowrap;
}

.dragon-banner .dragon-content .current-card-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    z-index: 5;
    transition: all 0.3s ease;
}

.dragon-banner .dragon-content .current-card-indicator .indicator-label {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
}

.dragon-banner .dragon-content .current-card-indicator .indicator-index {
    color: #4a90e2;
    font-size: 1.5em;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dragon-banner .dragon-content .current-card-indicator .indicator-total {
    color: #999;
    font-size: 0.75em;
}

.dragon-banner .dragon-content .dragon-model {
    background-image: url(images/blackcabina.png);
    width: min(1200px, 96vw);
    height: 160vh;
    position: absolute;
    
    top: -92vh;
    left: 50%;
    transform: translateX(-55%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .dragon-banner .dragon-slider {
        width: 160px;
        height: 200px;
        left: calc(50% - 80px);
    }

    .dragon-banner .dragon-slider .dragon-item {
        transform:
            rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(300px);
    }

    .dragon-banner .dragon-slider .dragon-item .review-card {
        padding: 15px;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .profile-pic {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .profile-pic span {
        font-size: 0.9em;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .stars {
        font-size: 1.2em;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .review-text {
        font-size: 0.8em;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .customer {
        font-size: 0.7em;
    }

    .dragon-banner .dragon-content h1 {
        text-align: center;
        width: 100%;
        text-shadow: 0 10px 20px #000;
        font-size: 7em;
    }

    .dragon-banner .dragon-content .dragon-model {
        top: -16vh;
        height: 115vh;
        width: min(960px, 100vw);
    }

    .dragon-banner .dragon-content .dragon-author {
        color: #fff;
        padding: 20px;
        text-shadow: 0 10px 20px #000;
        z-index: 2;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }

    .dragon-banner .dragon-content .current-card-indicator {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.9em;
    }

    .dragon-banner .dragon-content .current-card-indicator .indicator-index {
        font-size: 1.3em;
    }
}

@media (max-width: 767px) {
    .dragon-banner {
        height: auto;
        padding: 6rem 0 4rem;
    }

    .dragon-banner .dragon-slider {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 auto 2.5rem;
        padding: 0 0 0.5rem;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        animation: none;
        transform: none;
    }

    .dragon-banner .dragon-slider::-webkit-scrollbar {
        display: none;
    }

    .dragon-banner .dragon-slider .dragon-item {
        position: relative;
        flex: 0 0 260px;
        transform: none !important;
        scroll-snap-align: center;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card {
        padding: 1.2rem;
        min-height: 220px;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .profile-pic {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .profile-pic span {
        font-size: 0.9em;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .stars {
        font-size: 1.1em;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .review-text {
        font-size: 0.85em;
        line-height: 1.4;
    }

    .dragon-banner .dragon-slider .dragon-item .review-card .customer {
        font-size: 0.75em;
    }

    .dragon-banner .dragon-content {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        padding-bottom: 0;
        flex-direction: column;
        gap: 2rem;
    }

    .dragon-banner .dragon-content h1 {
        font-size: 5em;
    }

    .dragon-banner .dragon-content .dragon-model {
        top: -10vh;
        height: 100vh;
        width: min(680px, 100vw);
    }

    .dragon-banner .dragon-content .current-card-indicator {
        position: relative;
        top: auto;
        right: auto;
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .dragon-banner .dragon-content .current-card-indicator .indicator-index {
        font-size: 1.1em;
    }
}

/* Services slider cards */
.suc-wrapper {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.suc-container {
    height: 480px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: visible;
    position: relative;
}

.suc-container > input {
    display: none;
}

.suc-card {
    width: 96px;
    border-radius: 2rem;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: 0.6s cubic-bezier(.28, -0.03, 0, .99);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.8);
    position: relative;
}

.suc-card > .suc-row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
}

.suc-card > .suc-row > .suc-icon {
    background: rgba(74, 144, 226, 0.3);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    flex-shrink: 0;
    position: relative;
}

.suc-card > .suc-row > .suc-description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 0;
    max-width: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0.3s;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.suc-description h4 {
    text-transform: uppercase;
    margin-bottom: 8px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.suc-description p {
    color: white;
    padding-top: 5px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: center;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.suc-container > input:checked + label {
    width: min(720px, 85vw);
    z-index: 10;
}

.suc-container > input:checked + label .suc-row {
    gap: 1.25rem;
}

.suc-container > input:checked + label .suc-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
    width: min(600px, 70vw);
    max-width: min(600px, 70vw);
    padding: 15px 20px;
    margin: 15px;
}

.suc-card[for="c1"] {
    background: url('poze/360/471313420_992939999531252_6899928611208097702_n.jpg');
    background-size: cover;
    background-position: center;
}

.suc-card[for="c2"] {
    background: url('poze/poze-oglinda/IMG-20251005-WA0003.jpg');
    background-size: cover;
    background-position: center;
}

.suc-card[for="c3"] {
    background: url('poze/cabina/whatsapp-image-20251004-231158.jpg');
    background-size: cover;
    background-position: center;
}

.suc-card[for="c4"] {
    background: url('poze/poze-people/cabinafata.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .suc-container {
        height: 420px;
    }

    .suc-container > input:checked + label .suc-description {
        width: min(480px, 70vw);
        max-width: min(480px, 70vw);
        height: auto;
        min-height: 120px;
        overflow: visible;
    }

    .suc-container > input:checked + label {
        width: min(560px, 80vw);
    }
}

@media (max-width: 768px) {
    .services-section {
        margin-top: 6rem !important;
        padding: 3rem 0 1.5rem !important;
    }

    .services-header {
        padding-inline: 1.5rem;
        text-align: center;
    }

    .services-header h2 {
        font-size: clamp(1.6rem, 5vw, 2.1rem);
        line-height: 1.25;
    }

    .suc-wrapper {
        min-height: auto;
        padding: 1rem 1.5rem 3rem;
        align-items: stretch;
    }

    .suc-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        overflow: visible;
    }

    .suc-card {
        width: 100%;
        min-height: 280px;
        margin: 0;
        border-radius: 24px;
        padding: 1.75rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .suc-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(6, 16, 32, 0) 35%, rgba(6, 16, 32, 0.8) 100%);
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .suc-card:focus-within,
    .suc-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
    }

    .suc-card > .suc-row {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        flex-direction: row;
        align-items: stretch;
        gap: 1rem;
        z-index: 1;
        width: 100%;
    }

    .suc-card > .suc-row > .suc-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        background: rgba(29, 143, 225, 0.9);
        border: none;
        box-shadow: none;
        align-self: center;
        flex-shrink: 0;
    }

    .suc-card > .suc-row > .suc-description,
    .suc-container > input:checked + label .suc-description {
        opacity: 1;
        transform: none;
        width: auto;
        max-width: 100%;
        padding: 1rem 1.2rem;
        margin: 0;
        height: auto;
        min-height: 110px;
        background: rgba(12, 26, 48, 0.68);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
        border-radius: 20px;
        text-align: left;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: visible;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .suc-card > .suc-row > .suc-description h4 {
        font-size: 1.2rem;
        color: #ffffff;
        text-align: left;
    }

    .suc-card > .suc-row > .suc-description p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
        text-align: left;
        opacity: 1;
    }

    .suc-container > input:checked + label {
        width: 100%;
        transform: none;
        z-index: 1;
    }

    #galerie {
        display: none;
    }
}

@media (max-width: 560px) {
    .services-header {
        padding-inline: 1.25rem;
    }

    .services-header h2 {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
    }

    .suc-wrapper {
        padding: 0.5rem 1.25rem 2.5rem;
    }

    .suc-card {
        min-height: 240px;
        padding: 1.5rem;
    }

    .suc-card > .suc-row {
        gap: 0.65rem;
    }

    .suc-card > .suc-row > .suc-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .suc-card > .suc-row > .suc-description h4 {
        font-size: 1.1rem;
    }

    .suc-card > .suc-row > .suc-description p {
        font-size: 0.95rem;
    }

    .about-mobile__card {
        padding: 1.6rem 1.3rem 1.8rem;
    }

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

    .gallery-mobile-card__image img {
        height: 200px;
    }
}






