/* Page Banner */
.page-banner {
    /*background: linear-gradient(135deg, rgba(255, 126, 0, 0.9), rgba(255, 85, 0, 0.8)),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMCIgaGVpZ2h0PSIzMDAiIHZpZXdCb3g9IjAgMCAxMjAwIDMwMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTIwMCIgaGVpZ2h0PSIzMDAiIGZpbGw9IiNmZmY1ZjAiLz48Y2lyY2xlIGN4PSI5MDAiIGN5PSIxNTAiIHI9IjE1MCIgZmlsbD0iI2ZmN2UwMCIgb3BhY2l0eT0iMC4xIi8+PGNpcmNsZSBjeD0iMzAwIiBjeT0iMjAwIiByPSIxMDAiIGZpbGw9IiNmZjU1MDAiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg=='); */
    background-size: cover;
    
    background-color: var(--color-primary);
    background-position: center;
    padding: 4rem 0 4rem;
    color: white;
    text-align: center;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    opacity: 0.7;
}

.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Formulas Section */
.formulas-section {
    padding: 4rem 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-dark);
    margin: 0;
}



/* Practical Info Section */
.practical-info {
    padding: 4rem 0;
    background-color: white;
}

.practical-info h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 126, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.info-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--color-dark);
}

.info-block p {
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Block */
.contact-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 126, 0, 0.03), rgba(255, 85, 0, 0.01));
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 126, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.1);
}

.contact-header {
    margin-bottom: 2.5rem;
}

.contact-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
}

.contact-text p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 126, 0, 0.02);
}

.contact-method:hover {
    background: rgba(255, 126, 0, 0.05);
    transform: translateY(-2px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-method-content {
    text-align: left;
}

.contact-method-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--color-dark);
}

.contact-method-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    color: var(--color-dark);
}

.contact-method-note {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-large:hover::before {
    left: 100%;
}

.contact-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.guarantee-icon {
    color: #22c55e;
    flex-shrink: 0;
}

.contact-guarantee p {
    margin: 0;
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 500;
}

.contact-block .contact-image {
  display: none;
}

/* Desktop responsive */
@media (min-width: 768px) {
 
    
   
    .contact-content {
        gap: 3rem;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none;
    }
    
    
    .page-banner {
        padding: 4rem 0 4rem;
    }
}


@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-about {
        margin-bottom: 0;
    }
    
    
    .info-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .contact-content {
        gap: 3rem;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media only screen and (max-width:767px){
	.page-banner {
		padding:3rem 0px;
	}
    .page-banner h1{

    }
}