/* ============================================
   FPKZ - Klára Zagorová Fitness
   Modern Interactive Facelift v2
   ============================================ */

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

:root {
    --primary: #E8636B;
    --primary-dark: #D44D56;
    --primary-light: #FDE8E9;
    --bg: #FAF8F5;
    --bg-alt: #F3EFE9;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-x: none;
}

html, body {
    overflow-x: clip;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Accessibility --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only--focusable:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; padding: 12px 24px; margin: 0; overflow: visible; clip: auto; background: var(--primary); color: var(--white); border-radius: 8px; z-index: 9999; font-weight: 600; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(232, 99, 107, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(232, 99, 107, 0.5);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232, 99, 107, 0.35); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text-light); border: 2px solid rgba(0,0,0,0.1); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }

/* --- Navigation --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 36px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-link { padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-link--cta { background: var(--primary); color: var(--white) !important; }
.nav-link--cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* --- Hero --- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 72px; position: relative; overflow: hidden;
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: floatShape 8s ease-in-out infinite; }
.hero__shape--1 { width: 500px; height: 500px; background: var(--primary-light); top: -100px; right: -100px; }
.hero__shape--2 { width: 400px; height: 400px; background: #E0DAD0; bottom: -80px; left: -80px; animation-delay: -4s; }

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: var(--primary-light); color: var(--primary);
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px;
}
.hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 20px; color: var(--text);
}

.hero__subtitle { font-size: 1.15rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; max-width: 480px; }

.hero__typing {
    font-size: 1rem; color: var(--primary); font-weight: 500;
    margin-bottom: 32px; min-height: 28px;
}
.hero__typing .typing-cursor {
    display: inline-block; width: 2px; height: 1.1em; background: var(--primary);
    margin-left: 2px; animation: blink 0.8s infinite;
    vertical-align: text-bottom;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero__logo-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__logo-circle img { width: 130px; height: 130px; }

.hero__cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image-wrapper {
    position: relative; border-radius: 30px; overflow: visible;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-alt));
    border-radius: 30px; transition: transform 0.4s ease;
}
.hero__image-wrapper img { width: 100%; height: auto; object-fit: cover; border-radius: 30px; }

.hero__image-badge {
    position: absolute; background: var(--white); padding: 12px 18px;
    border-radius: 14px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 5;
}
.hero__image-badge i { color: var(--primary); font-size: 1.1rem; }
.hero__image-badge--1 { bottom: 20%; left: -30px; }
.hero__image-badge--2 { top: 15%; right: -30px; animation-delay: -1.5s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-light); font-size: 0.75rem; letter-spacing: 0.05em;
    animation: fadeInUp 1s ease 1.5s both;
}
.hero__mouse {
    width: 24px; height: 38px; border: 2px solid var(--text-light);
    border-radius: 12px; position: relative;
}
.hero__mouse-wheel {
    width: 3px; height: 8px; background: var(--primary); border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- Marquee Ticker --- */
.ticker {
    background: var(--primary);
    color: var(--white);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker__track {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
}
.ticker__set {
    display: inline-flex; align-items: center; flex-shrink: 0;
}
.ticker__set span {
    font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 0 20px;
}
.ticker__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.5); flex-shrink: 0;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Sections --- */
.section { padding: 100px 0; }
.section__header { text-align: center; margin-bottom: 60px; }
.section__label {
    display: inline-block; padding: 4px 16px; background: var(--primary-light);
    color: var(--primary); border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--text);
}

/* --- About --- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__images { position: relative; height: 480px; }
.about__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: absolute; }
.about__img--1 { width: 58%; top: 0; left: 0; z-index: 2; }
.about__img--2 { width: 52%; bottom: 20px; right: 0; z-index: 3; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }

.about__experience-badge {
    position: absolute; top: 50%; right: -10px; z-index: 4;
    background: var(--primary); color: var(--white); padding: 14px 16px;
    border-radius: 12px; text-align: center; font-size: 0.75rem; font-weight: 500;
    box-shadow: 0 8px 24px rgba(232, 99, 107, 0.35);
    line-height: 1.2;
}
.about__experience-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; display: block; line-height: 1; }
.about__experience-plus { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-left: 1px; }

.about__text { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; }
.about__text p { margin-bottom: 16px; }
.about__text strong { color: var(--text); }

.about__stats { display: flex; gap: 32px; }
.about__stat { flex: 1; }
.about__stat-number {
    display: inline; font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--primary);
}
.about__stat-suffix { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.about__stat-label { display: block; font-size: 0.85rem; color: var(--text-light); font-weight: 500; margin-bottom: 8px; }
.about__stat-bar { height: 4px; background: var(--bg-alt); border-radius: 2px; overflow: hidden; }
.about__stat-fill { height: 100%; background: var(--primary); border-radius: 2px; width: 0; transition: width 1.5s ease; }
.about__stat-fill.animated { width: var(--fill); }

/* --- Specializations --- */
.specializations { background: var(--bg-alt); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.spec-card {
    background: var(--white); padding: 40px 32px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04); position: relative; overflow: hidden;
}
.spec-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.spec-card__number {
    position: absolute; top: 16px; right: 20px;
    font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
    color: rgba(0,0,0,0.03); line-height: 1; pointer-events: none;
}

.spec-card__icon {
    width: 70px; height: 70px; border-radius: 20px; background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 1.6rem; color: var(--primary);
    transition: var(--transition);
}
.spec-card:hover .spec-card__icon { background: var(--primary); color: var(--white); transform: rotateY(180deg); }

.spec-card__title { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 14px; color: var(--text); }
.spec-card__text { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

.spec-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.9rem; font-weight: 600; color: var(--primary);
    opacity: 0; transform: translateY(10px); transition: var(--transition);
}
.spec-card__link i { font-size: 0.75rem; transition: transform 0.3s ease; }
.spec-card:hover .spec-card__link { opacity: 1; transform: translateY(0); }
.spec-card__link:hover i { transform: translateX(4px); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Photo Strip --- */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 0;
    max-height: 320px;
    overflow: hidden;
}
.photo-strip__item {
    overflow: hidden;
    position: relative;
}
.photo-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    aspect-ratio: auto;
}
.photo-strip__item:hover img {
    transform: scale(1.08);
}
.photo-strip__item--tall {
    margin-top: -20px;
    margin-bottom: -20px;
}

@media (max-width: 1024px) {
    .photo-strip { grid-template-columns: repeat(3, 1fr); max-height: none; overflow: visible; }
    .photo-strip__item:nth-child(n+4) { display: none; }
    .photo-strip__item--tall { margin: 0; }
    .photo-strip__item { overflow: visible; }
    .photo-strip__item img { object-fit: contain; height: auto; }
}
@media (max-width: 768px) {
    .photo-strip { grid-template-columns: 1fr 1fr; max-height: none; }
    .photo-strip__item:nth-child(n+3) { display: none; }
}

/* --- Parallax Quote Banner --- */
.parallax-banner {
    position: relative; padding: 100px 0;
    background: url('../img/ig-5.jpg') center/cover fixed no-repeat;
    overflow: hidden;
}
.parallax-banner__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232, 99, 107, 0.88), rgba(212, 77, 86, 0.92));
}
.parallax-banner__content {
    position: relative; z-index: 1; text-align: center; color: var(--white); max-width: 700px; margin: 0 auto;
}
.parallax-banner__icon { font-size: 2.5rem; opacity: 0.5; margin-bottom: 24px; }
.parallax-banner blockquote {
    font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500; font-style: italic; line-height: 1.5; margin-bottom: 20px;
}
.parallax-banner cite { font-size: 1rem; font-style: normal; opacity: 0.8; font-weight: 500; }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }

.price-card {
    background: var(--white); border-radius: var(--radius); padding: 40px 32px;
    text-align: center; box-shadow: var(--shadow-sm); border: 2px solid transparent;
    transition: var(--transition); position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--primary); transform: scale(1.05); box-shadow: var(--shadow-md); }
.price-card--featured:hover { transform: scale(1.05) translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); padding: 6px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.price-card__title { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 20px; color: var(--text); }
.price-card__price { margin-bottom: 28px; }
.price-card__amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--primary); }
.price-card__unit { display: block; font-size: 0.9rem; color: var(--text-light); margin-top: 4px; }
.price-card__features { list-style: none; margin-bottom: 32px; text-align: left; }
.price-card__features li { padding: 8px 0; color: var(--text-light); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.price-card__features li i { color: var(--primary); font-size: 0.8rem; }
.pricing__note { text-align: center; margin-top: 40px; color: var(--text-light); font-style: italic; font-size: 1.05rem; }

/* --- Education --- */
.education { background: var(--bg-alt); }
.education__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.education__timeline { margin-top: 30px; }
.edu-item { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06); transition: var(--transition); }
.edu-item:hover { padding-left: 10px; background: rgba(232, 99, 107, 0.03); border-radius: 8px; }
.edu-item__year { flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px; background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.edu-item:hover .edu-item__year { background: var(--primary); color: var(--white); }
.edu-item__name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.edu-item__institution { font-size: 0.85rem; color: var(--text-light); }

.education__image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg); }
.education__image img { width: 100%; height: auto; object-fit: cover; transform: scale(1.06); transition: transform 0.5s ease; }
.education__image:hover img { transform: scale(1.09); }

/* --- Reviews Carousel --- */
.reviews-carousel { position: relative; overflow: hidden; padding: 0 4px; }
.reviews-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
    background: var(--white); padding: 36px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
    flex: 0 0 calc(50% - 15px); margin-right: 30px;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__stars { margin-bottom: 16px; color: #FFC107; font-size: 0.9rem; display: flex; gap: 3px; }
.review-card__text { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.review-card__name { display: block; font-size: 0.95rem; color: var(--text); }
.review-card__meta { display: block; font-size: 0.8rem; color: var(--text-light); }

.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.reviews-nav__btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--primary); background: transparent;
    color: var(--primary); cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: var(--transition); font-size: 0.9rem;
}
.reviews-nav__btn:hover { background: var(--primary); color: var(--white); }
.reviews-nav__dots { display: flex; gap: 8px; }
.reviews-nav__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--bg-alt); border: none; cursor: pointer;
    transition: var(--transition);
}
.reviews-nav__dot.active { background: var(--primary); transform: scale(1.2); }

/* --- Instagram --- */
.instagram {
    background: linear-gradient(180deg, var(--bg) 0%, #F0EDE7 100%);
    position: relative;
    padding-top: 80px;
}
.instagram__divider {
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.instagram__divider-icon {
    position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #E8636B, #C13584, #F77737);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; box-shadow: 0 4px 20px rgba(193, 53, 132, 0.35);
}
.instagram__handle {
    font-size: 1.05rem; color: var(--text-light); margin-top: 8px;
    font-weight: 500; letter-spacing: 0.01em;
}
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.ig-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/5; box-shadow: var(--shadow-sm); transition: var(--transition);
    background: var(--bg-alt);
}
.ig-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ig-item img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; }
.ig-item__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232, 99, 107, 0.8), rgba(193, 53, 132, 0.8));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; opacity: 0; transition: var(--transition);
}
.ig-item__overlay i { color: var(--white); font-size: 1.8rem; }
.ig-item__overlay span { color: var(--white); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ig-item:hover img { transform: scale(1.12); }
.ig-item:hover .ig-item__overlay { opacity: 1; }
.instagram__cta { text-align: center; margin-top: 40px; }

/* --- Contact --- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact__card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact__item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact__item i { width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.contact__item:hover i { background: var(--primary); color: var(--white); }
.contact__item strong { display: block; margin-bottom: 4px; font-size: 0.9rem; color: var(--text); }
.contact__item p, .contact__item a { font-size: 0.95rem; color: var(--text-light); }
.contact__item a:hover { color: var(--primary); }
.contact__socials { display: flex; gap: 12px; margin-top: 8px; }
.contact__social { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-light); transition: var(--transition); }
.contact__social:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.contact__partner { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.contact__partner-logo { height: 36px; width: auto; }
.contact__partner span { font-size: 0.85rem; color: var(--text-light); }

/* --- Footer --- */
.footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 50px 0 30px; }
.footer__inner { text-align: center; }
.footer__logo { height: 60px; width: 60px; margin: 0 auto 16px; filter: brightness(0) invert(1); object-fit: contain; }
.footer__brand p { margin-bottom: 24px; font-size: 0.9rem; }
.footer__links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }

/* --- Animations --- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero__logo-circle { position: static; transform: none; margin: 0 auto 10px; }
    .hero__logo-circle img { width: 100px; height: 100px; }
    .hero__subtitle, .hero__typing { margin-left: auto; margin-right: auto; }
    .hero__cta-group { justify-content: center; }
    .hero__image-wrapper { max-width: 400px; margin: 0 auto; }
    .hero__image-wrapper img { object-fit: contain; border-radius: var(--radius); }
    .hero__image-badge { display: none; }
    .hero__scroll-hint { display: none; }
    .about__grid { grid-template-columns: 1fr; gap: 30px; }
    .about__images {
        height: auto; position: static;
        display: block;
        max-width: 350px; margin: 0 auto;
    }
    .about__img { position: static; width: 100% !important; border-radius: var(--radius); }
    .about__img:last-child { display: none; }
    .about__img img { width: 100%; height: auto; object-fit: contain; }
    .about__experience-badge { display: none; }
    .spec-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .price-card--featured { transform: none; }
    .price-card--featured:hover { transform: translateY(-4px); }
    .education__grid { grid-template-columns: 1fr; }
    .education__image { max-width: 400px; margin: 0 auto; }
    .review-card { flex: 0 0 100%; margin-right: 0; }
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
    .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; gap: 4px; box-shadow: var(--shadow-md); border-radius: 0 0 var(--radius) var(--radius); }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { min-height: auto; padding: 110px 0 40px; }
    .section { padding: 60px 0; }
    .about__stats { justify-content: center; flex-wrap: wrap; }
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__links { flex-wrap: wrap; }
    .ticker { padding: 10px 0; }
    .parallax-banner { background-attachment: scroll; }
}
