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

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(13, 110, 253, 0.4) 100%);
  z-index: -1;
}

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

.hero-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

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

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, #0b5ed7 0%, #084298 100%);
}

.hero-cta-button i {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.surface-solutions-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.surface-solutions-showcase::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%230d6efd" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%230d6efd" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%230d6efd" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.surface-solutions-showcase > .container {
    position: relative;
    z-index: 2;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.2);
}

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

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

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

.solution-overlay {
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.9), rgba(108, 117, 125, 0.9));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.solution-icon {
    color: white;
    font-size: 3rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.solution-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-content {
    padding: 2rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #495057;
}

.solution-features i {
    color: #0d6efd;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    color: white;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom, .btn-secondary-custom {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
}

.btn-primary-custom {
    background: white;
    color: #0d6efd;
}

.btn-primary-custom:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #0d6efd;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-image-wrapper {
        height: 200px;
    }
    
    .solution-content {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom, .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .surface-solutions-showcase {
        padding: 3rem 0;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .solution-features li {
        font-size: 0.9rem;
    }
}

/* Block 3 */
.transformation-timeline {
padding: 5rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
overflow: hidden;
}

.timeline-main-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 1rem;
}

.timeline-main-subtitle {
font-size: 1.2rem;
color: #6c757d;
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}

.timeline-wrapper {
position: relative;
margin: 4rem 0;
}

.timeline-line {
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(to bottom, #667eea, #764ba2);
transform: translateX(-50%);
z-index: 1;
}

.timeline-card {
position: relative;
background: white;
border-radius: 20px;
padding: 2rem;
margin-bottom: 3rem;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-card:hover {
transform: translateY(-8px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.timeline-left {
margin-right: 3rem;
}

.timeline-right {
margin-left: 3rem;
}

.timeline-number {
position: absolute;
top: 2rem;
right: -3.5rem;
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
z-index: 2;
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.timeline-right .timeline-number {
left: -3.5rem;
right: auto;
}

.timeline-image-container {
position: relative;
border-radius: 15px;
overflow: hidden;
margin-bottom: 1.5rem;
}

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

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

.timeline-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: rgba(13, 110, 253, 0.9);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
backdrop-filter: blur(10px);
}

.timeline-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 1rem;
}

.timeline-description {
color: #6c757d;
line-height: 1.6;
margin-bottom: 1.5rem;
}

.timeline-features {
list-style: none;
padding: 0;
margin-bottom: 1.5rem;
}

.timeline-features li {
padding: 0.5rem 0;
color: #495057;
display: flex;
align-items: center;
}

.timeline-features i {
color: #667eea;
margin-right: 0.75rem;
font-size: 1.1rem;
}

.timeline-duration {
background: rgba(102, 126, 234, 0.1);
padding: 0.75rem 1.25rem;
border-radius: 25px;
color: #667eea;
font-weight: 600;
font-size: 0.9rem;
display: inline-block;
}

.success-stats {
background: white;
border-radius: 20px;
padding: 3rem 2rem;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
margin-top: 2rem;
}

.stat-item {
text-align: center;
padding: 1rem;
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #667eea;
display: block;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1rem;
color: #6c757d;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}

.timeline-cta-button {
display: inline-block;
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.timeline-cta-button:hover {
color: white;
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

@media (max-width: 991px) {
.timeline-line {
left: 30px;
}

.timeline-left, .timeline-right {
margin-left: 4rem;
margin-right: 0;
}

.timeline-number {
left: -3.5rem;
right: auto;
}

.timeline-main-title {
font-size: 2rem;
}

.stat-number {
font-size: 2rem;
}
}

@media (max-width: 768px) {
.transformation-timeline {
padding: 3rem 0;
}

.timeline-card {
padding: 1.5rem;
margin-bottom: 2rem;
}

.timeline-image {
height: 200px;
}

.success-stats {
padding: 2rem 1rem;
}

.timeline-main-title {
font-size: 1.8rem;
}

.timeline-main-subtitle {
font-size: 1.1rem;
}
}

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

.premium-booking-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.premium-booking-form::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(102, 126, 234, 0.06) 0%, transparent 60%);
    transform: rotate(20deg);
    z-index: 1;
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.consultation-form {
    padding-right: 30px;
}

.form-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 35px;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-label i {
    color: #0d6efd;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

.form-underline {
    height: 3px;
    background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: -2px;
    position: relative;
    z-index: 2;
}

.form-control:focus + .form-underline {
    transform: scaleX(1);
}

.form-benefits {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 35px;
    border-left: 4px solid #0d6efd;
}

.benefits-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #495057;
}

.benefit-item i {
    color: #28a745;
    font-size: 16px;
}

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

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

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

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

.consultation-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.preview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.preview-content {
    position: relative;
    padding: 25px;
    background: white;
}

.price-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 10px;
}

.price-discount {
    font-size: 28px;
    font-weight: 800;
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.guarantee-seal i {
    color: #ffd700;
    font-size: 24px;
}

.guarantee-text strong {
    display: block;
    color: #1a1a2e;
    font-size: 14px;
}

.guarantee-text span {
    color: #6c757d;
    font-size: 13px;
}

.trust-indicators {
    display: grid;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #0d6efd;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-item i {
    color: #0d6efd;
    font-size: 16px;
}

@media (max-width: 992px) {
    .consultation-form {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .booking-card {
        padding: 30px 25px;
    }
    
    .booking-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-booking-form {
        padding: 60px 0;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
}
