/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a12;
    color: #e0d6c8;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a12;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b8860b, #6a0dad);
    border-radius: 4px;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-200px) scale(2);
        opacity: 0;
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER (STICKY) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(106, 13, 173, 0.2);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-logo span {
    font-size: 1.1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.header-phone:hover {
    color: #fff;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: #25d366;
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: #e0d6c8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #ffd700;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s;
}

/* ===== SMOKE PARTICLES ===== */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.smoke {
    position: absolute;
    bottom: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.2), transparent);
    animation: smokeRise 6s ease-in infinite;
}

/* ===== STARS ===== */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(106, 13, 173, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a12 0%, #0d0d1a 50%, #0a0a12 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInLeft 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(184, 134, 11, 0.5);
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 40%, #ffd700 70%, #daa520 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #c8a2c8;
    margin-bottom: 15px;
    font-style: italic;
}

.hero-desc {
    font-size: 1rem;
    color: #a09888;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(184, 134, 11, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #ffd700;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease forwards;
}

.hero-photo-wrapper {
    position: relative;
    width: 380px;
    height: 480px;
}

.hero-photo-frame {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 100px 100px;
    border: 3px solid rgba(184, 134, 11, 0.4);
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(106, 13, 173, 0.3), rgba(10, 10, 18, 0.8)),
        linear-gradient(180deg, #1a0a2e, #0d0d1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-photo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 220px 220px 120px 120px;
    background: radial-gradient(ellipse, rgba(184, 134, 11, 0.15), transparent 70%);
    z-index: -1;
    animation: flicker 3s infinite;
}

.hero-decor {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.hero-decor:nth-child(1) {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.hero-decor:nth-child(2) {
    top: 30%;
    right: -30px;
    animation-delay: 1s;
}

.hero-decor:nth-child(3) {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.hero-decor:nth-child(4) {
    bottom: 5%;
    right: -20px;
    animation-delay: 0.5s;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #a09888;
    font-size: 1rem;
    margin-bottom: 50px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    margin: 15px auto 20px;
}

/* ===== ABOUT ===== */
.about {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a12, #0d0d1a, #0a0a12);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image-block {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-card {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    border: 2px solid rgba(184, 134, 11, 0.3);
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(139, 0, 0, 0.2), rgba(10, 10, 18, 0.9)),
        linear-gradient(135deg, #1a0a2e, #0d0d1a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-exp {
    position: absolute;
    bottom: -15px;
    right: 10%;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.about-exp span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #c8bfb0;
    font-size: 0.95rem;
}

.about-text .highlight {
    color: #c8a2c8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    border-left: 3px solid #6a0dad;
    padding-left: 15px;
    margin: 20px 0;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-tags span {
    padding: 6px 16px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #b8860b;
}

/* ===== SERVICES ===== */
.services {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0d0d1a, #0a0a12, #0d0d1a);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(13, 13, 26, 0.8));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.15);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 12px;
}

.service-card p {
    color: #a09888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
}

.service-list li {
    color: #c8bfb0;
    font-size: 0.85rem;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-size: 0.7rem;
}

/* ===== QUESTIONS (Interactive) ===== */
.questions {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(106, 13, 173, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a12, #0f0a1a, #0a0a12);
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.question-btn {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.7), rgba(13, 13, 26, 0.9));
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    color: #e0d6c8;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    text-align: center;
}

.question-btn .q-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.question-btn:hover {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(106, 13, 173, 0.15));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.15);
}

.question-answer {
    display: none;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.5), rgba(13, 13, 26, 0.7));
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.question-answer.active {
    display: block;
}

.question-answer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #c8a2c8;
    margin-bottom: 20px;
}

/* ===== ADVANTAGES ===== */
.advantages {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0d0d1a, #0a0a12, #0d0d1a);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(106, 13, 173, 0.2));
    border: 2px solid rgba(184, 134, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.advantage-card h4 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.advantage-card p {
    color: #a09888;
    font-size: 0.85rem;
}

/* ===== REVIEWS ===== */
.reviews {
    background:
        radial-gradient(ellipse at 60% 40%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a12, #0d0d1a, #0a0a12);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.5), rgba(13, 13, 26, 0.7));
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.review-card::before {
    content: '❝';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: rgba(184, 134, 11, 0.15);
    line-height: 1;
}

.review-stars {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #c8bfb0;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a0dad, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.review-author-info strong {
    display: block;
    color: #ffd700;
    font-size: 0.9rem;
}

.review-author-info span {
    color: #888;
    font-size: 0.75rem;
}

.review-date {
    color: #666;
    font-size: 0.7rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Reviews toggle */
.reviews-grid .review-card.hidden-review {
    display: none;
}

.reviews-grid.show-all .review-card.hidden-review {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

.reviews-toggle {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.btn-toggle {
    padding: 14px 40px;
    background: transparent;
    color: #ffd700;
    border: 2px solid rgba(184, 134, 11, 0.4);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-toggle:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #ffd700;
    transform: translateY(-2px);
}

/* ===== CTA / FINAL ===== */
.cta {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(106, 13, 173, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0d0d1a, #0a0a12);
    padding: 80px 20px;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    background: linear-gradient(135deg, #ffd700, #ff6347, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #c8a2c8;
    margin-bottom: 35px;
}

.cta-form {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(13, 13, 26, 0.8));
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    color: #e0d6c8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ffd700;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select option {
    background: #0a0a12;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #b8860b, #8b6914);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #daa520, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.cta-phone {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffd700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.cta-phone:hover {
    color: #fff;
}

.cta-schedule {
    color: #888;
    font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #08080f;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    color: #555;
    font-size: 0.8rem;
}

.footer p a {
    color: #b8860b;
    text-decoration: none;
}

/* ===== FLOATING TELEGRAM ===== */
.telegram-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s;
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.6);
}

.telegram-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: rgba(184, 134, 11, 0.4);
    transform: translateY(-3px);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, #1a0a2e, #0d0d1a);
    border: 2px solid rgba(184, 134, 11, 0.4);
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s;
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ffd700;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.modal p {
    color: #a09888;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.modal .btn-primary {
    animation: none;
    width: 100%;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-photo-wrapper {
        width: 260px;
        height: 340px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .highlight {
        text-align: left;
    }

    .about-tags {
        justify-content: center;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 18, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 15px;
    }

    .hero {
        padding: 90px 15px 50px;
    }

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

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ИСПРАВЛЕНО: 1 КОЛОНКА */
    .questions-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .cta-form {
        padding: 25px 20px;
    }

    .modal {
        padding: 30px 20px;
    }

    .hero-photo-wrapper {
        width: 220px;
        height: 290px;
    }

    .hero-photo-placeholder {
        font-size: 5rem;
    }

    .telegram-float {
        width: 50px;
        height: 50px;
    }

    .telegram-float svg {
        width: 24px;
        height: 24px;
    }
}
