/* ============================================
   anca&raluca smyle - Apple-inspired Design
   ============================================ */

:root {
    --color-primary: rgb(73, 140, 181);
    --color-primary-dark: rgb(55, 110, 145);
    --color-primary-light: rgba(73, 140, 181, 0.12);
    --color-orange: #e67e22;
    --color-orange-light: #f39c12;
    --color-orange-hover: #d35400;
    --color-purple: #8e44ad;
    --color-purple-light: #9b59b6;
    --color-white: #ffffff;
    --color-gray-50: #f5f5f7;
    --color-gray-100: #e8e8ed;
    --color-gray-200: #d2d2d7;
    --color-gray-600: #6e6e73;
    --color-gray-800: #1d1d1f;
    --color-navy: #0d2137;
    --font-apple: 'Poppins', sans-serif;
    --font-size-hero: clamp(2.5rem, 8vw, 4.5rem);
    --font-size-title: clamp(2rem, 5vw, 3rem);
    --font-size-subtitle: clamp(1.1rem, 2vw, 1.35rem);
    --line-height-tight: 1.08;
    --line-height-normal: 1.47;
    --letter-spacing-tight: -0.025em;
    --max-width: 980px;
    --section-padding: clamp(3rem, 8vw, 5rem);
    --header-height: 48px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 17px;
    line-height: var(--line-height-normal);
    color: var(--color-gray-800);
    background: var(--color-white);
}

/* Only lock scroll on index (has custom scroll-container) */
body:has(.scroll-container) {
    overflow: hidden;
    height: 100vh;
}

/* --- Scroll container: viewport fixed, content moves (custom scroll) --- */
.scroll-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    z-index: 1;
}

/* --- Logo background (fixed, behind content) --- */
.logo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-bg__img {
    max-width: min(400px, 40vw);
    max-height: min(500px, 50vh);
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.45;
}

main {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* --- Scroll reveal (fly in/out left-right alternating) --- */
.scroll-reveal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform;
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.scroll-reveal--fade {
    transform: none;
}

.scroll-reveal--from-left {
    transform: translate3d(-80vw, 0, 0);
}

.scroll-reveal--from-right {
    transform: translate3d(80vw, 0, 0);
}

.scroll-reveal--fade.scroll-reveal--in-view,
.scroll-reveal--from-left.scroll-reveal--in-view,
.scroll-reveal--from-right.scroll-reveal--in-view {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    will-change: auto;
    transform: translate3d(0, 0, 0);
}

.scroll-reveal--ready {
    pointer-events: auto;
}

.service-card.scroll-reveal:nth-child(1).scroll-reveal--in-view { transition-delay: 0.05s; }
.service-card.scroll-reveal:nth-child(2).scroll-reveal--in-view { transition-delay: 0.1s; }
.service-card.scroll-reveal:nth-child(3).scroll-reveal--in-view { transition-delay: 0.15s; }
.service-card.scroll-reveal:nth-child(4).scroll-reveal--in-view { transition-delay: 0.2s; }
.service-card.scroll-reveal:nth-child(5).scroll-reveal--in-view { transition-delay: 0.25s; }
.service-card.scroll-reveal:nth-child(6).scroll-reveal--in-view { transition-delay: 0.3s; }
.service-card.scroll-reveal:nth-child(7).scroll-reveal--in-view { transition-delay: 0.35s; }
.service-card.scroll-reveal:nth-child(8).scroll-reveal--in-view { transition-delay: 0.4s; }
.service-card.scroll-reveal:nth-child(9).scroll-reveal--in-view { transition-delay: 0.45s; }
.service-card.scroll-reveal:nth-child(10).scroll-reveal--in-view { transition-delay: 0.5s; }
.service-card.scroll-reveal:nth-child(11).scroll-reveal--in-view { transition-delay: 0.55s; }
.service-card.scroll-reveal:nth-child(12).scroll-reveal--in-view { transition-delay: 0.6s; }

.service-card.scroll-reveal--in-view {
    pointer-events: auto;
}

.experience-section__img-wrap:nth-child(1) .experience-section__img.scroll-reveal--in-view { transition-delay: 0s; }
.experience-section__img-wrap:nth-child(2) .experience-section__img.scroll-reveal--in-view { transition-delay: 0.08s; }
.experience-section__img-wrap:nth-child(3) .experience-section__img.scroll-reveal--in-view { transition-delay: 0.16s; }
.experience-section__img-wrap:nth-child(4) .experience-section__img.scroll-reveal--in-view { transition-delay: 0.24s; }

/* Temporarily disabled to test animations
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        transition-duration: 0.01ms;
    }
}
*/

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- Header (Apple-style: minimal, clean) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: var(--header-height);
    overflow: visible;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Floating phone - outside navbar, below logo area */
.floating-phone {
    position: fixed;
    top: var(--header-height);
    left: 22px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    background: var(--color-white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transition: opacity var(--transition), box-shadow var(--transition);
}

.floating-phone:hover {
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.floating-review {
    position: fixed;
    top: var(--header-height);
    right: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    background: var(--color-white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transition: opacity var(--transition), box-shadow var(--transition);
}

.floating-review:hover {
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.floating-review__star {
    color: var(--color-orange-light);
    font-size: 14px;
}

.header__logo {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: var(--letter-spacing-tight);
    transition: opacity var(--transition);
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 4px;
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray-800);
}

.header__menu-toggle:hover {
    opacity: 0.7;
}

.header__menu-toggle:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 2px;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}

@media (min-width: 734px) {
    .header__menu-toggle { display: none; }
}

/* Desktop: nav always visible in header */
.header__nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.header__nav .header__link {
    display: inline;
    padding: 12px 0;
}

/* Mobile: Apple-style expandable header dropdown */
@media (max-width: 733px) {
    .header {
        overflow: hidden;
        transition: height 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
                    background 0.35s ease,
                    color 0.35s ease;
    }

    .header.is-menu-open {
        height: 100vh;
        background: rgba(29, 29, 31, 0.98);
        color: var(--color-white);
    }

    .header.is-menu-open .header__logo {
        color: var(--color-white);
        margin-top: 10px;
    }

    .header.is-menu-open .header__menu-toggle {
        color: var(--color-white);
        margin-top: 6px;
    }

    .header.is-menu-open .header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto 1fr;
        align-items: start;
        height: 100%;
    }

    .header.is-menu-open .header__logo {
        grid-column: 1;
        grid-row: 1;
    }

    .header.is-menu-open .header__menu-toggle {
        grid-column: 2;
        grid-row: 1;
    }

    .header.is-menu-open .header__nav {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .header__nav {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        flex: 1;
        padding: 0 22px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header.is-menu-open .header__nav {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
    }

    .header__nav .header__link {
        display: block;
        padding: 16px 0;
        margin: 0;
        color: var(--color-white);
        font-size: 17px;
        font-weight: 400;
        text-align: left;
        background: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .header__nav .header__link:last-of-type {
        border-bottom: none;
    }

    .header__nav .header__link--cta {
        margin-top: 16px;
        padding: 14px 0;
        text-align: center;
        font-weight: 500;
        color: var(--color-primary);
        background: var(--color-white);
        border-radius: 12px;
        border: none;
    }

    .header__nav .header__link--cta:hover {
        background: var(--color-gray-100);
        color: var(--color-primary);
    }

    .header__nav-item {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .header__nav-item:last-child {
        border-bottom: none;
    }
}

.header__link {
    font-size: 17px;
    font-weight: 400;
    color: var(--color-gray-800);
    opacity: 0.9;
    transition: opacity var(--transition);
    padding: 12px 0;
}

.header__link:hover {
    opacity: 1;
}

.header__link--cta {
    color: var(--color-primary);
    font-weight: 500;
}

.header__link--cta:hover {
    color: var(--color-primary-dark);
}

/* --- Hero (premium editorial) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 60px) 22px 80px;
    background: linear-gradient(180deg, rgba(250, 250, 252, 0.98) 0%, rgba(255, 255, 255, 1) 50%, rgba(248, 248, 250, 0.98) 100%);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -25%;
    right: -22px;
    left: auto;
    width: 110%;
    height: 120%;
    background: radial-gradient(ellipse at 100% 0%, rgba(73, 140, 181, 0.4) 0%, rgba(73, 140, 181, 0.14) 45%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -22px;
    right: auto;
    width: 105%;
    height: 115%;
    background: radial-gradient(ellipse at 0% 100%, rgba(73, 140, 181, 0.36) 0%, rgba(73, 140, 181, 0.12) 45%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
}

.hero .quick-contact-bar {
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.1s;
}

.hero__content.scroll-reveal--in-view .hero__eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.hero__title {
    font-size: var(--font-size-hero);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
    margin-bottom: 16px;
}

.hero__letter {
    display: inline-block;
    opacity: 0;
    animation: hero-letter-bounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-play-state: paused;
}

.hero__letter--space {
    min-width: 0.25em;
}

.hero__word {
    white-space: nowrap;
    display: inline-block;
}

.hero__content.scroll-reveal--in-view .hero__letter {
    animation-play-state: running;
}

@keyframes hero-letter-bounce {
    0% {
        opacity: 0;
        transform: translateY(0.4em) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateY(-0.08em) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Temporarily disabled to test animations
@media (prefers-reduced-motion: reduce) {
    .hero__letter {
        animation: none;
        opacity: 1;
    }
}
*/

.hero__subtitle {
    font-size: var(--font-size-subtitle);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 32px;
    white-space: nowrap;
}

.hero__links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    align-items: center;
    padding-top: 28px;
}

.hero__links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.hero__links .link {
    pointer-events: auto;
}

.hero__links .link--primary {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid rgba(73, 140, 181, 0.4);
}

.hero__links .link--primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

/* --- Quick contact bar (hero / services) --- */
.quick-contact-bar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    padding: 16px 22px;
}

/* Hero variant: editorial, typography-led, no box */
.quick-contact-bar--hero {
    margin-top: 100px;
    border-bottom: none;
    background: transparent;
    padding: 0;
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.35s;
}

.quick-contact-bar--hero .quick-contact-bar__inner {
    position: relative;
    gap: 0;
    padding-top: 28px;
}

.quick-contact-bar--hero .quick-contact-bar__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), transparent);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.5s;
}

.quick-contact-bar--hero.scroll-reveal--in-view .quick-contact-bar__inner::before {
    transform: translateX(-50%) scaleX(1);
}

.quick-contact-bar--hero .quick-contact-bar__sep {
    width: 1px;
    height: 12px;
    margin: 0 24px;
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.quick-contact-bar--hero .quick-contact-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 4px;
    opacity: 0;
    transform: translateY(8px);
    animation: hero-contact-item-in 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    transition: color 0.4s ease;
}

.quick-contact-bar--hero .quick-contact-bar__item:hover {
    color: var(--color-primary);
}

.quick-contact-bar--hero .quick-contact-bar__item--address:hover {
    color: inherit;
}

.quick-contact-bar--hero .quick-contact-bar__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
}

.quick-contact-bar--hero .quick-contact-bar__value {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(0, 0, 0, 0.72);
    transition: color 0.4s ease;
}

.quick-contact-bar--hero .quick-contact-bar__item:hover .quick-contact-bar__value {
    color: var(--color-primary);
}

.quick-contact-bar--hero .quick-contact-bar__item--address .quick-contact-bar__value {
    color: rgba(0, 0, 0, 0.72);
}

.quick-contact-bar--hero.scroll-reveal--in-view .quick-contact-bar__item:nth-child(1) { animation-delay: 0.2s; }
.quick-contact-bar--hero.scroll-reveal--in-view .quick-contact-bar__item:nth-child(3) { animation-delay: 0.32s; }
.quick-contact-bar--hero.scroll-reveal--in-view .quick-contact-bar__item:nth-child(5) { animation-delay: 0.44s; }

.quick-contact-bar--hero.scroll-reveal.scroll-reveal--in-view {
    pointer-events: auto;
}

@keyframes hero-contact-item-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-contact-bar--hero .quick-contact-bar__item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .quick-contact-bar--hero .quick-contact-bar__inner::before {
        transform: translateX(-50%) scaleX(1);
        transition: none;
    }
}

.quick-contact-bar__inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    justify-content: center;
    align-items: center;
}

.quick-contact-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
}

.quick-contact-bar__item:hover {
    color: var(--color-primary);
}

.quick-contact-bar__item--address {
    cursor: default;
}

.quick-contact-bar__icon {
    font-size: 1.1rem;
}

.quick-contact-bar__label {
    color: var(--color-gray-600);
    font-weight: 500;
}

.quick-contact-bar__value {
    color: var(--color-gray-800);
    font-weight: 500;
}

/* --- Links (Apple-style: text + arrow, minimal buttons) --- */
.link {
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity var(--transition), color var(--transition);
}

.link:hover {
    opacity: 0.8;
}

.link:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 4px;
}

.link--arrow::after {
    content: ">";
    font-size: 14px;
    opacity: 0.8;
}

.link--arrow {
    color: var(--color-primary);
}

.link--primary {
    color: var(--color-white);
    background: var(--color-orange);
    padding: 12px 22px;
    border-radius: 980px;
    min-height: 44px;
    align-items: center;
}

.link--primary:hover {
    background: var(--color-orange-hover);
    opacity: 1;
}

.link--light {
    color: rgba(255, 255, 255, 0.9);
}

.link--light::after {
    color: inherit;
}

.link--large {
    padding: 16px 28px;
    font-size: 19px;
}

/* --- Showcase sections (Apple-style: full-width blocks) --- */
.showcase {
    padding: var(--section-padding) 22px;
    text-align: center;
}

.showcase__content {
    max-width: var(--max-width);
    margin: 0 auto 48px;
}

.showcase__content .link {
    pointer-events: auto;
}

.showcase__title {
    font-size: var(--font-size-title);
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 8px;
}

.showcase__subtitle {
    font-size: var(--font-size-subtitle);
    font-weight: 400;
    color: var(--color-gray-600);
    margin-bottom: 20px;
}

.showcase__links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.showcase--light {
    background: var(--color-white);
}

.showcase--light .showcase__title {
    color: var(--color-gray-800);
}

.showcase--dark {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.showcase--dark .showcase__title,
.showcase--dark .showcase__subtitle {
    color: var(--color-white);
}

.showcase--dark .showcase__subtitle {
    opacity: 0.9;
}

/* --- Experience section (header + gallery in one viewport) --- */
.experience-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    overflow: hidden;
}

.experience-section::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -22px;
    width: 90%;
    height: 65%;
    background: radial-gradient(ellipse at 100% 0%, rgba(20, 50, 80, 0.7) 0%, rgba(20, 50, 80, 0.35) 45%, transparent 70%);
    pointer-events: none;
}

.experience-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -22px;
    width: 85%;
    height: 60%;
    background: radial-gradient(ellipse at 0% 100%, rgba(15, 40, 70, 0.75) 0%, rgba(15, 40, 70, 0.4) 45%, transparent 70%);
    pointer-events: none;
}

.experience-section__header,
.experience-section__gallery {
    position: relative;
    z-index: 1;
}

.experience-section__header {
    flex-shrink: 0;
    padding: 100px 22px clamp(12px, 1.5vh, 16px);
    text-align: center;
}

.experience-section__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 14px;
}

.experience-section__hairline {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 0 auto 18px;
}

.experience-section__title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--color-white);
}

.experience-section__subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    line-height: 1.5;
}

.experience-section__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
}

.experience-section__links .link {
    pointer-events: auto;
}

.experience-section__cta {
    background: transparent !important;
    color: var(--color-white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
}

.experience-section__cta:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--color-white) !important;
}

.experience-section__gallery {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px 20px;
}

.experience-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: min(750px, 92vw);
    aspect-ratio: 4 / 3;
}

.experience-section__img-wrap {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.experience-section__img-wrap:hover .experience-section__img {
    transform: scale(1.08);
}

.experience-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase--cta {
    position: relative;
    overflow: hidden;
    background: rgba(245, 245, 247, 0.82);
}

.showcase--cta::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -22px;
    width: 85%;
    height: 60%;
    background: radial-gradient(ellipse at 100% 0%, rgba(73, 140, 181, 0.2) 0%, rgba(73, 140, 181, 0.05) 45%, transparent 70%);
    pointer-events: none;
}

.showcase--cta::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -22px;
    width: 80%;
    height: 55%;
    background: radial-gradient(ellipse at 0% 100%, rgba(73, 140, 181, 0.18) 0%, rgba(73, 140, 181, 0.04) 45%, transparent 70%);
    pointer-events: none;
}

.showcase--cta .showcase__content,
.showcase--cta .reviews,
.showcase--cta .value-cards {
    position: relative;
    z-index: 1;
}

.showcase__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin: 0 0 14px;
}

.showcase__hairline {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), transparent);
    margin: 0 auto 18px;
}

.showcase--cta .showcase__title {
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
}

.showcase--cta .showcase__subtitle {
    font-size: var(--font-size-subtitle);
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 28px;
}

.showcase__cta {
    background: transparent !important;
    color: var(--color-primary) !important;
    border: 1.5px solid rgba(73, 140, 181, 0.4) !important;
}

.showcase__cta:hover {
    background: var(--color-primary-light) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary-dark) !important;
}

/* --- Booking form --- */
.booking-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    background: var(--color-white);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-gray-100);
}

.booking-form__row {
    margin-bottom: 18px;
}

.booking-form__row:last-of-type {
    margin-bottom: 24px;
}

.booking-form__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-600);
    margin-bottom: 6px;
}

.booking-form__input {
    width: 100%;
    font-family: var(--font-apple);
    font-size: 16px;
    padding: 12px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-form__input::placeholder {
    color: var(--color-gray-600);
    opacity: 0.7;
}

.booking-form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.booking-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form__btn {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-apple);
}

.booking-form__btn:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 4px;
}

@media (max-width: 480px) {
    .booking-form {
        padding: 20px 16px;
    }
}

/* --- Reviews (within showcase) --- */
.reviews {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.review-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-card__stars {
    color: var(--color-orange);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.review-card__quote {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-gray-800);
    margin: 0 0 16px;
}

.review-card__author {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
}

/* --- Value cards (Certificare, Tehnologie, Profesionalism) --- */
.value-cards {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.value-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.value-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.value-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-primary-dark);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-card__icon svg {
    width: 24px;
    height: 24px;
}

.value-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.value-card__desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-gray-600);
    margin: 0;
}

@media (max-width: 768px) {
    .reviews {
        margin-top: 32px;
        padding-top: 32px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .value-cards {
        margin-top: 32px;
        padding-top: 32px;
    }

    .value-cards__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 20px;
    }
}

/* --- Price discovery section (premium editorial) --- */
.price-discovery-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 60px 22px 48px;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f8fa 50%, #f0f4f8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-discovery-section__wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.price-discovery-banner {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 11 / 28;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.price-discovery-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.price-discovery-banner:hover .price-discovery-banner__img {
    transform: scale(1.04);
}

.price-discovery-section__inner {
    max-width: 380px;
    margin: 0 auto;
}

.price-discovery-section__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-bottom: 14px;
}

.price-discovery-section__title {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.price-discovery-section__subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-discovery-section__hairline {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), transparent);
    margin: 0 auto 28px;
}

@media (max-width: 900px) {
    .price-discovery-section__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .price-discovery-banner {
        display: none;
    }
}

/* --- Schedule section (premium editorial) --- */
.schedule-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 22px;
    background: linear-gradient(180deg, #f5f8fa 0%, #f0f4f8 50%, #f5f8fa 100%);
    color: var(--color-gray-800);
}

.schedule-section .schedule-section__inner {
    position: relative;
    z-index: 1;
}

.schedule-section--page {
    padding-top: calc(var(--header-height) + var(--section-padding));
}

.schedule-section__inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.schedule-section__left {
    display: flex;
    flex-direction: column;
}

.schedule-section__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.schedule-section__title {
    font-size: var(--font-size-title);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.88);
}

.schedule-section__subtitle {
    font-size: var(--font-size-subtitle);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 28px;
    line-height: 1.55;
}

.schedule-section__hairline {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent);
    margin-bottom: 28px;
}

.schedule-section__benefits {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
}

.schedule-section__benefit {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    line-height: 1.5;
}

.schedule-section__benefit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.schedule-section__phone {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
}

.schedule-section__phone-link {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.schedule-section__phone-link:hover {
    color: var(--color-primary-dark);
}

.schedule-section__form-wrap {
    background: var(--color-white);
    border-radius: 2px;
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.booking-form--schedule {
    max-width: none;
    margin: 0;
}

.booking-form--schedule .booking-form__row {
    margin-bottom: 22px;
}

.booking-form--schedule .booking-form__row:last-of-type {
    margin-bottom: 28px;
}

.booking-form--schedule .booking-form__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
}

.booking-form--schedule .booking-form__input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form--schedule .booking-form__input:focus {
    border-color: rgba(73, 140, 181, 0.5);
    box-shadow: 0 0 0 1px rgba(73, 140, 181, 0.2);
}

.booking-form--schedule .booking-form__input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.booking-form--schedule .booking-form__btn {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid rgba(73, 140, 181, 0.4);
    margin-top: 8px;
}

.booking-form--schedule .booking-form__btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.booking-success {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 28px;
}

.booking-success__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--color-primary);
    opacity: 0.9;
}

.booking-success__message {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.55;
    margin: 0;
}

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

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

    .schedule-section__hairline {
        margin-left: auto;
        margin-right: auto;
    }

    .schedule-section__benefits {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .schedule-section__form-wrap {
        padding: 28px 20px;
    }
}

/* --- FAQ section (100vh, FAQ only) --- */
.faq-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    padding: clamp(100px, calc(10vh + 30px), 120px) 22px clamp(20px, 3vh, 32px);
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -22px;
    width: 85%;
    height: 55%;
    background: radial-gradient(ellipse at 0% 0%, rgba(73, 140, 181, 0.15) 0%, rgba(73, 140, 181, 0.04) 45%, transparent 70%);
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -22px;
    width: 80%;
    height: 50%;
    background: radial-gradient(ellipse at 100% 100%, rgba(73, 140, 181, 0.18) 0%, rgba(73, 140, 181, 0.05) 45%, transparent 70%);
    pointer-events: none;
}

.faq-section .faq-section__title,
.faq-section .faq-section__content {
    position: relative;
    z-index: 1;
}

.faq-section__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-gray-800);
    text-align: center;
    margin-bottom: clamp(16px, 2.5vh, 24px);
    flex-shrink: 0;
}

.faq-section__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

.faq-section__list {
    flex: 1;
    padding: 8px 12px 0 4px;
}

.faq-section__cta {
    flex-shrink: 0;
    text-align: center;
    padding: 32px 28px;
    margin-top: 24px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.faq-section__cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin: 0 0 16px;
}

.faq-section__cta-hairline {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), transparent);
    margin: 0 auto 20px;
}

.faq-section__cta-headline {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
    margin: 0 0 8px;
}

.faq-section__cta-text {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.5;
    margin: 0 0 24px;
}

.faq-section__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    background: transparent;
    border: 1.5px solid rgba(73, 140, 181, 0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.faq-section__cta-btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.faq-section__cta-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .hero__eyebrow {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + 80px) 24px 120px;
        align-items: center;
    }

    .hero::before {
        top: -15%;
        right: -24px;
        left: auto;
        width: 120%;
        height: 95vh;
        background: radial-gradient(ellipse at 100% 0%, rgba(73, 140, 181, 0.42) 0%, rgba(73, 140, 181, 0.14) 50%, transparent 75%);
    }

    .hero::after {
        bottom: -15%;
        left: -24px;
        right: auto;
        width: 120%;
        height: 90vh;
        background: radial-gradient(ellipse at 0% 100%, rgba(73, 140, 181, 0.38) 0%, rgba(73, 140, 181, 0.12) 50%, transparent 75%);
    }

    .hero__eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero__subtitle {
        white-space: normal;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .hero__links {
        padding-top: 24px;
        gap: 20px;
    }

    .quick-contact-bar__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .quick-contact-bar__item {
        flex-direction: column;
        gap: 4px;
    }

    .quick-contact-bar--hero {
        margin-top: 72px;
    }

    .quick-contact-bar--hero .quick-contact-bar__inner {
        padding-top: 24px;
        gap: 20px;
    }

    .quick-contact-bar--hero .quick-contact-bar__sep {
        width: 20px;
        height: 1px;
        margin: 0;
        background: rgba(0, 0, 0, 0.08);
    }

    .faq-section {
        min-height: 100vh;
        padding: 70px 16px 32px;
    }

    .faq-section__content {
        max-width: 100%;
    }


    .faq-item__question {
        padding: 14px 0;
        font-size: 0.95rem;
    }
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-100);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-gray-100);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-800);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__question:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
}

.faq-item__icon::before {
    width: 12px;
    height: 2px;
    left: 4px;
    top: 9px;
}

.faq-item__icon::after {
    width: 2px;
    height: 12px;
    left: 9px;
    top: 4px;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-gray-600);
}

.faq-item.is-open .faq-item__answer p {
    padding-top: 4px;
}

.cta-contact-card {
    background: var(--color-white);
    border-radius: 2px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.cta-contact-card__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cta-contact-card__row:last-of-type {
    border-bottom: none;
    padding-bottom: 20px;
}

.cta-contact-card__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
}

.cta-contact-card__value {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.5;
}

.cta-contact-card__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-contact-card__link:hover {
    color: var(--color-primary-dark);
}

.cta-contact-card__btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 4px;
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid rgba(73, 140, 181, 0.4);
}

.cta-contact-card__btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

/* --- Services section (big header + 3x2 photo grid) --- */
.services-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 22px;
    background: rgba(255, 255, 255, 0.82);
}

.services-section::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -22px;
    width: 90%;
    height: 70%;
    background: radial-gradient(ellipse at 0% 0%, rgba(73, 140, 181, 0.2) 0%, rgba(73, 140, 181, 0.06) 45%, transparent 70%);
    pointer-events: none;
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: -25%;
    right: -22px;
    width: 85%;
    height: 65%;
    background: radial-gradient(ellipse at 100% 100%, rgba(73, 140, 181, 0.18) 0%, rgba(73, 140, 181, 0.05) 45%, transparent 70%);
    pointer-events: none;
}

.services-section .services-header,
.services-section .services-grid {
    position: relative;
    z-index: 1;
}

.services-header {
    max-width: var(--max-width);
    margin: 0 auto 48px;
    text-align: center;
}

.services-header__title {
    font-size: var(--font-size-title);
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-gray-800);
    margin-bottom: 12px;
}

.services-header__subtitle {
    font-size: var(--font-size-subtitle);
    font-weight: 400;
    color: var(--color-gray-600);
    margin-bottom: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.services-header__links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.services-header__links .link {
    pointer-events: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

/* Main page: show first 4 on mobile, first 6 on desktop */
.services-section .service-card:nth-child(n+5) {
    display: none;
}

@media (min-width: 734px) {
    .services-section .service-card:nth-child(n+5) {
        display: block;
    }
    .services-section .service-card:nth-child(n+7) {
        display: none;
    }
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 734px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 32px 16px 40px;
    }

    .services-header {
        margin-bottom: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: min(400px, 92vw);
        margin-left: auto;
        margin-right: auto;
    }

    .service-card.service-card-clickable {
        padding: 20px 16px;
    }

    .service-card__title {
        font-size: 1rem;
    }

    .service-card__desc {
        font-size: 0.85rem;
    }
}

/* service-card service-card-clickable - dentalclinica.ro style */
.service-card.service-card-clickable {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-gray-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.service-card.service-card-clickable:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary-light);
}

.service-card.service-card-clickable:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--color-primary-light);
    flex-shrink: 0;
}

.service-card__icon svg,
.service-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card__icon img {
    color: var(--color-primary);
}

.service-card:hover .service-card__icon svg,
.service-card:hover .service-card__icon img {
    transform: scale(1.08);
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 8px;
    letter-spacing: var(--letter-spacing-tight);
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.service-card__arrow {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    align-self: flex-start;
}

.service-card--highlight .service-card__icon {
    background: rgba(230, 126, 34, 0.12);
}

.service-card--highlight .service-card__icon svg,
.service-card--highlight .service-card__icon img {
    color: var(--color-orange);
}

.service-card--highlight .service-card__arrow {
    color: var(--color-orange);
}

/* --- Footer (Apple-style: compact, minimal) --- */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px 22px 24px;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 734px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer__heading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-orange-light);
    margin-bottom: 12px;
}

.footer__text {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.footer__link {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 6px;
    transition: opacity var(--transition);
}

.footer__link:hover {
    opacity: 1;
}

.footer__link:focus-visible {
    outline: 2px solid var(--color-orange-light);
    outline-offset: 2px;
}


.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
}

@media (min-width: 734px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__copyright {
    font-size: 12px;
    opacity: 0.7;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background var(--transition);
}

.footer__social-link:hover {
    background: var(--color-purple);
}

/* --- Back to top floating button --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(73, 140, 181, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 1000;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--color-purple);
    outline-offset: 2px;
}

.back-to-top__icon {
    width: 24px;
    height: 24px;
}
