/* Pages CSS - Estilos para páginas individuais */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Service Details */
.service-details {
    padding: 6rem 0;
    background: var(--white);
}

.service-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.standard-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: row;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.standard-image {
    width: 300px;
    min-width: 300px;
    overflow: hidden;
}

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

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

.standard-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.standard-content h4 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.standard-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .standard-card {
        flex-direction: column;
    }
    
    .standard-image {
        width: 100%;
        height: 200px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #b91c1c;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: #b91c1c;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-align: justify;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.service-card li {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .service-card h3 {
        font-size: 0.95rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .service-card li {
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.area-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.area-card h4 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-card ul {
    list-style: none;
    text-align: left;
}

.area-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.area-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Process Section */
.process-section {
    margin-bottom: 4rem;
}

.process-section h3 {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    flex: 1;
    min-width: 0;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.step-icon {
    width: 40px !important;
    height: 40px !important;
    background: #dc2626 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

.step-icon i {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    font-size: 1rem !important;
}

.step-icon::before {
    display: none !important;
}

.step:hover .step-icon {
    background: #b91c1c;
    transform: scale(1.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    width: 100%;
}

.step-content h4 {
    font-size: 0.85rem;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.3;
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 1 1 calc(33.333% - 0.8rem);
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .step {
        flex: 1 1 calc(50% - 0.8rem);
    }
}

@media (max-width: 480px) {
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        flex: 1 1 100%;
    }
}

/* Approach Section */
.approach-section {
    margin-bottom: 4rem;
}

.approach-section h3 {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.approach-steps {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: space-between;
}

.approach-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    border: 2px solid var(--primary-red);
}

.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #b91c1c;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.approach-step:hover .step-icon {
    background: #b91c1c;
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .approach-steps {
        flex-wrap: wrap;
    }
    
    .approach-step {
        flex: 1 1 calc(50% - 1.5rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .approach-steps {
        flex-direction: column;
    }
    
    .approach-step {
        flex: 1 1 100%;
    }
}

/* Training Categories */
.training-categories {
    margin-bottom: 4rem;
}

.training-categories h3 {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.training-card {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.training-card:nth-child(1),
.training-card:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.training-card:nth-child(2),
.training-card:nth-child(5) {
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.training-card:nth-child(3),
.training-card:nth-child(6) {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    border-color: #fde68a;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.training-card:nth-child(1):hover,
.training-card:nth-child(4):hover {
    background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
}

.training-card:nth-child(2):hover,
.training-card:nth-child(5):hover {
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
}

.training-card:nth-child(3):hover,
.training-card:nth-child(6):hover {
    background: linear-gradient(135deg, #ffffff 0%, #fde68a 100%);
}

.training-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.training-card:nth-child(1) .training-icon,
.training-card:nth-child(4) .training-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.training-card:nth-child(2) .training-icon,
.training-card:nth-child(5) .training-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.training-card:nth-child(3) .training-icon,
.training-card:nth-child(6) .training-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.training-card:hover .training-icon {
    transform: scale(1.1);
}

.training-card h4 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.training-card p {
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.training-card ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.training-card li {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.training-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.training-card:nth-child(1) li::before,
.training-card:nth-child(4) li::before {
    color: #ef4444;
}

.training-card:nth-child(2) li::before,
.training-card:nth-child(5) li::before {
    color: #3b82f6;
}

.training-card:nth-child(3) li::before,
.training-card:nth-child(6) li::before {
    color: #fbbf24;
}

.training-image-section {
    text-align: center;
    margin-top: 3rem;
}

.training-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: 1fr;
    }
}

/* Training Methods */
.training-methods {
    margin-bottom: 4rem;
}

.training-methods h3 {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.methods-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: space-between;
}

.method-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    box-shadow: var(--shadow);
    border: 1px solid #fef3c7;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scale(1.1);
}

.method-item h4 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.method-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .methods-grid {
        flex-wrap: wrap;
    }
    
    .method-item {
        flex: 1 1 calc(50% - 1.5rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .methods-grid {
        flex-direction: column;
    }
    
    .method-item {
        flex: 1 1 100%;
    }
}

/* Impact Section */
.impact-section {
    margin-bottom: 4rem;
}

.impact-section h3 {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.impact-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-10px);
}

.impact-circle {
    width: 130px;
    height: 130px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 3px solid var(--primary-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.impact-item:hover .impact-circle {
    box-shadow: var(--shadow-lg);
    border-color: #b91c1c;
    background: var(--light-red);
}

.impact-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    display: block;
    transition: all 0.3s ease;
}

.impact-item:hover i {
    transform: scale(1.2);
    color: #b91c1c;
}

.impact-item h4 {
    font-size: 0.95rem;
    color: var(--primary-red);
    font-weight: 600;
    line-height: 1.2;
}

.impact-item p {
    color: var(--text-light);
    line-height: 1.3;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .impact-grid {
        gap: 1.5rem;
    }
    
    .impact-item {
        width: 130px;
    }
    
    .impact-circle {
        width: 110px;
        height: 110px;
    }
    
    .impact-item i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .impact-grid {
        gap: 1.5rem;
    }
    
    .impact-item {
        width: 120px;
    }
    
    .impact-circle {
        width: 100px;
        height: 100px;
    }
    
    .impact-item i {
        font-size: 1.8rem;
    }
    
    .impact-item h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        gap: 1rem;
    }
    
    .impact-item {
        width: 100px;
    }
    
    .impact-circle {
        width: 90px;
        height: 90px;
    }
    
    .impact-item i {
        font-size: 1.5rem;
    }
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 4rem;
}

.benefits-section h3 {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        flex-wrap: wrap;
    }
    
    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
    }
    
    .benefit-item {
        flex: 1 1 100%;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-red);
    border-radius: 20px;
    color: var(--white);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ISO Image Section */
.iso-image-section {
    padding: 3rem 0;
    background: var(--white);
}

.iso-image-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.iso-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.iso-main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.iso-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.iso-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.iso-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.iso-badge {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.iso-badge:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.2rem;
}

.iso-badge h4 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.iso-badge p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive ISO Section */
@media (max-width: 768px) {
    .iso-image-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iso-main-image img {
        height: 300px;
    }
    
    .iso-overlay {
        padding: 1.5rem;
    }
    
    .iso-overlay h3 {
        font-size: 1.5rem;
    }
    
    .iso-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .iso-badge {
        padding: 1rem;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .iso-badges {
        grid-template-columns: 1fr;
    }
}
/* Contact Page Styles - Modern Design */
.contact-section {
    padding: 4rem 0 2rem;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 150px);
}

.contact-modern-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Contact Form - Left Side with Gradient */
.contact-form-modern {
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.contact-form-modern h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 0.8rem 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: transparent;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--white);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem);
    font-size: 0.85rem;
    color: var(--white);
}

.btn-submit-modern {
    background: #2563eb;
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.btn-submit-modern:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Contact Info - Right Side */
.contact-info-modern {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.contact-info-modern h3 {
    color: var(--gray-900);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc2626;
}

.contact-intro {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.info-icon-modern {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.info-icon-modern i {
    font-size: 1.1rem;
    color: var(--gray-700);
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    color: var(--gray-900);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Modern Contact Form */
@media (max-width: 768px) {
    .contact-modern-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .contact-form-modern,
    .contact-info-modern {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-modern h3,
    .contact-info-modern h3 {
        font-size: 1.5rem;
    }
    
    .contact-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item-modern {
        gap: 0.8rem;
    }
    
    .info-icon-modern {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .info-icon-modern i {
        font-size: 1rem;
    }
}

/* Old styles (kept for backward compatibility if needed) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--white);
    padding: 0.8rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 10cm;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
}

.contact-items-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 5px;
    transition: all 0.2s ease;
}

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

.contact-item:hover {
    background: var(--light-red);
}

.contact-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.8rem;
    color: var(--primary-red);
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-dark);
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0.05rem;
}

.contact-details span {
    color: var(--text-light);
    font-size: 0.7rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.contact-form-section {
    margin-bottom: 2rem;
}

.contact-form-section h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 50%, #fef3c7 100%);
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #fecaca;
    max-height: 10cm;
    height: 10cm;
    display: flex;
    flex-direction: column;
}

.contact-form-container h3 {
    font-size: 0.95rem;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.05rem;
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.25rem 0.4rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: border-color 0.2s ease;
    background: var(--white);
    line-height: 1.1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    min-height: 30px;
    max-height: 50px;
    resize: vertical;
    line-height: 1.2;
}

.submit-btn {
    padding: 0.35rem 0.7rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
    flex-shrink: 0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.office-hours {
    text-align: center;
}

.office-hours h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hours-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 15px;
}

.hours-item h4 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hours-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Budget Page Styles */
.budget-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.budget-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 15px;
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.services-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: var(--light-red);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-red);
}

.form-submit {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-red);
    border-radius: 15px;
    color: var(--white);
}

.form-submit .submit-btn {
    background: var(--white);
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.form-submit .submit-btn:hover {
    background: var(--gray-100);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.budget-info {
    margin-top: 4rem;
    text-align: center;
}

.budget-info h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.info-item h4 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
}

/* Services Page Styles */
.services-overview-page {
    padding: 4rem 0;
    background: var(--gray-50);
}

.service-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-detailed-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detailed-card:hover::before {
    transform: scaleX(1);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features,
.service-benefits {
    margin-bottom: 1.5rem;
}

.service-features h4,
.service-benefits h4 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-features li,
.service-benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-red);
    font-size: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-benefits li {
    padding-left: 1rem;
    position: relative;
}

.service-benefits li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-actions .btn-primary,
.service-actions .btn-secondary {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: var(--primary-red);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* Responsive Services Page */
@media (max-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detailed-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-detailed-card h3 {
        font-size: 1.3rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn-primary,
    .service-actions .btn-secondary {
        flex: none;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-detailed-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .service-detailed-card h3 {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-features li,
    .service-benefits li {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Budget Page Styles */
.budget-form-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.budget-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.budget-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: fit-content;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.budget-info h2 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-points {
    margin-bottom: 2rem;
    flex: 1;
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-point i {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

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

.info-point p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.contact-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.budget-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: fit-content;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.budget-form-container h2 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 600;
}

.budget-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.budget-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.budget-form textarea {
    resize: vertical;
    min-height: 100px;
}

.budget-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
}

/* Responsive Budget Page */
@media (max-width: 768px) {
    .budget-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .budget-info,
    .budget-form-container {
        padding: 1.5rem;
    }
    
    .budget-info h2,
    .budget-form-container h2 {
        font-size: 1.5rem;
    }
    
    .info-point {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .budget-form-section {
        padding: 2rem 0;
    }
    
    .budget-info,
    .budget-form-container {
        padding: 1rem;
    }
    
    .budget-info h2,
    .budget-form-container h2 {
        font-size: 1.3rem;
    }
    
    .info-point h3 {
        font-size: 1rem;
    }
    
    .info-point p {
        font-size: 0.85rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .budget-form input,
    .budget-form select,
    .budget-form textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-info-section h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.contact-info-item:hover {
    background: var(--light-red);
    border-color: var(--primary-red);
}

.contact-info-item .contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.contact-details .whatsapp-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details .whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.contact-info-section .office-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.contact-info-section .office-hours h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info-section .hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-info-section .hours-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-section .hours-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.contact-info-section .hours-item h4 {
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-section .hours-item p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.contact-form-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: fit-content;
    border: 1px solid var(--gray-200);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-checkbox {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .budget-form-container {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .hours-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-item .contact-icon {
        margin: 0 auto;
    }
    
    .contact-info-section .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-intro h2 {
        font-size: 2rem;
    }
    
    .standards-grid,
    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps,
    .approach-steps,
    .methods-grid,
    .impact-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step,
    .approach-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-details {
        padding: 4rem 0;
    }
    
    .standard-card,
    .service-card,
    .area-card {
        padding: 1.5rem;
    }
    
    .step,
    .approach-step {
        padding: 1.5rem;
    }
}

/* Budget Page Improvements */
.budget-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.budget-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.budget-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.budget-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-section h3 i {
    margin-right: 0.5rem;
    color: var(--primary-red);
}

.section-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
}

/* Alternative Contact Section */
.alternative-contact {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.alternative-contact h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alternative-contact h3 i {
    margin-right: 0.5rem;
}

.alternative-contact > p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-option .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-option .contact-icon.whatsapp {
    background: #25d366;
}

.contact-option .contact-details {
    text-align: left;
}

.contact-option .contact-details h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-option .contact-details p {
    margin: 0;
}

.contact-option .contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-option .contact-details a:hover {
    color: #b91c1c;
}

/* Responsive Alternative Contact */
@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .alternative-contact {
        padding: 2rem 1.5rem;
    }
    
    .alternative-contact h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-option {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-option .contact-details {
        text-align: center;
    }
}

/* Toggle Services Button */
.toggle-services-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
    margin-bottom: 1.5rem;
}

.toggle-services-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.3);
}

.toggle-services-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.toggle-services-btn.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
}

.toggle-services-btn.active:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    box-shadow: 0 6px 12px rgba(5, 150, 105, 0.3);
}

.toggle-services-btn.active i {
    transform: rotate(180deg);
}

/* Service Selection - Hidden by Default */
.service-selection {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .toggle-services-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
}
