/* ==============================
   Family Club — Main Stylesheet
   ============================== */

/* Passions Conflict — cursive logo font */
@font-face {
    font-family: 'Passions Conflict';
    src: url('../fonts/PassionsConflictRUS-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* === Reset & Base (scoped to frontend only) === */
html, body {
    margin: 0;
    padding: 0;
}
.fc-main, .fc-header, .fc-header__nav, .fc-footer, .fc-hero, .fc-modal, .fc-cookie, .fc-lightbox, .fc-section,
.fc-main *, .fc-header *, .fc-header__nav *, .fc-footer *, .fc-hero *, .fc-modal *, .fc-cookie *, .fc-lightbox *, .fc-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --fc-blue: #0077CC;
    --fc-blue-light: #00B4D8;
    --fc-blue-dark: #005A9E;
    --fc-dark: #1A1A2E;
    --fc-black: #111111;
    --fc-white: #FFFFFF;
    --fc-gray-50: #F9FAFB;
    --fc-gray-100: #F5F5F7;
    --fc-gray-200: #E5E7EB;
    --fc-gray-300: #D1D5DB;
    --fc-gray-500: #6B7280;
    --fc-gray-700: #374151;
    --fc-gray-900: #1F2937;
    --fc-text: #2D2D2D;
    --fc-text-light: #6B7280;
    --fc-gold: #F59E0B;

    --fc-font-display: 'Playfair Display', Georgia, serif;
    --fc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --fc-radius: 12px;
    --fc-radius-sm: 8px;
    --fc-radius-lg: 20px;
    --fc-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --fc-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --fc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --fc-header-h: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--fc-font-body);
    color: var(--fc-text);
    background: var(--fc-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.fc-main img, .fc-header img, .fc-footer img, .fc-hero img { max-width: 100%; height: auto; display: block; }
.fc-main a, .fc-header a, .fc-footer a { color: inherit; text-decoration: none; transition: color var(--fc-transition); }
.fc-main ul, .fc-header ul, .fc-footer ul { list-style: none; }
.fc-main address, .fc-footer address { font-style: normal; }

/* WP Admin bar compatibility */
body.admin-bar .fc-header { top: 32px; }
body.admin-bar .fc-hero { padding-top: 32px; }
body.admin-bar .fc-page-header { padding-top: calc(var(--fc-header-h) + 32px + 48px); }
@media (max-width: 782px) {
    body.admin-bar .fc-header { top: 46px; }
    body.admin-bar .fc-hero { padding-top: 46px; }
}

/* === Container === */
.fc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
.fc-section__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--fc-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.fc-section__title--light { color: var(--fc-white); }

.fc-section__subtitle {
    font-size: 1.125rem;
    color: var(--fc-text-light);
    max-width: 600px;
}

.fc-section__header {
    text-align: center;
    margin-bottom: 48px;
}
.fc-section__header .fc-section__subtitle {
    margin: 0 auto;
}

.fc-section__cta {
    text-align: center;
    margin-top: 40px;
}

/* === Sections === */
.fc-section {
    padding: 80px 0;
}
.fc-section:nth-child(even) {
    background: var(--fc-gray-50);
}

/* === Buttons === */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--fc-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--fc-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--fc-transition);
    white-space: nowrap;
}
.fc-btn--primary {
    background: var(--fc-blue);
    color: var(--fc-white);
    border-color: var(--fc-blue);
}
.fc-btn--primary:hover {
    background: var(--fc-blue-dark);
    border-color: var(--fc-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,119,204,0.3);
}
.fc-btn--outline {
    background: transparent;
    color: var(--fc-dark);
    border-color: var(--fc-gray-300);
}
.fc-btn--outline:hover {
    border-color: var(--fc-blue);
    color: var(--fc-blue);
}
.fc-btn--lg { padding: 16px 36px; font-size: 1.0625rem; }
.fc-btn--small { padding: 8px 16px; font-size: 0.8125rem; }
.fc-btn--full { width: 100%; }

/* ============================
   HEADER
   ============================ */
.fc-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--fc-header-h);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fc-gray-200);
    transition: all var(--fc-transition);
}
.fc-header--scrolled {
    height: 64px;
    box-shadow: var(--fc-shadow);
}
.fc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}
.fc-header__logo-text {
    font-family: 'Passions Conflict', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--fc-dark);
    white-space: nowrap;
    line-height: 1;
}
/* Nav is outside header in DOM — position it inside header visually on desktop */
.fc-header__nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--fc-header-h);
    display: flex;
    align-items: center;
    z-index: 1001;
}
.fc-header__nav a { color: inherit; text-decoration: none; transition: color var(--fc-transition); }
.fc-header__nav a:hover { color: var(--fc-blue); }
.fc-header__nav ul { list-style: none; }
.fc-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.fc-header__menu > li > a {
    padding: 8px 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fc-gray-700);
    border-radius: var(--fc-radius-sm);
    transition: all var(--fc-transition);
}
.fc-header__menu > li > a:hover {
    color: var(--fc-blue);
    background: var(--fc-gray-50);
}

/* Dropdown */
.fc-has-dropdown { position: relative; }
.fc-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--fc-transition);
    z-index: 100;
}
.fc-has-dropdown:hover .fc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fc-dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    border-radius: var(--fc-radius-sm);
    color: var(--fc-gray-700);
}
.fc-dropdown li a:hover {
    background: var(--fc-gray-50);
    color: var(--fc-blue);
}

/* Header actions */
.fc-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.fc-header__phone {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--fc-dark);
}
.fc-header__phone:hover { color: var(--fc-blue); }

/* Social icons (universal) */
.fc-social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.fc-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.fc-social-link:hover { transform: scale(1.15); opacity: 0.85; }

/* Icon base */
.fc-ico { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.fc-ico--whatsapp { color: #25D366; }
.fc-ico--telegram { color: #2AABEE; }
.fc-ico--vk { color: #0077FF; }
.fc-ico--max { color: #0077FF; }

/* Max icon — CSS mask (same as termostem) */
.max-icon {
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill-rule='evenodd' d='M508.211 878.328c-75.007 0-109.864-10.95-170.453-54.75-38.325 49.275-159.686 87.783-164.979 21.9 0-49.456-10.95-91.248-23.36-136.873-14.782-56.21-31.572-118.807-31.572-209.508 0-216.626 177.754-379.597 388.357-379.597 210.785 0 375.947 171.001 375.947 381.604.707 207.346-166.595 376.118-373.94 377.224m3.103-571.585c-102.564-5.292-182.499 65.7-200.201 177.024-14.6 92.162 11.315 204.398 33.397 210.238 10.585 2.555 37.23-18.98 53.837-35.587a189.8 189.8 0 0 0 92.71 33.032c106.273 5.112 197.08-75.794 204.215-181.95 4.154-106.382-77.67-196.486-183.958-202.574Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill-rule='evenodd' d='M508.211 878.328c-75.007 0-109.864-10.95-170.453-54.75-38.325 49.275-159.686 87.783-164.979 21.9 0-49.456-10.95-91.248-23.36-136.873-14.782-56.21-31.572-118.807-31.572-209.508 0-216.626 177.754-379.597 388.357-379.597 210.785 0 375.947 171.001 375.947 381.604.707 207.346-166.595 376.118-373.94 377.224m3.103-571.585c-102.564-5.292-182.499 65.7-200.201 177.024-14.6 92.162 11.315 204.398 33.397 210.238 10.585 2.555 37.23-18.98 53.837-35.587a189.8 189.8 0 0 0 92.71 33.032c106.273 5.112 197.08-75.794 204.215-181.95 4.154-106.382-77.67-196.486-183.958-202.574Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Header social — compact colored icons */
.fc-header__social { gap: 6px; }
.fc-header__social .fc-ico { font-size: 22px; }

/* Footer social — circle bg like termostem footer */
.fc-footer__social.fc-social-links { gap: 10px; margin-top: 16px; }
.fc-footer__social .fc-social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.fc-footer__social .fc-social-link:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.fc-footer__social .fc-ico { font-size: 18px; }
.fc-footer__social .fc-ico--whatsapp { color: #25D366; }
.fc-footer__social .fc-ico--telegram { color: #4eb8f5; }
.fc-footer__social .fc-ico--vk { color: #5B9EFF; }
.fc-footer__social .fc-ico--max { color: #0077FF; }

/* Contact page messengers */
.fc-contact-messengers.fc-social-links { gap: 12px; margin-top: 8px; }
.fc-contact-messengers .fc-ico { font-size: 28px; }

/* Burger */
.fc-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.fc-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fc-dark);
    transition: all var(--fc-transition);
}
.fc-burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.fc-burger--active span:nth-child(2) { opacity: 0; }
.fc-burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO
   ============================ */
.fc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--fc-dark);
}
.fc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(0,119,204,0.3) 100%);
}
.fc-hero__content {
    position: relative;
    text-align: center;
    color: var(--fc-white);
    padding-top: var(--fc-header-h);
}
.fc-hero__title {
    font-family: 'Passions Conflict', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.fc-hero__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}
.fc-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.fc-hero__actions .fc-btn--outline {
    color: var(--fc-white);
    border-color: rgba(255,255,255,0.5);
}
.fc-hero__actions .fc-btn--outline:hover {
    border-color: var(--fc-white);
    background: rgba(255,255,255,0.1);
    color: var(--fc-white);
}
.fc-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    animation: fc-bounce 2s infinite;
}
@keyframes fc-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================
   SERVICES GRID
   ============================ */
.fc-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fc-service-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--fc-shadow);
    transition: all var(--fc-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fc-shadow-lg);
}
.fc-service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    color: var(--fc-blue);
}
.fc-service-card__icon svg { width: 130%; height: 130%; margin: -15%; }
.fc-service-card__title {
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fc-dark);
}
.fc-service-card__desc {
    font-size: 0.875rem;
    color: var(--fc-text-light);
    margin-bottom: 16px;
    flex: 1;
}
.fc-service-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fc-blue);
}

/* ============================
   ABOUT
   ============================ */
.fc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.fc-about__text {
    font-size: 1.0625rem;
    color: var(--fc-text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}
.fc-about__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}
.fc-stat__number {
    display: block;
    font-family: var(--fc-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fc-blue);
}
.fc-stat__label {
    font-size: 0.875rem;
    color: var(--fc-text-light);
}
.fc-about__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 450px;
}
.fc-about__img {
    border-radius: var(--fc-radius-lg);
    background-size: cover;
    background-position: center;
    background-color: var(--fc-gray-200);
}
.fc-about__img--1 { grid-row: 1 / 3; }
.fc-about__img--2 { border-radius: var(--fc-radius-lg); }

/* ============================
   TEAM
   ============================ */
.fc-team__slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fc-team-card {
    text-align: center;
}
.fc-team-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--fc-gray-100);
}
.fc-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fc-team-card__name {
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.fc-team-card__position {
    font-size: 0.875rem;
    color: var(--fc-blue);
    margin-bottom: 2px;
}
.fc-team-card__experience {
    font-size: 0.8125rem;
    color: var(--fc-text-light);
}
.fc-team-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform var(--fc-transition);
}
.fc-team-card--link:hover {
    transform: translateY(-4px);
}

/* === Team Member Profile === */
.fc-member__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: start;
}
.fc-member__photo {
    aspect-ratio: 3/4;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    background: var(--fc-gray-100);
}
.fc-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fc-member__placeholder {
    width: 100%;
    height: 100%;
    background: var(--fc-gray-200);
}
.fc-member__name {
    font-family: var(--fc-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--fc-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.fc-member__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.fc-member__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 119, 204, 0.08);
    color: var(--fc-blue);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    white-space: nowrap;
}
.fc-member__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--fc-text-light);
    margin-bottom: 24px;
}
.fc-member__detail svg {
    flex-shrink: 0;
    color: var(--fc-blue);
}
.fc-member__bio {
    margin-bottom: 32px;
    line-height: 1.8;
    color: var(--fc-text);
}
.fc-member__bio p {
    margin-bottom: 12px;
}
.fc-member__info .fc-btn {
    margin-top: 8px;
}

/* Breadcrumbs on light background */
.fc-page-header .fc-breadcrumbs a { color: var(--fc-text-light); }
.fc-page-header .fc-breadcrumbs a:hover { color: var(--fc-blue); }
.fc-page-header .fc-breadcrumbs span { color: var(--fc-text); }

@media (max-width: 768px) {
    .fc-member__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .fc-member__photo {
        max-width: 320px;
        margin: 0 auto;
    }
    .fc-member__info {
        text-align: center;
    }
}

/* ============================
   GALLERY
   ============================ */
.fc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fc-gallery__item {
    position: relative;
    border-radius: var(--fc-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.fc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fc-transition);
}
.fc-gallery__item:hover img {
    transform: scale(1.05);
}
.fc-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--fc-transition);
    color: var(--fc-white);
    font-weight: 500;
}
.fc-gallery__item:hover .fc-gallery__overlay {
    opacity: 1;
}
/* Gallery master avatar */
.fc-gallery__master {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--fc-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fc-gallery__master:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.fc-gallery__master img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================
   APP DOWNLOAD
   ============================ */
.fc-app {
    background: var(--fc-gray-50) !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    overflow: hidden;
}
.fc-app__card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    background: #EDE9E0;
    border-radius: 24px;
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
    overflow: hidden;
}
.fc-app__content { position: relative; z-index: 1; }
.fc-app__pretitle {
    font-size: 1.5rem;
    color: var(--fc-dark);
    margin-bottom: 0;
    line-height: 1.2;
}
.fc-app__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--fc-dark);
    margin-bottom: 20px;
    line-height: 1;
}
.fc-app__label {
    font-size: 0.875rem;
    color: var(--fc-gray-500);
    margin-bottom: 10px;
}
.fc-app__perks {
    list-style: none;
    margin-bottom: 24px;
}
.fc-app__perks li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9375rem;
    color: var(--fc-gray-700);
    line-height: 1.6;
}
.fc-app__perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--fc-blue);
    border-radius: 50%;
}
.fc-app__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.fc-app-badge { display: inline-block; }
.fc-app-badge img {
    height: 44px;
    width: auto;
    display: block;
    border-radius: 10px;
}
.fc-footer__apps .fc-app-badge img { height: 36px; border-radius: 8px; }
.fc-app__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
    width: 280px;
    align-self: stretch;
    margin: -40px -12px -40px 0;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}
.fc-app__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================
   REVIEWS
   ============================ */
.fc-reviews__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fc-review-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 32px;
    box-shadow: var(--fc-shadow);
}
.fc-review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.fc-review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--fc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.fc-review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fc-review-card__name {
    font-weight: 600;
    margin-bottom: 4px;
}
.fc-stars { display: flex; gap: 2px; }
.fc-review-card__text {
    font-size: 0.9375rem;
    color: var(--fc-text-light);
    line-height: 1.7;
}

/* ============================
   PROMOS
   ============================ */
.fc-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fc-promo-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    overflow: hidden;
    box-shadow: var(--fc-shadow);
    transition: transform var(--fc-transition);
}
.fc-promo-card:hover { transform: translateY(-4px); }
.fc-promo-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.fc-promo-card__content { padding: 24px; }
.fc-promo-card__title {
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.fc-promo-card__text {
    font-size: 0.875rem;
    color: var(--fc-text-light);
    margin-bottom: 16px;
}

/* Loyalty program cards */
.fc-loyalty__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fc-loyalty-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--fc-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fc-loyalty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow-lg);
}
.fc-loyalty-card__icon {
    margin-bottom: 16px;
}
.fc-loyalty-card h3 {
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fc-dark);
    margin-bottom: 8px;
}
.fc-loyalty-card p {
    font-size: 0.9375rem;
    color: var(--fc-text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .fc-loyalty__grid { grid-template-columns: 1fr; }
}

/* ============================
   CERTIFICATES
   ============================ */
.fc-certificates {
    background: linear-gradient(135deg, var(--fc-blue) 0%, var(--fc-blue-dark) 100%) !important;
    color: var(--fc-white);
}
.fc-certificates__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.fc-certificates .fc-section__title { color: var(--fc-white); }
.fc-certificates p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.8;
}
.fc-certificates__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.fc-certificates .fc-btn--primary {
    background: var(--fc-white);
    color: var(--fc-blue);
    border-color: var(--fc-white);
}
.fc-certificates .fc-btn--outline {
    color: var(--fc-white);
    border-color: rgba(255,255,255,0.5);
}
.fc-certificates__visual {
    width: 100%;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--fc-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   CONTACTS SECTION
   ============================ */
.fc-contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.fc-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.fc-contact-item svg {
    flex-shrink: 0;
    color: var(--fc-blue);
    margin-top: 2px;
}
.fc-contact-item strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}
.fc-contact-item p {
    font-size: 0.9375rem;
    color: var(--fc-text-light);
    margin-bottom: 2px;
}
.fc-contact-item a { color: var(--fc-blue); }
.fc-contact-item a:hover { text-decoration: underline; }
.fc-contact-messengers { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.fc-contacts__map {
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    min-height: 400px;
}
.fc-contacts__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================
   FOOTER
   ============================ */
.fc-footer {
    background: var(--fc-dark);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 0;
}
.fc-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fc-footer__logo {
    font-family: 'Passions Conflict', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--fc-white);
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}
.fc-footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.fc-footer__social {
    display: flex;
    gap: 12px;
}
.fc-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--fc-transition);
}
.fc-footer__social a:hover {
    background: var(--fc-blue);
    color: var(--fc-white);
}
.fc-footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fc-white);
    margin-bottom: 20px;
}
.fc-footer__links li { margin-bottom: 10px; }
.fc-footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--fc-transition);
}
.fc-footer__links a:hover { color: var(--fc-white); }
.fc-footer__contacts p {
    font-size: 0.875rem;
    margin-bottom: 8px;
}
.fc-footer__contacts a { color: rgba(255,255,255,0.8); }
.fc-footer__contacts a:hover { color: var(--fc-white); }
.fc-footer__apps {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.fc-footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ============================
   FLOATING BOOKING BUTTON
   ============================ */
.fc-floating-book {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
}
.fc-floating-book__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--fc-blue);
    color: var(--fc-white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,119,204,0.4);
    transition: all var(--fc-transition);
    animation: fc-pulse 2s infinite;
}
.fc-floating-book__btn:hover {
    background: var(--fc-blue-dark);
    transform: scale(1.05);
    animation: none;
}
@keyframes fc-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0,119,204,0.4); }
    50% { box-shadow: 0 8px 40px rgba(0,119,204,0.6); }
}

/* ============================
   MODAL
   ============================ */
.fc-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.fc-modal--active { display: flex; }
.fc-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.fc-modal__content {
    position: relative;
    background: var(--fc-white);
    padding: 48px;
    border-radius: var(--fc-radius-lg);
    max-width: 440px;
    width: 90%;
    box-shadow: var(--fc-shadow-lg);
}
.fc-modal__content h3 {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.fc-modal__content p {
    color: var(--fc-text-light);
    margin-bottom: 24px;
}
.fc-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--fc-gray-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.fc-modal__close:hover { background: var(--fc-gray-100); }

/* === Forms === */
.fc-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--fc-gray-200);
    border-radius: var(--fc-radius-sm);
    font-family: var(--fc-font-body);
    font-size: 0.9375rem;
    margin-bottom: 12px;
    transition: border-color var(--fc-transition);
    outline: none;
}
.fc-input:focus { border-color: var(--fc-blue); }
.fc-form-result {
    margin-top: 12px;
    font-size: 0.875rem;
    color: #10B981;
}

/* ============================
   COOKIE BANNER
   ============================ */
.fc-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--fc-dark);
    color: rgba(255,255,255,0.8);
    padding: 16px 0;
    display: none;
}
.fc-cookie--active { display: block; }
.fc-cookie__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.fc-cookie p {
    font-size: 0.8125rem;
    flex: 1;
}
.fc-cookie a { color: var(--fc-blue-light); text-decoration: underline; }
.fc-cookie .fc-btn--small {
    background: var(--fc-blue);
    color: var(--fc-white);
    border-color: var(--fc-blue);
    flex-shrink: 0;
}

/* ============================
   PAGE TEMPLATES
   ============================ */
.fc-page-header {
    padding: calc(var(--fc-header-h) + 48px) 0 48px;
    background: var(--fc-gray-50);
    text-align: center;
}
.fc-page-content {
    padding: 64px 0;
}
.fc-page-content p { margin-bottom: 16px; line-height: 1.8; }
.fc-page-content h2 {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    margin: 32px 0 16px;
    color: var(--fc-dark);
}
.fc-page-content h3 {
    font-family: var(--fc-font-display);
    font-size: 1.375rem;
    margin: 24px 0 12px;
    color: var(--fc-dark);
}

/* Price table */
.fc-price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.fc-price-table th,
.fc-price-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--fc-gray-200);
}
.fc-price-table th {
    background: var(--fc-gray-50);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fc-gray-500);
}
.fc-price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--fc-dark);
    white-space: nowrap;
}
.fc-price-table tbody tr {
    transition: all 0.2s ease;
}
.fc-price-table tbody tr:hover {
    background: #EFF6FF;
    transform: scale(1.01);
}
.fc-price-table tbody tr:hover td:last-child {
    color: var(--fc-blue);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .fc-services__grid { grid-template-columns: repeat(3, 1fr); }
    .fc-team__slider { grid-template-columns: repeat(3, 1fr); }
    .fc-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --fc-header-h: 64px; }

    .fc-header__nav {
        display: none;
        position: fixed;
        top: var(--fc-header-h);
        left: 0; right: 0; bottom: 0;
        height: auto;
        transform: none;
        z-index: 9999;
    }
    .fc-header__nav--active {
        display: block;
        background: #FFFFFF;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .fc-header__nav--active .fc-header__menu {
        list-style: none;
        flex-direction: column;
        padding: 16px 24px;
        margin: 0;
        gap: 0;
    }
    .fc-header__nav--active .fc-header__menu > li > a {
        display: block;
        padding: 14px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--fc-gray-200);
        color: var(--fc-dark);
        text-decoration: none;
    }
    .fc-header__nav--active .fc-dropdown {
        list-style: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 8px 16px;
        margin: 0;
    }
    .fc-header__nav--active .fc-dropdown li a {
        display: block;
        padding: 10px 0;
        font-size: 0.9375rem;
        color: var(--fc-gray-700);
        text-decoration: none;
        border-bottom: 1px solid var(--fc-gray-100);
    }
    .fc-header__nav--active .fc-header__menu {
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }
    .fc-header__nav--active .fc-header__menu > li > a {
        display: block;
        padding: 14px 16px;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--fc-gray-100);
    }
    .fc-header__nav--active .fc-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 16px;
    }
    .fc-header__phone { display: none; }
    .fc-header__social { display: none; }
    .fc-burger { display: flex; }

    .fc-section { padding: 48px 0; }
    .fc-section__header { margin-bottom: 32px; }

    .fc-hero__title { margin-bottom: 12px; }
    .fc-hero__subtitle { margin-bottom: 32px; }

    .fc-services__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fc-about__grid { grid-template-columns: 1fr; gap: 32px; }
    .fc-about__images { height: 300px; }
    .fc-about__stats { gap: 24px; }
    .fc-team__slider { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fc-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fc-app__card { grid-template-columns: 1fr; text-align: center; padding: 32px 20px; padding-bottom: 0; overflow: hidden; }
    .fc-app__visual { width: calc(100% + 40px); height: 280px; margin: 0 -20px 0; border-radius: 0 0 24px 24px; overflow: hidden; align-self: auto; }
    .fc-app__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
    .fc-app__buttons { justify-content: center; }
    .fc-reviews__slider { grid-template-columns: 1fr; }
    .fc-promos__grid { grid-template-columns: 1fr; }
    .fc-certificates__inner { grid-template-columns: 1fr; gap: 32px; }
    .fc-certificates__list li { font-size: 0.9375rem; }
    .fc-certificates__visual { height: auto; }
    .fc-gift-card { max-width: 300px; margin: 0 auto; padding: 24px; }
    .fc-gift-card__amount { font-size: 2.5rem; }
    .fc-contacts__grid { grid-template-columns: 1fr; }
    .fc-footer__grid { grid-template-columns: 1fr; gap: 32px; }

    .fc-price-table { display: table; width: 100%; table-layout: fixed; }
    .fc-price-table th:first-child, .fc-price-table td:first-child { width: 65%; }
    .fc-price-table th:last-child, .fc-price-table td:last-child { width: 35%; }
    .fc-price-table th, .fc-price-table td { padding: 10px 12px; font-size: 0.8125rem; }
    .fc-price-table td:first-child { word-wrap: break-word; }
    .fc-price-table__section td { font-size: 0.875rem; }

    .fc-cookie__inner { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
    .fc-services__grid { grid-template-columns: 1fr; }
    .fc-team__slider { grid-template-columns: 1fr; }
    .fc-hero__actions { flex-direction: column; align-items: center; }
    .fc-stat__number { font-size: 2rem; }
}

/* ============================
   ANIMATIONS (scroll reveal)
   ============================ */
.fc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fc-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Lightbox === */
.fc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
}
.fc-lightbox--active { display: flex; }
.fc-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--fc-radius);
}
.fc-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--fc-white);
    font-size: 2rem;
    cursor: pointer;
}

/* ============================
   GALLERY FILTERS & LOAD MORE
   ============================ */
.fc-gallery-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.fc-filter-btn {
    padding: 8px 20px;
    font-family: var(--fc-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1.5px solid var(--fc-gray-200);
    border-radius: 50px;
    background: var(--fc-white);
    color: var(--fc-gray-700);
    cursor: pointer;
    transition: all var(--fc-transition);
    white-space: nowrap;
}
.fc-filter-btn:hover {
    border-color: var(--fc-blue);
    color: var(--fc-blue);
}
.fc-filter-btn--active {
    background: var(--fc-blue);
    color: var(--fc-white);
    border-color: var(--fc-blue);
}
.fc-filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--fc-gray-100);
    color: var(--fc-gray-500);
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 4px;
}
.fc-filter-btn--active .fc-filter-btn__count {
    background: rgba(255,255,255,0.25);
    color: var(--fc-white);
}
.fc-gallery-loadmore {
    text-align: center;
    margin-top: 40px;
}
.fc-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--fc-gray-200);
    border-top-color: var(--fc-blue);
    border-radius: 50%;
    animation: fc-spin 0.7s linear infinite;
    margin: 0 auto;
}
@keyframes fc-spin { to { transform: rotate(360deg); } }

.fc-gallery__item--entering {
    animation: fc-fadeInUp 0.4s ease forwards;
}
@keyframes fc-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Price table section headers */
.fc-price-table__section td {
    background: var(--fc-gray-50);
    padding: 16px 20px 8px;
    border-bottom: 2px solid var(--fc-blue);
    font-size: 0.9375rem;
    color: var(--fc-blue-dark);
    letter-spacing: 0.02em;
}

/* Service gallery section */
.fc-service-gallery {
    background: var(--fc-gray-50);
}
.fc-service-gallery .fc-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .fc-service-gallery .fc-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fc-gallery-filters {
        gap: 6px;
        margin-bottom: 24px;
    }
    .fc-filter-btn {
        padding: 6px 14px;
        font-size: 0.8125rem;
    }
}

/* ============================
   WHY US
   ============================ */
.fc-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.fc-why-card {
    text-align: center;
    padding: 32px 24px;
}
.fc-why-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    color: var(--fc-blue);
}
.fc-why-card__icon svg { width: 100%; height: 100%; }
.fc-why-card h3 {
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fc-dark);
}
.fc-why-card p {
    font-size: 0.875rem;
    color: var(--fc-text-light);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .fc-why__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fc-why-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
    .fc-why__grid { grid-template-columns: 1fr; }
}

/* ============================
   BRANDS TICKER
   ============================ */
.fc-brands {
    padding: 20px 0;
    background: var(--fc-gray-50);
    overflow: hidden;
}
.fc-brands__track {
    display: flex;
    width: max-content;
    animation: fc-ticker 30s linear infinite;
}
.fc-brands__slide {
    display: flex;
    gap: 48px;
    padding-right: 48px;
    flex-shrink: 0;
}
.fc-brands__slide span {
    font-family: var(--fc-font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--fc-gray-500);
    white-space: nowrap;
    letter-spacing: 0.05em;
}
@keyframes fc-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   BIRTHDAY PROMO
   ============================ */
.fc-birthday {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%) !important;
    padding: 48px 0 !important;
}
.fc-birthday__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.fc-birthday__icon {
    flex-shrink: 0;
    color: var(--fc-gold);
}
.fc-birthday__content {
    max-width: 500px;
}
.fc-birthday__title {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fc-dark);
    margin-bottom: 8px;
}
.fc-birthday__content p {
    color: var(--fc-gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .fc-birthday__inner { flex-direction: column; text-align: center; }
}

/* ============================
   PHONE MOCKUP (CSS only)
   ============================ */
.fc-phone-mockup {
    width: 200px;
    background: #2C2C2E;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    position: relative;
    z-index: 1;
}
.fc-phone-mockup__notch {
    width: 72px;
    height: 18px;
    background: #2C2C2E;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -8px;
}
.fc-phone-mockup__screen {
    background: var(--fc-white);
    border-radius: 22px;
    padding: 36px 16px 18px;
    min-height: 300px;
}
.fc-phone-mockup__header {
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fc-dark);
    margin-bottom: 24px;
    text-align: center;
}
.fc-phone-mockup__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--fc-gray-100);
    font-size: 0.8125rem;
    color: var(--fc-gray-700);
}
.fc-phone-mockup__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fc-blue);
    flex-shrink: 0;
}
.fc-phone-mockup__btn {
    margin-top: 20px;
    background: var(--fc-blue);
    color: var(--fc-white);
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}
.fc-phone-mockup__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: -36px 0 -18px;
}

/* ============================
   GIFT CARD (CSS visual)
   ============================ */
.fc-certificates__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-gift-card {
    width: 100%;
    max-width: 340px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--fc-radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    text-align: center;
}
.fc-gift-card__top {
    margin-bottom: 24px;
}
.fc-gift-card__logo {
    display: block;
    font-family: 'Passions Conflict', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: var(--fc-white);
    margin-bottom: 8px;
}
.fc-gift-card__label {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.fc-gift-card__amount {
    font-family: var(--fc-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: 16px;
}
.fc-gift-card__footer {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.fc-certificates__list {
    list-style: none;
    margin-bottom: 24px;
}
.fc-certificates__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}
.fc-certificates__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--fc-white);
    border-radius: 50%;
    opacity: 0.6;
}

/* About badge */
.fc-about__badges {
    margin-bottom: 24px;
}
.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EFF6FF;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fc-blue-dark);
}
.fc-badge svg { color: var(--fc-blue); flex-shrink: 0; }

/* ============================
   SERVICE PAGE — HERO
   ============================ */
.fc-service-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--fc-dark);
    padding: 0 0 56px;
}
@media (max-width: 768px) {
    .fc-service-hero { background-attachment: scroll; }
}
.fc-service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,80,0.85) 0%, rgba(26,26,46,0.6) 50%, rgba(0,0,0,0.2) 100%);
}
.fc-service-hero__content {
    position: relative;
    color: var(--fc-white);
    padding-top: calc(var(--fc-header-h) + 48px);
}
.fc-service-hero__icon {
    width: 64px;
    height: 64px;
    color: var(--fc-blue-light);
    margin-bottom: 16px;
    opacity: 0.85;
}
.fc-service-hero__icon svg { width: 100%; height: 100%; }
.fc-service-hero__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.fc-service-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 28px;
    line-height: 1.8;
}
.fc-service-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.fc-btn--light {
    color: var(--fc-white) !important;
    border-color: rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(4px);
}
.fc-btn--light:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--fc-white) !important;
}

/* Hero fade-in animation */
@keyframes fc-hero-fadein {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fc-service-hero__content > * {
    animation: fc-hero-fadein 0.7s ease-out both;
}
.fc-service-hero__content > :nth-child(1) { animation-delay: 0.1s; }
.fc-service-hero__content > :nth-child(2) { animation-delay: 0.2s; }
.fc-service-hero__content > :nth-child(3) { animation-delay: 0.3s; }
.fc-service-hero__content > :nth-child(4) { animation-delay: 0.4s; }
.fc-service-hero__content > :nth-child(5) { animation-delay: 0.5s; }

/* Breadcrumbs */
.fc-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.fc-breadcrumbs a { color: rgba(255,255,255,0.6); }
.fc-breadcrumbs a:hover { color: var(--fc-white); }
.fc-breadcrumbs__current { color: rgba(255,255,255,0.9); }

/* ============================
   SERVICE NAV TABS
   ============================ */
.fc-service-nav {
    background: var(--fc-white);
    border-bottom: 1px solid var(--fc-gray-200);
    position: sticky;
    top: var(--fc-header-h);
    z-index: 99;
}
body.admin-bar .fc-service-nav { top: calc(var(--fc-header-h) + 32px); }
.fc-service-nav__scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.fc-service-nav__scroll::-webkit-scrollbar { display: none; }
.fc-service-nav__item {
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fc-gray-500);
    white-space: nowrap;
    border-radius: 50px;
    transition: all var(--fc-transition);
    flex-shrink: 0;
}
.fc-service-nav__item:hover {
    color: var(--fc-blue);
    background: var(--fc-gray-50);
}
.fc-service-nav__item--active {
    color: var(--fc-white);
    background: var(--fc-blue);
}
.fc-service-nav__item--active:hover {
    color: var(--fc-white);
    background: var(--fc-blue-dark);
}

/* ============================
   SERVICE ABOUT (2 columns)
   ============================ */
.fc-service-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.fc-service-about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--fc-text-light);
    border-left: 3px solid var(--fc-blue);
    padding-left: 24px;
}
.fc-service-about__text p { margin-bottom: 16px; }
.fc-service-about__image {
    position: relative;
}
.fc-service-about__image::before {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 2px solid var(--fc-blue-light);
    border-radius: var(--fc-radius-lg);
    opacity: 0.3;
    z-index: 0;
}
.fc-service-about__image img {
    position: relative;
    z-index: 1;
    border-radius: var(--fc-radius-lg);
    width: 100%;
    object-fit: cover;
    max-height: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}
.fc-service-about__image:hover img {
    transform: scale(1.02);
}
/* Service features bullets */
.fc-service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--fc-gray-200);
    border-left: none;
    padding-left: 0;
}
.fc-service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--fc-text);
}
.fc-service-features li svg {
    flex-shrink: 0;
    color: var(--fc-blue);
}

/* ============================
   PRICE ACCORDION
   ============================ */
.fc-accordion__item {
    border: 1px solid var(--fc-gray-200);
    border-radius: var(--fc-radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.fc-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: var(--fc-white);
    border: none;
    cursor: pointer;
    font-family: var(--fc-font-body);
    font-size: 1rem;
    text-align: left;
    transition: background var(--fc-transition);
}
.fc-accordion__header:hover { background: var(--fc-gray-50); }
.fc-accordion__title {
    font-weight: 600;
    color: var(--fc-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.fc-accordion__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: var(--fc-gray-100);
    color: var(--fc-gray-500);
    font-size: 0.75rem;
    font-weight: 600;
}
.fc-accordion__arrow {
    transition: transform var(--fc-transition);
    color: var(--fc-gray-500);
    flex-shrink: 0;
}
.fc-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.fc-accordion__item--open .fc-accordion__body {
    max-height: 3000px;
}
.fc-accordion__item--open .fc-accordion__arrow {
    transform: rotate(180deg);
}
.fc-accordion__item--open .fc-accordion__header {
    background: var(--fc-gray-50);
    border-bottom: 1px solid var(--fc-gray-200);
}
.fc-accordion__body .fc-price-table {
    margin: 0;
}
.fc-accordion__body .fc-price-table th { display: none; }

/* ============================
   SERVICE CTA BANNER
   ============================ */
.fc-service-cta {
    background: linear-gradient(135deg, #005A9E 0%, #0077CC 40%, #00B4D8 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.fc-service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
                      radial-gradient(circle at 60% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.fc-service-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.fc-service-cta__title {
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: 8px;
}
.fc-service-cta__phone a {
    font-size: 1.375rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.fc-service-cta__phone a:hover { color: var(--fc-white); }

/* ============================
   RELATED SERVICES
   ============================ */
.fc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fc-related-card {
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    box-shadow: var(--fc-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--fc-white);
}
.fc-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.fc-related-card__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--fc-gray-100);
    transition: transform 0.5s ease;
}
.fc-related-card:hover .fc-related-card__img {
    transform: scale(1.05);
}
.fc-related-card__content {
    padding: 24px;
}
.fc-related-card__icon {
    width: 36px;
    height: 36px;
    color: var(--fc-blue);
    margin-bottom: 8px;
}
.fc-related-card__icon svg { width: 100%; height: 100%; }
.fc-related-card h3 {
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fc-dark);
    margin-bottom: 8px;
}
.fc-related-card p {
    font-size: 0.875rem;
    color: var(--fc-text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}
.fc-related-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fc-blue);
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.fc-related-card:hover .fc-related-card__link {
    gap: 8px;
}

/* ============================
   SCROLL REVEAL
   ============================ */
.fc-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fc-reveal--visible,
.no-js .fc-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   DECORATIVE SECTION DIVIDER
   ============================ */
.fc-divider {
    text-align: center;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}
.fc-divider svg {
    width: 100%;
    height: 40px;
    display: block;
}

/* ============================
   SERVICE PAGE RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .fc-service-hero { min-height: 340px; padding-bottom: 32px; background-attachment: scroll; }
    .fc-service-hero__title { font-size: 2rem; }
    .fc-service-hero__icon { width: 48px; height: 48px; }
    .fc-service-features { grid-template-columns: 1fr; }
    .fc-service-about { grid-template-columns: 1fr; gap: 24px; }
    .fc-service-about__image { order: -1; }
    .fc-related-grid { grid-template-columns: 1fr; }
    .fc-service-cta__inner { flex-direction: column; text-align: center; }
    .fc-service-nav__item { padding: 6px 12px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
    .fc-service-hero__actions { flex-direction: column; }
    .fc-service-hero__actions .fc-btn { width: 100%; }
}
