
/* Block 1 */
.hero-banner {
      position: relative;
      background-image: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(211, 84, 0, 0.1) 100%), url('pastry-kitchen-background.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    
    .hero-overlay {
      background: linear-gradient(135deg, rgba(45, 52, 54, 0.8) 0%, rgba(99, 110, 114, 0.7) 100%);
      backdrop-filter: blur(1px);
      z-index: 1;
    }
    
    .hero-banner::before {
      content: '';
      background: radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
      z-index: 2;
    }
    
    .hero-banner .container {
      position: relative;
      z-index: 3;
    }
    
    .hero-content {
      color: white;
      animation: fadeInUp 1s ease-out;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-description {
      font-size: 1.25rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      max-width: 600px;
    }
    
    .hero-actions {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    
    .btn-primary-custom {
      background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
      color: white;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
      border: 2px solid transparent;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
      color: white;
    }
    
    .btn-primary-custom::after {
      content: '\f054';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      transition: transform 0.3s ease;
    }
    
    .btn-primary-custom:hover::after {
      transform: translateX(3px);
    }
    
    .btn-secondary-custom {
      background: transparent;
      color: white;
      padding: 1rem 2rem;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    
    .btn-secondary-custom:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.6);
      color: white;
      transform: translateY(-2px);
    }
    
    .hero-features {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: rgba(255,255,255,0.9);
      font-size: 0.95rem;
      font-weight: 500;
    }
    
    .feature-item i {
      color: #f39c12;
      font-size: 1.2rem;
      width: 20px;
      text-align: center;
    }
    
    .hero-image-container {
      position: relative;
      animation: fadeInRight 1s ease-out 0.3s both;
    }
    
    .hero-image {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }
    
    .hero-image:hover {
      transform: scale(1.05);
    }
    
    .floating-badge {
      background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
      animation: float 3s ease-in-out infinite;
      margin-top: -80px;
      margin-left: -30px;
      z-index: 4;
      position: relative;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }
    
    @media (max-width: 991px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-description {
        font-size: 1.1rem;
      }
      
      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .btn-primary-custom,
      .btn-secondary-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
      
      .hero-features {
        justify-content: center;
        gap: 1rem;
      }
      
      .feature-item {
        font-size: 0.85rem;
      }
    }
    
    @media (max-width: 575px) {
      .hero-banner {
        background-attachment: scroll;
        padding: 2rem 0;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
      
      .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }
    }

/* Block 2 */
.premium-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.showcase-content {
    padding-right: 40px;
}

.showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
}

.showcase-features {
    margin-bottom: 40px;
}

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

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d63384, #e91e63);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.4rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.showcase-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-showcase {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(214, 51, 132, 0.3);
}

.btn-showcase:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(214, 51, 132, 0.4);
    color: white;
}

.cta-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.showcase-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover .gallery-main-image {
    transform: scale(1.05);
}

.gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.thumbnail-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 15px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.1);
}

.thumbnail-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
}

.showcase-stats {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 60px 0;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@media (max-width: 991px) {
    .showcase-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .showcase-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .premium-showcase {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .gallery-main-image {
        height: 300px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .showcase-stats {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .showcase-cta {
        text-align: center;
        align-items: center;
    }
}

/* Block 3 */
.testimonials-reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-reviews::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23dee2e6" opacity="0.4"/></pattern></defs><rect width="100" height="20" fill="url(%23dots)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.reviews-grid {
    position: relative;
    z-index: 2;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.featured-review {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border: 2px solid #667eea;
}

.featured-label {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 15px 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.client-avatar {
    position: relative;
    flex-shrink: 0;
}

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

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.client-info {
    flex: 1;
}

.client-name {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

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

.client-rating i {
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.review-content {
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    color: #e9ecef;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.review-footer {
    border-top: 1px solid #f8f9fa;
    padding-top: 15px;
}

.review-likes {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
}

.review-likes i {
    color: #dc3545;
}

.horizontal-review {
    display: flex;
    flex-direction: column;
    height: auto;
}

.reviews-summary {
    margin-top: 80px;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
    margin: 0 2px;
}

.rating-text {
    color: #6c757d;
    font-size: 14px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    font-weight: 600;
    color: #495057;
    width: 100%;
    justify-content: center;
}

.badge-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.review-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-review-primary,
.btn-review-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-review-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-review-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-review-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-review-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .reviews-summary {
        padding: 30px 20px;
    }
    
    .trust-badges {
        margin: 30px 0;
    }
}

@media (max-width: 768px) {
    .testimonials-reviews {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviews-summary .row {
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badge-item {
        width: auto;
        min-width: 200px;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="2" fill="%23dee2e6" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23dee2e6" opacity="0.4"/><circle cx="40" cy="80" r="1.5" fill="%23dee2e6" opacity="0.3"/></svg>');
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.order-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.progress-step span {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
}

.progress-step.active span {
    color: #495057;
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label i {
    color: #667eea;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:valid {
    border-color: #28a745;
    background: white;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.form-input:valid + .input-icon {
    opacity: 1;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-right: 15px;
}

.form-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 14px;
    font-weight: 600;
}

.feature-item i {
    color: #28a745;
}

.form-actions {
    text-align: center;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.privacy-note {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contact-alternatives {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f1f3f5;
}

.alternative-header h4 {
    text-align: center;
    color: #495057;
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 220px;
}

.contact-method:hover {
    border-color: #667eea;
    background: #f8f9fa;
    color: #495057;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
}

.method-value {
    font-size: 14px;
    font-weight: 700;
    color: #495057;
}

.form-sidebar {
    padding-left: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-name {
    font-weight: 700;
    color: #495057;
    font-size: 14px;
}

.author-event {
    font-size: 12px;
    color: #6c757d;
}

.process-info {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.process-title {
    color: #495057;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #495057;
    margin-bottom: 5px;
}

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

@media (max-width: 768px) {
    .order-form-section {
        padding: 50px 0;
    }

    .form-title {
        font-size: 2rem;
    }

    .order-form-container {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-features {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-methods {
        flex-direction: column;
    }

    .progress-line {
        width: 60px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .form-progress {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        width: 2px;
        height: 30px;
    }

    .progress-step {
        flex-direction: row;
        gap: 15px;
    }
}
