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

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

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

.hero-overlay {
    position: relative;
    top: -70vh;
    width: 100%;
    height: 70vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    top: -140vh;
    z-index: 2;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    color: white;
    text-align: left;
}

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

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

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #0056d2 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-image {
        height: 60vh;
    }
    
    .hero-overlay {
        top: -60vh;
        height: 60vh;
    }
    
    .hero-content {
        top: -120vh;
        height: 60vh;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.specialties-showcase {
      padding: 80px 0;
      background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
      position: relative;
    }

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

    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #d35400, #e67e22);
      margin: 20px auto;
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: #7f8c8d;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    .specialty-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
    }

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

    .specialty-image {
      position: relative;
      overflow: hidden;
      height: 220px;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .specialty-card:hover .card-img {
      transform: scale(1.08);
    }

    .specialty-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, #e74c3c, #c0392b);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      z-index: 2;
    }

    .specialty-content {
      padding: 25px;
    }

    .specialty-name {
      font-size: 1.4rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 12px;
    }

    .specialty-description {
      color: #7f8c8d;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .specialty-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: #27ae60;
      background: #ecf0f1;
      display: inline-block;
      padding: 8px 18px;
      border-radius: 25px;
    }

    .specialties-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 40px;
      border-top: 2px solid #ecf0f1;
    }

    .view-menu-btn {
      background: linear-gradient(135deg, #3498db, #2980b9);
      color: white;
      text-decoration: none;
      padding: 15px 35px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .view-menu-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
      color: white;
      text-decoration: none;
    }

    .opening-hours {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #34495e;
      font-weight: 500;
      background: white;
      padding: 12px 25px;
      border-radius: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .opening-hours i {
      color: #e67e22;
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.2rem;
      }
      
      .specialties-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      
      .specialties-footer {
        flex-direction: column;
        text-align: center;
      }
      
      .specialty-card {
        margin: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .specialties-showcase {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 1.9rem;
      }
      
      .specialty-content {
        padding: 20px;
      }
    }

/* Block 3 */
.testimonials-experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-carousel {
    margin-bottom: 80px;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.8);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-quote {
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    opacity: 0.8;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-location {
    font-size: 0.9rem;
    color: #6c757d;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.experience-stats {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #495057;
    font-weight: 500;
}

.stat-label i {
    color: #f7931e;
    font-size: 1.2rem;
}

.social-proof {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.platform-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.review-platform:hover {
    transform: scale(1.02);
}

.platform-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.platform-rating {
    flex: 1;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.rating-visual {
    margin-bottom: 5px;
}

.rating-visual i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 2px;
}

.review-count {
    font-size: 0.9rem;
    color: #6c757d;
}

.cta-review {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
}

.review-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.review-btn::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.review-btn:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .testimonials-experience {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-track {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .social-proof {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .platform-reviews {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-platform {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

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

.form-icon i {
    font-size: 36px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 50px 40px;
}

.form-benefits {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

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

.benefit-item i {
    font-size: 24px;
    color: #667eea;
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.benefit-text h4 {
    margin: 0 0 5px;
    font-weight: 600;
    color: #2d3436;
}

.benefit-text p {
    margin: 0;
    color: #636e72;
    font-size: 14px;
}

.order-form {
    flex: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

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

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

.form-label i {
    margin-right: 8px;
    color: #667eea;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 16px;
    color: #2d3436;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-bottom-color: #667eea;
}

.form-control::placeholder {
    color: #b2bec3;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.form-actions {
    text-align: center;
    padding-top: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

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

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

.form-note {
    margin-top: 20px;
    color: #636e72;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-header i {
    font-size: 24px;
    color: #667eea;
    margin-right: 15px;
}

.info-header h3 {
    margin: 0;
    font-weight: 600;
    color: #2d3436;
}

.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #636e72;
}

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

.detail-row i {
    width: 20px;
    margin-right: 12px;
    color: #667eea;
}

.detail-row a {
    color: #636e72;
    text-decoration: none;
}

.detail-row a:hover {
    color: #667eea;
}

.payment-methods {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
}

.payment-methods h4 {
    margin: 0 0 20px;
    font-weight: 600;
    color: #2d3436;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.payment-icon {
    width: 100%;
    height: 40px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-note {
    margin: 0;
    font-size: 14px;
    color: #636e72;
    text-align: center;
}

@media (max-width: 992px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 40px 0;
    }
    
    .form-wrapper {
        margin: 20px;
        border-radius: 16px;
    }
    
    .form-header {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .form-header {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-benefits {
        padding: 25px;
    }
    
    .benefit-item {
        padding: 15px;
    }
}
