/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 40px;
}

.company-name {
    font-size: 4rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.services {
    margin-bottom: 50px;
}

.service-item {
    margin-bottom: 24px;
    padding: 20px 0;
    border-bottom: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-item:hover {
    padding-left: 20px;
    border-bottom-color: #2563eb;
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.02em;
}

.location h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 30px;
    letter-spacing: -0.01em;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-section {
    background-color: #1e293b;
    color: white;
    padding: 80px 0;
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #f1f5f9;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-link {
    color: #f1f5f9;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #60a5fa;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2563eb;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #94a3b8;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 5px;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .location h2 {
        font-size: 2rem;
    }
    
    .contact-details {
        gap: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .location h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}