/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 130px;
    width: auto;
}

.header-phone {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #062545;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #408c36;
}

.phone-link svg {
    color: #408c36;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

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

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    color: #062545;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.4;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.badge .checkmark {
    color: #408c36;
    flex-shrink: 0;
}

.badge span {
    font-weight: 600;
    color: #062545;
    font-size: 0.95rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #408c36;
    color: #ffffff;
}

.btn-primary:hover {
    background: #357029;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 140, 54, 0.3);
}

.btn-secondary {
    background: #062545;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #041930;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 37, 69, 0.3);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #408c36;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #062545;
    margin-bottom: 20px;
    font-weight: 700;
}

.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #408c36;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #062545;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    color: #408c36;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #062545;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

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

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

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s;
}

.industry-card:hover {
    border-color: #408c36;
    box-shadow: 0 4px 15px rgba(64, 140, 54, 0.15);
}

.industry-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.industry-icon svg {
    color: #062545;
}

.industry-card h3 {
    font-size: 1.2rem;
    color: #062545;
    margin-bottom: 12px;
    font-weight: 700;
}

.industry-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #062545;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #062545;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #062545 0%, #041930 100%);
    text-align: center;
    color: #ffffff;
}

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

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

.final-cta .btn-primary {
    background: #408c36;
}

.final-cta .btn-primary:hover {
    background: #357029;
}

/* Footer */
.footer {
    background: #062545;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-services li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-services li::before {
    content: "→ ";
    color: #408c36;
    font-weight: 700;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info svg {
    color: #408c36;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #408c36;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }

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

    .hero {
        padding: 50px 0;
    }

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

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

    .trust-badges {
        grid-template-columns: 1fr;
    }

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

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

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

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }

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

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

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

    .footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .service-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }
}