
/* 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.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
    padding: 80px 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

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

.reset-corner-form .form-control,
.reset-corner-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.goals-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.form-check {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-check:hover {
    background: #e9ecef;
}

.form-check-input:checked ~ .form-check-label {
    color: #667eea;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-submit-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-submit-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .btn-primary-custom {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .goals-checkboxes {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 200px;
        justify-content: center;
    }
}

/* Block 2 */
.morning-essentials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff4e6 100%);
}

.essentials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.essentials-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 40px;
}

.essentials-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.essential-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.essential-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.essential-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.essential-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.essential-info p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.essentials-visual {
    padding-left: 30px;
}

.visual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.visual-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-visual {
    grid-row: span 2;
}

.visual-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.visual-item:hover .visual-overlay {
    transform: translateY(0);
}

.visual-tag {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.benefits-highlight {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #6c63ff;
    display: block;
}

.stat-text {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 500;
}

@media (max-width: 991px) {
    .essentials-visual {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .essentials-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .morning-essentials {
        padding: 60px 0;
    }
    
    .essential-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .essential-item:hover {
        transform: translateY(-5px);
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .main-visual {
        grid-row: span 1;
    }
    
    .benefits-highlight {
        flex-direction: column;
        gap: 20px;
    }
}

/* Block 3 */
.mindful-spaces-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
}

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

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.spaces-gallery {
    margin-bottom: 80px;
}

.space-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

.space-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(108, 99, 255, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.space-details {
    padding: 25px;
}

.space-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.space-description {
    color: #718096;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #edf2ff;
    color: #6c63ff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.inspiration-grid {
    margin-top: 40px;
}

.inspiration-content {
    padding-right: 30px;
}

.inspiration-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.inspiration-text {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ritual-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ritual-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.step-content p {
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

.inspiration-visual {
    padding-left: 30px;
}

.main-inspiration-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.inspiration-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.inspiration-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding: 30px;
    color: white;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay-content i {
    font-size: 1.5rem;
    color: #ff6b9d;
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 500;
}

.inspiration-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

@media (max-width: 992px) {
    .inspiration-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .inspiration-visual {
        padding-left: 0;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .inspiration-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mindful-spaces-showcase {
        padding: 60px 0;
    }
    
    .ritual-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .inspiration-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 140px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6c63ff 0%, #667eea 100%);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

.form-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(108, 99, 255, 0.08);
}

.form-header {
    background: linear-gradient(135deg, #6c63ff 0%, #667eea 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.header-icon i {
    font-size: 24px;
    color: white;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

.form-content {
    padding: 40px 30px;
}

.input-group-wrapper {
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c63ff;
    font-size: 16px;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-input:focus {
    border-color: #6c63ff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

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

.form-benefits {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: #22c55e;
    margin-right: 10px;
    font-size: 16px;
}

.submit-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #6c63ff 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

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

.button-arrow {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

.form-guarantee {
    text-align: center;
    padding: 20px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.guarantee-badge {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    filter: hue-rotate(90deg) saturate(1.2);
}

.guarantee-text {
    font-size: 13px;
    color: #16a34a;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .form-input {
        padding: 14px 14px 14px 44px;
        font-size: 16px;
    }
    
    .submit-button {
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-header {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .form-content {
        padding: 25px 15px;
    }
}
