/* Counter Section */
.counter-section {
    background-color: #f9f9f9;
    padding: 80px 5%;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #008B8B;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #008B8B;
    opacity: 0.4;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.counter-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    width: 230px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    text-align: center;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.counter-item i {
    font-size: 48px;
    color: #008B8B;
    margin-bottom: 15px;
}

.counter-item h3 {
    font-size: 42px;
    color: #006666;
    margin-bottom: 10px;
}

.counter-item p {
    font-size: 16px;
    color: #666;
}

footer {
    background: linear-gradient(135deg, #006666 0%, #004444 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 15px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFD700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FFD700;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.contact-info i {
    margin-right: 10px;
    color: #FFD700;
}

.copyright {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    header {
        flex-direction: column;
        padding: 15px 3%;
    }
    
    nav {
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-header h1 {
        font-size: 24px;
    }
    
    .services-title {
        font-size: 22px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFD700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFD700;
    color: #006666;
    transform: translateY(-3px);
}

/* Make footer sections more responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.office-selector {
    margin-top: 10px;
}

.office-selector select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.office-selector select:focus,
.office-selector select:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.office-selector select option {
    background-color: #006666;
    color: white;
}

#officeAddress {
    padding-left: 5px;
    border-left: 2px solid #FFD700;
}

#officeAddress p {
    margin-bottom: 8px;
}

#officeAddress i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #FFD700;
}