/* Common/shared styles moved to `css/common.css` */

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.services-heading {
    flex: 0 0 300px;
    position: relative;
    padding-top: 20px;
}

.heading-accent {
    width: 60px;
    height: 4px;
    background: #ba5717;
    margin-bottom: 20px;
}

.services-heading h2 {
    font-size: 42px;
    font-weight: bold;
    color: #2c2c2c;
    line-height: 1.2;
}

.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ba5717;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.service-arrow:hover {
    background: #ba5717;
    color: #fff;
}

/* Footer */
.footer {
    background: #2c2c2c;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #ba5717;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    border-radius: 4px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    color: #ccc;
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ba5717;
}

.footer-bottom {
    background: linear-gradient(135deg, #ba5717 0%, #f2a84e 100%);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 30px;
    color: #fff;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-wrapper {
        flex-direction: column;
    }
    
    .services-heading {
        flex: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* common.css handles contact bar + nav mobile */
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .services-heading h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* common.css handles contact bar mobile */
}
