
/* 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(44, 24, 16, 0.8) 0%, rgba(62, 39, 35, 0.85) 50%, rgba(27, 15, 10, 0.9) 100%);
            backdrop-filter: blur(1px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 4rem 0;
        }

        .hero-text {
            max-width: 600px;
            text-align: center;
            margin: 0 auto;
            color: #ffffff;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            background: linear-gradient(135deg, #ffffff 0%, #D4A574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            color: #f5f5f5;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            font-weight: 400;
        }

        .hero-cta-button {
            background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
            color: #2C1810;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
            background: linear-gradient(135deg, #E5B684 0%, #C9A578 100%);
        }

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

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

        @media (max-width: 768px) {
            .hero-banner {
                min-height: 80vh;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
                padding: 0 1rem;
            }

            .hero-cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }

            .hero-content {
                padding: 2rem 0;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 0.95rem;
            }
            
            .hero-cta-button {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
        }

/* Block 2 */
.featured-equipment {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F8F5F2 0%, #E8E2D9 100%);
  overflow: hidden;
}

.equipment-content {
  padding: 2rem 0;
}

.equipment-badge {
  background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
  color: #2C1810;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.equipment-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C1810;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.equipment-description {
  font-size: 1.125rem;
  color: #5D4037;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.equipment-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-icon {
  background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.feature-icon i {
  font-size: 1.25rem;
}

.feature-text h4 {
  color: #2C1810;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.feature-text p {
  color: #5D4037;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.equipment-cta {
  background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.equipment-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 68, 35, 0.4);
  background: linear-gradient(135deg, #7A4E29 0%, #4A2F26 100%);
}

.equipment-showcase {
  position: relative;
  padding: 2rem;
}

.primary-equipment {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.equipment-image-main {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.equipment-image-main:hover {
  transform: scale(1.02);
}

.secondary-equipment {
  position: relative;
  z-index: 1;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.equipment-image-small {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.equipment-image-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .equipment-title {
    font-size: 2rem;
  }
  
  .featured-equipment {
    padding: 3rem 0;
  }
  
  .equipment-showcase {
    margin-top: 2rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .equipment-title {
    font-size: 1.75rem;
  }
  
  .equipment-description {
    font-size: 1rem;
  }
  
  .feature-item {
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .equipment-image-small {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .equipment-title {
    font-size: 1.5rem;
  }
  
  .equipment-cta {
    width: 100%;
    padding: 1rem;
  }
}

/* Block 3 */
.brewing-techniques-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede7dc 100%);
    position: relative;
}

.brewing-techniques-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('coffee-beans-pattern.png');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4A574 0%, #C19660 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #6B4423;
    line-height: 1.6;
    margin: 0;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.technique-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.technique-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.technique-media {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.technique-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(44, 24, 16, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.technique-content {
    padding: 2rem;
}

.technique-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 1rem;
}

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

.technique-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

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

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4A574;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B4423;
    font-weight: 500;
}

.technique-button {
    width: 100%;
    background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.technique-button:hover {
    background: linear-gradient(135deg, #7A4D28 0%, #4A2E26 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.3);
}

.brewing-insights {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.08);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.insight-icon {
    background: linear-gradient(135deg, #D4A574 0%, #C19660 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insight-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.5rem;
}

.insight-text p {
    color: #6B4423;
    line-height: 1.6;
    margin: 0;
}

.insights-cta {
    text-align: center;
}

.insights-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insights-cta p {
    color: #6B4423;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.insights-button {
    background: linear-gradient(135deg, #D4A574 0%, #C19660 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.insights-button:hover {
    background: linear-gradient(135deg, #E5B684 0%, #D4A574 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .techniques-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .brewing-insights {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }
    
    .insight-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .brewing-techniques-showcase {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .technique-content {
        padding: 1.5rem;
    }
    
    .technique-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .brewing-insights {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .insights-cta h3 {
        font-size: 1.5rem;
    }
}

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

.order-form-section::before {
    content: '';
    background-image: url('coffee-beans-pattern.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.form-wrapper {
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6B4423 0%, #3E2723 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.form-benefits {
    padding-right: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    background: linear-gradient(135deg, #D4A574 0%, #B8935F 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
}

.benefit-content h4 {
    color: #2C1810;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.order-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.order-form {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    color: #2C1810;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: #D4A574;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    margin-top: 0.75rem;
}

.kit-selection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.selection-title {
    color: #2C1810;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.kit-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.kit-option {
    position: relative;
}

.kit-radio {
    display: none;
}

.kit-label {
    display: block;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kit-radio:checked + .kit-label {
    border-color: #D4A574;
    background: linear-gradient(135deg, #D4A574 0%, #B8935F 100%);
    color: #fff;
}

.kit-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.kit-name {
    font-weight: 600;
    font-size: 1rem;
}

.kit-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.kit-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-features {
    margin: 1.5rem 0;
}

.feature-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
}

.feature-check i {
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #D4A574 0%, #B8935F 100%);
    color: #fff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

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

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

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.security-notice i {
    color: #28a745;
}

@media (max-width: 991px) {
    .form-benefits {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 0;
    }
    
    .order-form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
}
