/* ========== ENHANCED HERO SECTION ========== */
.hero-section-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(0, 8, 20, 0.3) 0%,
        rgba(0, 29, 61, 0.2) 50%,
        rgba(26, 0, 51, 0.3) 100%);
    backdrop-filter: blur(2px);
    /* Компенсация фиксированного хедера + status bar */
    padding-top: 120px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

/* Адаптивные отступы для hero */
@media (max-width: 768px) {
    .hero-section-full {
        padding-top: 100px;
        padding-bottom: 30px;
        min-height: 100vh;
    }

    .hero-main-title {
        font-size: 2.5rem !important;
    }

    .title-line-3.accent-text {
        font-size: 3rem !important;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section-full {
        padding-top: 90px;
    }

    .hero-main-title {
        font-size: 2rem !important;
    }

    .title-line-3.accent-text {
        font-size: 2.5rem !important;
    }
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.9) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.title-line-3.accent-text {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    text-decoration: none;
    animation: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-20px);}
    60% {transform: translateX(-50%) translateY(-10px);}
}

/* ========== 6 REASONS SECTION ========== */
.reasons-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 29, 61, 0.4) 0%, 
        rgba(255, 20, 147, 0.05) 30%, 
        rgba(138, 43, 226, 0.05) 70%, 
        rgba(0, 8, 20, 0.4) 100%);
    backdrop-filter: blur(3px);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reason-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px;
    transition: var(--transition-normal);
    background: rgba(0, 8, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 8, 20, 0.3), 0 0 20px rgba(255, 215, 0, 0.05);
}

.reason-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 8, 20, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
}

.reason-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: none;
}

.reason-card:hover .reason-image {
    transform: none;
}

.reason-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 8, 20, 0.2) 0%, 
        rgba(0, 8, 20, 0.6) 70%, 
        rgba(0, 8, 20, 0.8) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.reason-card:hover .reason-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 8, 20, 0.3) 0%, 
        rgba(0, 8, 20, 0.7) 70%, 
        rgba(0, 8, 20, 0.9) 100%);
}

.reason-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.reason-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.reason-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Адаптивная сетка */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .reason-card {
        height: 300px;
    }
    
    .reason-image {
        height: 150px;
    }
    
    .reason-overlay h3 {
        font-size: 1.2rem;
    }
    
    .reason-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        gap: 1rem;
    }
    
    .reason-card {
        height: 280px;
    }
}

/* ========== SERVICES SHOWCASE ========== */
.services-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 8, 20, 0.5) 0%, 
        rgba(13, 27, 42, 0.4) 100%);
    backdrop-filter: blur(3px);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-main-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    text-align: center;
}

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

.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 400px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 60%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem;
    color: var(--color-white);
    text-align: center;
}

.service-content {
    height: 40%;
    padding: 1.5rem;
    background: rgba(0, 8, 20, 0.6);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content p {
    margin-bottom: 1rem;
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

.service-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--color-gold-dark);
}

/* ========== ELEGANT DIVIDER ========== */
.elegant-divider {
    display: flex;
    align-items: center;
    margin: 4rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.divider-icon {
    padding: 0 1.5rem;
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: bold;
}

/* ========== DESTINATIONS SHOWCASE ========== */
.destinations-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(26, 0, 51, 0.4) 0%, 
        rgba(0, 29, 61, 0.3) 50%, 
        rgba(0, 8, 20, 0.5) 100%);
    backdrop-filter: blur(1px);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(200, 200, 255, 0.1);
    transition: var(--transition-normal);
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition-slow);
}

.destination-image:hover {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 8, 20, 0.9), rgba(0, 29, 61, 0.4), transparent);
    backdrop-filter: blur(5px);
    padding: 2rem;
    color: var(--color-white);
    text-align: center;
}

.destination-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    color: var(--color-gray-light);
    margin-bottom: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, 
        rgba(0, 8, 20, 0.6) 0%, 
        rgba(138, 43, 226, 0.1) 30%, 
        rgba(75, 0, 130, 0.1) 70%, 
        rgba(0, 8, 20, 0.6) 100%);
    backdrop-filter: blur(4px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.testimonial-card {
    background: rgba(0, 8, 20, 0.8);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.1), 0 0 20px rgba(138, 43, 226, 0.05);
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.2), 0 0 30px rgba(138, 43, 226, 0.1);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-dark-light);
    margin-bottom: 0;
}

.testimonial-author h4 {
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========== PREMIUM APPLICATION SECTION ========== */
.premium-application {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 8, 20, 0.7) 0%, 
        rgba(26, 0, 51, 0.4) 50%, 
        rgba(0, 29, 61, 0.7) 100%);
    backdrop-filter: blur(5px);
}

.premium-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.premium-application-form {
    background: rgba(0, 8, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--color-white);
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.checkbox-label input:checked ~ .checkmark {
    background: rgba(255, 215, 0, 0.8);
    border-color: var(--color-gold);
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    left: 0.25rem;
    top: 0.1rem;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: bold;
}

.premium-submit-btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, #FFA500 100%);
    color: var(--color-dark);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.premium-submit-btn:active {
    transform: translateY(0);
}

.status-message {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.status-message.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-text {
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.response-timer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-content p {
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}