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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.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.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cta-icon {
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-icon {
    transform: translateX(3px);
}

.quote-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.form-check-label a {
    color: #667eea;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-text {
        padding: 1rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Block 2 */
.ai-entertainment-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.ai-content-wrapper {
    padding-right: 2rem;
}

.ai-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.ai-section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ai-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ai-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ai-feature-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.4;
}

.ai-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.ai-main-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.ai-floating-stats {
    position: absolute;
    top: 20%;
    right: -10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-stat-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    min-width: 120px;
    animation: float 3s ease-in-out infinite;
}

.ai-stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.ai-stat-card:nth-child(3) {
    animation-delay: 1s;
}

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

.ai-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.ai-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.ai-tech-showcase {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-tech-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

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

.ai-tech-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ai-tech-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

.ai-tech-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.ai-tech-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ai-tech-item p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .ai-content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .ai-entertainment-showcase {
        padding: 3rem 0;
    }
    
    .ai-section-title {
        font-size: 1.8rem;
    }
    
    .ai-floating-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .ai-stat-card {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }
    
    .ai-tech-showcase {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .ai-tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Block 3 */
.metaverse-experiences {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.metaverse-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metaverse-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.metaverse-showcase {
    display: grid;
    place-items: center;
    min-height: 500px;
}

.metaverse-hero-image {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.metaverse-hero-image:hover {
    transform: scale(1.05) rotateY(5deg);
}

.floating-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

.floating-element img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

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

.metaverse-content {
    padding: 2rem 0;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.experience-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-image-container {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-overlay {
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

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

.card-icon {
    font-size: 3rem;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .metaverse-experiences {
        padding: 4rem 0;
    }
    
    .metaverse-title {
        font-size: 2.2rem;
    }
    
    .metaverse-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-elements {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .floating-element img {
        width: 80px;
        height: 80px;
    }
    
    .experience-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-description {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .metaverse-showcase {
        margin-bottom: 3rem;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.order-form-section .container {
    position: relative;
    z-index: 2;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.order-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    overflow: hidden;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #0d6efd;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.15);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.form-input:focus + .input-border {
    transform: scaleX(1);
}

.form-input:focus ~ .input-icon {
    color: #0d6efd;
    transform: translateY(-50%) scale(1.1);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.form-actions {
    margin-top: 2.5rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

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

.button-icon {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

.button-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover .button-animation {
    opacity: 1;
}

.animation-circle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 2s infinite ease-in-out;
}

.animation-circle:nth-child(1) {
    left: -20px;
    animation-delay: 0s;
}

.animation-circle:nth-child(2) {
    left: 0;
    animation-delay: 0.3s;
}

.animation-circle:nth-child(3) {
    left: 20px;
    animation-delay: 0.6s;
}

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

.security-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 10px;
    border-left: 4px solid #28a745;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.security-icon {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.security-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
}

.form-benefits {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-steps {
    margin-bottom: 2rem;
}

.benefit-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f8f9fa;
}

.benefit-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.testimonial-preview {
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
    text-align: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #0d6efd;
}

.testimonial-quote {
    font-style: italic;
    color: #495057;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-author strong {
    display: block;
    color: #212529;
    font-size: 0.9rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .order-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-input {
        padding: 0.9rem 0.9rem 0.9rem 2.5rem;
    }
    
    .input-icon {
        left: 0.9rem;
        font-size: 1rem;
    }
}
