/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header & Navigation */
header {
    background-color: #fbfbf9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    background-color: #fff;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    color: #083552;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: #1a968e;
}

/* Buttons */
.btn-primary, .btn-hero, .btn-cta {
    display: inline-block;
    padding: 14px 30px;
    background-color: #1a968e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-hero:hover, .btn-cta:hover {
    background-color: #157a73;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 150, 142, 0.3);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 18px 40px;
    margin-top: 30px;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 18px 45px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #083552 0%, #1a968e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.checkmark {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #083552;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(26, 150, 142, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a968e 0%, #083552 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 150, 142, 0.15);
}

.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.service-card h3 {
    font-size: 2rem;
    color: #083552;
    margin-bottom: 18px;
    font-weight: 700;
    padding: 0 35px;
    margin-top: 30px;
}

.service-card p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
    padding: 0 35px;
}

.service-features {
    list-style: none;
    padding: 0 35px 35px 35px;
    margin: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 150, 142, 0.02) 100%);
}

.service-features li {
    padding: 14px 0 14px 40px;
    position: relative;
    color: #444;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1a968e;
    font-weight: bold;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    background: rgba(26, 150, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #083552 0%, #1a968e 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 70px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    text-align: center;
    padding: 45px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1a968e 0%, #083552 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(26, 150, 142, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(26, 150, 142, 0.4);
}

.benefit-icon svg {
    width: 45px;
    height: 45px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.65rem;
    color: #083552;
    margin-bottom: 18px;
    font-weight: 700;
}

.benefit-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #083552;
    margin-bottom: 15px;
}

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

.industry-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #1a968e;
    transition: transform 0.3s;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item h3 {
    color: #083552;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #083552 0%, #1a968e 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
footer {
    background-color: #083552;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #1a968e;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section a {
    color: #1a968e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

.footer-section ul li {
    padding: 8px 0;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        height: 80px;
    }

    .nav-contact {
        flex-direction: column;
        gap: 10px;
    }

    .phone-number {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .services h2, .why-choose h2, .industries h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .service-image {
        height: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services, .why-choose, .industries, .cta {
        padding: 50px 0;
    }

    .btn-hero, .btn-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
}
