
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -1px;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(102, 126, 234, 0.6) 50%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 2rem;
}

.hero-container {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleFade 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: heroTextFade 1.2s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: heroCTAFade 1.2s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.hero-cta:active {
    transform: translateY(-1px);
}

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

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

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-image {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Block 2 */
.tech-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.tech-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: techGlow 8s ease-in-out infinite alternate;
}

@keyframes techGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    0% { text-shadow: 0 0 30px rgba(0, 245, 255, 0.5); }
    100% { text-shadow: 0 0 50px rgba(255, 0, 255, 0.8); }
}

.tech-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.tech-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.5);
}

.tech-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8) contrast(1.1) saturate(1.3);
}

.tech-card:hover .tech-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) saturate(1.5);
}

.tech-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 10px rgba(0, 245, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.8); }
}

.tech-card-content {
    padding: 30px;
}

.tech-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00f5ff;
}

.tech-card-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #b0b0b0;
}

.tech-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff00ff;
    font-size: 0.8rem;
}

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff 0%, #ffff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    animation: statPulse 2s ease-in-out infinite alternate;
}

@keyframes statPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.stat-label {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .tech-title {
        font-size: 2.5rem;
    }
    
    .tech-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .tech-showcase {
        padding: 60px 0;
    }
    
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-card-content {
        padding: 20px;
    }
}

/* Block 3 */
.future-experiences {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.future-experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="star" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.8"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><circle cx="20" cy="30" r="0.5" fill="url(%23star)"/><circle cx="80" cy="20" r="0.3" fill="url(%23star)"/><circle cx="60" cy="70" r="0.4" fill="url(%23star)"/><circle cx="30" cy="80" r="0.2" fill="url(%23star)"/><circle cx="90" cy="60" r="0.6" fill="url(%23star)"/></svg>') repeat;
    animation: starfield 20s linear infinite;
    opacity: 0.3;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.experiences-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.experiences-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experiences-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.experiences-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.experiences-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.experience-category {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.experience-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.category-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-category:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-category:hover .category-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    color: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.category-content {
    padding: 2rem;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.category-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-highlights {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.highlight-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.experience-metrics {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
}

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

.metric-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.metric-icon {
    font-size: 2.5rem;
    color: #667eea;
    width: 60px;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #b0b0b0;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .experiences-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experiences-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .future-experiences {
        padding: 3rem 0;
    }
    
    .experiences-container {
        padding: 0 1rem;
    }
    
    .experiences-title {
        font-size: 2.2rem;
    }
    
    .experiences-subtitle {
        font-size: 1.1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experience-metrics {
        padding: 2rem;
    }
    
    .category-visual {
        height: 220px;
    }
    
    .category-highlights {
        gap: 0.5rem;
    }
    
    .highlight-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #0a0a0a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.form-subtitle {
    font-size: 1.3rem;
    color: #e0e0ff;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.planning-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.5);
    animation: imageFloat 4s ease-in-out infinite;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #000;
}

.benefit-text h3 {
    color: #00ffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text p {
    color: #b0b0ff;
    line-height: 1.5;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #888;
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

.form-input:focus + .input-glow {
    width: 100%;
}

.form-submit {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.4);
}

.submit-text {
    position: relative;
    z-index: 2;
}

.submit-energy {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.form-submit:hover .submit-energy {
    left: 100%;
}

.form-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: #ff00ff;
}

.particle-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
    background: #ffff00;
}

.energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: energyPulse 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
    100% { text-shadow: 0 0 50px rgba(255, 0, 255, 0.8); }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
}

@keyframes energyPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@media (max-width: 968px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .planning-image {
        max-width: 400px;
        height: 250px;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 4rem 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 1rem 1.2rem;
    }
    
    .form-submit {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}
