
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 75vh;
    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%;
    padding: 60px 0;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-action {
    margin-top: 2rem;
}

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

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.clothing-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f1f4f8 100%);
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.categories-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 20px auto;
    border-radius: 2px;
}

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

.category-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

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

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

.category-card:hover .card-img {
    transform: scale(1.05);
}

.category-content {
    padding: 30px 25px;
    position: relative;
}

.category-icon {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.category-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 15px 0;
}

.category-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-items li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #495057;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.category-items li:before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.category-items li:last-child {
    border-bottom: none;
}

.category-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-category {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.4);
    color: #5a67d8;
}

@media (max-width: 768px) {
    .clothing-categories {
        padding: 60px 0;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .categories-subtitle {
        font-size: 1.1rem;
    }
    
    .category-image {
        height: 180px;
    }
    
    .category-content {
        padding: 25px 20px;
    }
    
    .category-cta {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .categories-title {
        font-size: 1.8rem;
    }
    
    .category-image {
        height: 160px;
    }
    
    .btn-category {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

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

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

.timeline-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-wrapper {
    position: relative;
    margin-top: 60px;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    top: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.left-item .timeline-marker {
    right: -30px;
}

.right-item .timeline-marker {
    left: -30px;
}

.day-number {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-right: 60px;
}

.right-item .timeline-card {
    margin-right: 0;
    margin-left: 60px;
}

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

.card-header {
    padding: 25px 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.day-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.time-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.timeline-image {
    height: 220px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 30px;
}

.timeline-description {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.timeline-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-checklist li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.timeline-benefits {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.benefit-icon i {
    font-size: 1.75rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

.timeline-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.timeline-cta .cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.timeline-cta .cta-text {
    font-size: 1.125rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-timeline {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-timeline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: #5a67d8;
    text-decoration: none;
}

@media (max-width: 991px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
    
    .timeline-card {
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .weekly-timeline {
        padding: 60px 0;
    }
    
    .timeline-wrapper {
        margin-top: 40px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .day-number {
        font-size: 1.1rem;
    }
    
    .timeline-card {
        margin-left: 60px !important;
    }
    
    .card-header {
        padding: 20px 25px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .day-title {
        font-size: 1.3rem;
    }
    
    .timeline-image {
        height: 180px;
    }
    
    .card-content {
        padding: 25px;
    }
    
    .timeline-benefits {
        padding: 40px 30px;
        margin-top: 40px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-cta {
        padding: 30px 25px;
    }
    
    .timeline-cta .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .timeline-line {
        left: 25px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .day-number {
        font-size: 1rem;
    }
    
    .timeline-card {
        margin-left: 50px !important;
    }
    
    .card-header {
        padding: 15px 20px;
    }
    
    .day-title {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .timeline-benefits {
        padding: 30px 20px;
    }
}

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

.order-form-section::before {
  content: '';
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="10" height="10"><circle cx="5" cy="5" r="1" fill="%23e3f2fd" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

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

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

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

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

.order-form-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.card-body {
  padding: 48px;
}

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

.form-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  font-size: 1rem;
}

.form-icon {
  margin-right: 10px;
  color: #667eea;
  width: 16px;
}

.form-input {
  height: 56px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

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

.service-options {
  margin: 48px 0;
  padding: 32px;
  background: #f8fafc;
  border-radius: 16px;
}

.options-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 24px;
  text-align: center;
}

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

.package-option {
  position: relative;
}

.package-radio {
  display: none;
}

.package-label {
  display: block;
  padding: 24px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-radio:checked + .package-label {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.package-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.package-price {
  font-size: 1.3rem;
  font-weight: 700;
}

.package-description {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.benefits-preview {
  margin: 48px 0;
}

.benefits-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 32px;
  text-align: center;
}

.benefits-list {
  display: grid;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
}

.benefit-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.benefit-desc {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-actions {
  text-align: center;
  margin-top: 40px;
}

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

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

.submit-icon {
  font-size: 1.2rem;
}

.privacy-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-preview {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
  text-align: center;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 4px solid #f0f4ff;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  font-weight: 600;
  color: #667eea;
  font-style: normal;
}

@media (max-width: 768px) {
  .card-body {
    padding: 32px 24px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-image {
    align-self: center;
  }
}

@media (max-width: 576px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .header-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
