

/* SECTION SEPARATOR */

.section-divider {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #e0e0e0 20%, 
        #F4B41A 50%, 
        #e0e0e0 80%, 
        transparent 100%
    );
}

.section-divider-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #F4B41A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.15);
}

.section-divider-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F4B41A;
    border-radius: 50%;
}

/* Alternative: Simple Line Divider */
.section-divider-simple {
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #e0e0e0 20%, 
        #F4B41A 50%, 
        #e0e0e0 80%, 
        transparent 100%
    );
    margin: 60px auto;
    max-width: 80%;
}

/* Alternative: Dot Pattern Divider */
.section-divider-dots {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-divider-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #F4B41A;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.7;
}

.section-divider-dots span:nth-child(2) {
    opacity: 1;
    transform: scale(1.3);
}

/* Responsive */
@media(max-width: 576px) {
    .section-divider {
        height: 60px;
    }
    
    .section-divider-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-divider-icon::after {
        width: 10px;
        height: 10px;
    }
    
    .section-divider-simple {
        margin: 40px auto;
    }
    
    .section-divider-dots {
        padding: 35px 0;
    }
}

/* HERO SECTION */
.contact-hero {
    background: #F4B41A;
    color: #000;
    padding: 100px 20px 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* MAIN CONTACT SECTION */
.contact-main {
    padding: 80px 20px;
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CONTACT INFO */
.contact-info h2 {
    font-size: 39px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5;
}

.info-block:last-of-type {
    border-bottom: none;
}

.info-icon {
    font-size: 32px;
    width: 50px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-content p {
    margin: 4px 0;
    color: #333;
    font-size: 15px;
}

.hours {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 14px;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cert-badge {
    background: #F4B41A;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* CONTACT CTA */
.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cta-card {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    border-color: #F4B41A;
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.1);
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #F4B41A;
    color: #000;
}

.btn-primary:hover {
    background: #d9a016;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #F4B41A;
}

.btn-secondary:hover {
    background: #F4B41A;
    transform: translateY(-2px);
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 80px 20px;
    background: #fff;
}

.capabilities h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-item {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #F4B41A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.capability-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.capability-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* MAP SECTION */
.map-section {
    padding: 80px 20px;
    background: #fafafa;
}

.map-section h2 {
    text-align: center;
    font-size: 39px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* WHY CHOOSE SECTION */
.why-choose {
    padding: 80px 20px;
    background: #fff;
}

.why-choose h2 {
    text-align: center;
    font-size: 39px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 20px;
}

.why-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #F4B41A;
    color: #000;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.why-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .capabilities h2,
    .map-section h2,
    .why-choose h2,
    .contact-info h2 {
        font-size: 28px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 60px 20px 50px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .contact-main,
    .capabilities,
    .map-section,
    .why-choose {
        padding: 50px 20px;
    }
    
    .certifications {
        flex-direction: column;
    }
    
    .cert-badge {
        text-align: center;
    }
}