/*
 * Platinum Starter - Main Styles
 * Цветовая палитра из брендбука Мята
 * ================================================
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Основные цвета из брендбука Мята */
    --plt-gold: #bd9445;
    --plt-gold-light: #d4a94f;
    --plt-gold-dark: #a17f3a;
    
    --plt-mint: #09ba81;
    --plt-mint-light: #0ed394;
    --plt-mint-dark: #079968;
    
    --plt-blue: #0099cc;
    --plt-red: #cc3333;
    
    /* Фоны */
    --plt-bg-dark: #0a0a0a;
    --plt-bg-section: #111111;
    --plt-bg-card: #1a1a1a;
    
    /* Текст */
    --plt-text-primary: #ffffff;
    --plt-text-secondary: #b0b0b0;
    --plt-text-muted: #707070;
    
    /* Шрифты */
    --plt-font-heading: 'Montserrat', sans-serif;
    --plt-font-body: 'Montserrat', sans-serif;
    
    /* Отступы */
    --plt-section-padding: 100px 0;
    --plt-container-width: 1200px;
    
    /* Анимации */
    --plt-transition: 0.3s ease;
    --plt-transition-slow: 0.6s ease;
}

/* ===== RESET / BASE ===== */
.platinum-block {
    font-family: var(--plt-font-body);
    color: var(--plt-text-primary);
    line-height: 1.7;
}

.platinum-block * {
    box-sizing: border-box;
}

/* ===== TYPOGRAPHY ===== */
.platinum-block h1,
.platinum-block h2,
.platinum-block h3,
.platinum-block h4,
.platinum-block h5,
.platinum-block h6 {
    font-family: var(--plt-font-heading);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plt-text-primary);
    margin: 0 0 1rem 0;
}

.platinum-block p {
    color: var(--plt-text-secondary);
    font-weight: 300;
    margin: 0 0 1rem 0;
}

/* ===== BUTTONS ===== */
.plt-btn {
    display: inline-block;
    font-family: var(--plt-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: all var(--plt-transition);
}

.plt-btn--primary {
    background: var(--plt-gold);
    color: var(--plt-bg-dark);
}

.plt-btn--primary:hover {
    background: var(--plt-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(189, 148, 69, 0.3);
}

.plt-btn--secondary {
    background: transparent;
    border: 1px solid var(--plt-gold);
    color: var(--plt-text-primary);
}

.plt-btn--secondary:hover {
    background: var(--plt-gold);
    color: var(--plt-bg-dark);
}

.plt-btn--mint {
    background: var(--plt-mint);
    color: var(--plt-bg-dark);
}

.plt-btn--mint:hover {
    background: var(--plt-mint-light);
    transform: translateY(-2px);
}

.plt-btn--large {
    padding: 20px 50px;
    font-size: 13px;
}

.plt-btn--small {
    padding: 12px 25px;
    font-size: 11px;
}

.plt-btn-wrapper {
    margin-top: 1.5rem;
}

.plt-btn-wrapper--center { text-align: center; }
.plt-btn-wrapper--right { text-align: right; }

/* ===== HERO SECTION ===== */
.plt-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--plt-bg-dark);
    background-size: cover;
    background-position: center;
}

.plt-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(9, 186, 129, 0.1) 0%, 
        rgba(10, 10, 10, 0.9) 50%,
        rgba(189, 148, 69, 0.1) 100%);
    z-index: 1;
}

.plt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.plt-hero__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--plt-gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: pltFadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.plt-hero__title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0;
    animation: pltFadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.plt-hero__subtitle {
    display: block;
    font-size: 0.35em;
    color: var(--plt-mint);
    letter-spacing: 0.3em;
    margin-top: 15px;
    font-style: normal;
    text-transform: uppercase;
}

.plt-hero__description {
    font-size: 16px;
    font-weight: 300;
    color: var(--plt-text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: pltFadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.plt-hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: pltFadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.plt-hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: pltFadeIn 1s ease forwards;
    animation-delay: 1.3s;
    z-index: 2;
}

.plt-hero__scroll-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--plt-text-muted);
}

.plt-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--plt-gold), transparent);
    animation: pltScrollLine 2s ease-in-out infinite;
}

/* ===== SECTION HEADER ===== */
.plt-section-header {
    margin-bottom: 60px;
}

.plt-section-header--center { text-align: center; }
.plt-section-header--left { text-align: left; }
.plt-section-header--right { text-align: right; }

.plt-section-header__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--plt-mint);
    margin-bottom: 20px;
}

.plt-section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
}

.plt-section-header__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--plt-mint), var(--plt-gold));
    margin: 30px auto 0;
}

.plt-section-header--left .plt-section-header__divider {
    margin-left: 0;
}

.plt-section-header--right .plt-section-header__divider {
    margin-right: 0;
    margin-left: auto;
}

/* ===== FEATURE CARD ===== */
.plt-feature-card {
    background: var(--plt-bg-card);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    height: 100%;
}

.plt-feature-card:hover {
    transform: translateY(-10px);
}

.plt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--plt-mint), var(--plt-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.plt-feature-card:hover::before {
    transform: scaleX(1);
}

.plt-feature-card__number {
    font-family: var(--plt-font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--plt-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.plt-feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.plt-feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plt-feature-card__title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.plt-feature-card__description {
    font-size: 14px;
    color: var(--plt-text-muted);
    margin: 0;
}

/* ===== PROMO CARD ===== */
.plt-promo-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(189, 148, 69, 0.2);
    padding: 40px;
    transition: border-color var(--plt-transition);
    height: 100%;
}

.plt-promo-card:hover {
    border-color: rgba(189, 148, 69, 0.5);
}

.plt-promo-card--featured {
    padding: 50px;
}

.plt-promo-card__badge {
    display: inline-block;
    background: var(--plt-mint);
    color: var(--plt-bg-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 15px;
    margin-bottom: 20px;
}

.plt-promo-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.plt-promo-card--featured .plt-promo-card__title {
    font-size: 2rem;
}

.plt-promo-card__description {
    color: var(--plt-text-secondary);
    font-weight: 300;
    margin-bottom: 20px;
}

.plt-promo-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plt-promo-card__list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(189, 148, 69, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--plt-text-primary);
}

.plt-promo-card__list li::before {
    content: '✓';
    color: var(--plt-gold);
    font-size: 14px;
}

.plt-promo-card__time {
    font-size: 12px;
    color: var(--plt-mint);
    letter-spacing: 0.1em;
    margin-top: 15px;
    display: block;
}

/* ===== GALLERY ITEM ===== */
.plt-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--plt-bg-card);
}

.plt-gallery-item--normal { aspect-ratio: 1/1; }
.plt-gallery-item--wide { aspect-ratio: 2/1; }
.plt-gallery-item--tall { aspect-ratio: 1/2; }
.plt-gallery-item--large { aspect-ratio: 1/1; }

.plt-gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--plt-transition-slow);
}

.plt-gallery-item:hover .plt-gallery-item__image {
    transform: scale(1.1);
}

.plt-gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--plt-transition);
}

.plt-gallery-item:hover .plt-gallery-item__overlay {
    opacity: 1;
}

.plt-gallery-item__caption {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plt-gold);
}

/* ===== VIP SECTION ===== */
.plt-vip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.plt-vip__content {
    padding-right: 40px;
}

.plt-vip__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--plt-mint);
    margin-bottom: 20px;
}

.plt-vip__title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.plt-vip__description {
    color: var(--plt-text-secondary);
    font-weight: 300;
    margin-bottom: 30px;
}

.plt-vip__features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.plt-vip__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--plt-text-secondary);
}

.plt-vip__feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--plt-gold);
    flex-shrink: 0;
}

.plt-vip__image-wrapper {
    position: relative;
}

.plt-vip__image {
    width: 100%;
    height: auto;
    display: block;
}

.plt-vip__image-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--plt-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--plt-bg-dark);
}

.plt-vip__image-badge-number {
    font-family: var(--plt-font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}

.plt-vip__image-badge-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CONTACT INFO ===== */
.plt-contact {
    padding: 20px 0;
}

.plt-contact__title {
    font-family: var(--plt-font-heading);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.plt-contact__item {
    margin-bottom: 25px;
}

.plt-contact__label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plt-mint);
    margin-bottom: 8px;
    display: block;
}

.plt-contact__value {
    font-size: 18px;
    color: var(--plt-text-primary);
}

.plt-contact__value a {
    color: var(--plt-text-primary);
    text-decoration: none;
    transition: color var(--plt-transition);
}

.plt-contact__value a:hover {
    color: var(--plt-gold);
}

.plt-contact__social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.plt-contact__social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--plt-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--plt-transition);
}

.plt-contact__social-link:hover {
    border-color: var(--plt-gold);
    background: var(--plt-gold);
}

.plt-contact__social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--plt-text-primary);
    transition: fill var(--plt-transition);
}

.plt-contact__social-link:hover svg {
    fill: var(--plt-bg-dark);
}

/* ===== ABOUT SECTION (обновлённая структура) ===== */
.plt-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 80px 0;
}

.plt-about--image-right {
    direction: rtl;
}

.plt-about--image-right > * {
    direction: ltr;
}

/* Композиция изображений */
.plt-about__images {
    position: relative;
    padding-bottom: 80px;
    padding-right: 60px;
}

.plt-about__image-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.plt-about__image-main .plt-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plt-about__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5a3c 0%, #6b3a2c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    font-size: 18px;
}

.plt-about__image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 1/1;
    border: 1px solid var(--plt-gold);
}

.plt-about__image-secondary--has-image {
    padding: 0;
}

.plt-about__image-secondary .plt-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Контент */
.plt-about__content {
    padding-top: 20px;
}

.plt-about__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--plt-gold);
    margin-bottom: 25px;
}

.plt-about__title {
    font-family: var(--plt-font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: 0;
}

.plt-about__title-highlight {
    display: inline;
    background: rgba(128, 128, 128, 0.4);
    padding: 0.1em 0.3em;
    margin-left: 0.1em;
}

.plt-about__text {
    margin-bottom: 40px;
}

.plt-about__text p {
    color: var(--plt-text-secondary);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.plt-about__text p:last-child {
    margin-bottom: 0;
}

/* Сетка фич 2x2 */
.plt-about__features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
    margin-top: 40px;
}

/* ===== ABOUT FEATURE (внутри сетки) ===== */
.plt-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.plt-about-feature__icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--plt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plt-about-feature__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--plt-gold);
    fill: none;
    stroke-width: 1.5;
}

.plt-about-feature__content {
    flex: 1;
    padding-top: 2px;
}

.plt-about-feature__title {
    font-family: var(--plt-font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 5px;
    text-transform: none;
    color: var(--plt-text-primary);
}

.plt-about-feature__description {
    font-size: 13px;
    color: var(--plt-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .plt-about {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .plt-about--image-right {
        direction: ltr;
    }
    
    .plt-about__images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .plt-about__features-grid {
        gap: 20px 30px;
    }
}

@media (max-width: 575px) {
    .plt-about__features-grid {
        grid-template-columns: 1fr;
    }
    
    .plt-about__images {
        padding-right: 40px;
        padding-bottom: 60px;
    }
    
    .plt-about__image-secondary {
        width: 50%;
        padding: 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes pltFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pltScrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Reveal on scroll classes */
.plt-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.plt-reveal.plt-revealed {
    opacity: 1;
    transform: translateY(0);
}

.plt-reveal--delay-1 { transition-delay: 0.1s; }
.plt-reveal--delay-2 { transition-delay: 0.2s; }
.plt-reveal--delay-3 { transition-delay: 0.3s; }
.plt-reveal--delay-4 { transition-delay: 0.4s; }

/* ===== SECTION BACKGROUNDS ===== */
.plt-section--dark {
    background-color: var(--plt-bg-dark);
    padding: var(--plt-section-padding);
}

.plt-section--alt {
    background-color: var(--plt-bg-section);
    padding: var(--plt-section-padding);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    :root {
        --plt-section-padding: 60px 0;
    }
    
    .plt-hero {
        min-height: 80vh;
    }
    
    .plt-about,
    .plt-vip {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plt-about--image-right {
        direction: ltr;
    }
    
    .plt-about__image-wrapper {
        height: 400px;
    }
    
    .plt-vip__content {
        padding-right: 0;
    }
    
    .plt-vip__image-badge {
        top: -10px;
        right: 10px;
        width: 80px;
        height: 80px;
    }
    
    .plt-vip__image-badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .plt-hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .plt-feature-card {
        padding: 30px 20px;
    }
    
    .plt-promo-card {
        padding: 25px;
    }
    
    .plt-vip__title,
    .plt-about__title {
        font-size: 1.8rem;
    }
    
    .plt-contact__social {
        flex-wrap: wrap;
    }
}

/* ===== WPBAKERY OVERRIDES ===== */
.wpb_content_element.platinum-block {
    margin-bottom: 0 !important;
}

.vc_row[data-vc-full-width="true"] .platinum-block {
    overflow: visible !important;
}

/* Row backgrounds for Platinum */
.vc_row.plt-row-dark {
    background-color: var(--plt-bg-dark) !important;
}

.vc_row.plt-row-alt {
    background-color: var(--plt-bg-section) !important;
}
