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

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

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

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #2563eb;
}

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

.logo-container {
    flex: 1;
}

.logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

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

.phone-label {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 5px;
}

.phone-number {
    color: #2563eb;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #374151;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-button.primary {
    background: #2563eb;
}

.cta-button.large {
    font-size: 20px;
    padding: 20px 40px;
}

.cta-text {
    margin-top: 15px;
    color: #6b7280;
    font-size: 14px;
}

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

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

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-overview h2 {
    font-size: 42px;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #60a5fa;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.featured {
    border-top-color: #2563eb;
    transform: scale(1.02);
}

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

.service-image {
    margin-bottom: 20px;
    text-align: center;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f8fafc;
}

.service-card h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    display: inline-block;
    background: #60a5fa;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: #3b82f6;
}

.service-cta.primary {
    background: #2563eb;
}

.service-cta.primary:hover {
    background: #1d4ed8;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    font-size: 42px;
    color: #1e40af;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e2e8f0;
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-size: 20px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.service-areas h2 {
    font-size: 36px;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-areas > .container > p {
    font-size: 18px;
    color: #374151;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #60a5fa;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top-color: #2563eb;
}

.area-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.area-card h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 25px;
    font-weight: 600;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.area-tag {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #93c5fd;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    transform: scale(1.05);
}

.service-cta-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-cta-section p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 25px;
}

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

.industries h2 {
    font-size: 36px;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.industries > .container > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

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

.industry-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #60a5fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #2563eb;
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.industry-card h3 {
    font-size: 16px;
    color: #1e40af;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.industry-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Location & Contact Section */
.location-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.location-contact h2 {
    font-size: 36px;
    color: #1e40af;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2563eb;
}

.contact-info-card h3 {
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.nap-info {
    margin-bottom: 30px;
}

.nap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nap-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.nap-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 2px;
}

.nap-details {
    flex: 1;
    line-height: 1.6;
}

.nap-details strong {
    color: #1e40af;
    display: block;
    margin-bottom: 5px;
}

.nap-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.nap-details a:hover {
    color: #1d4ed8;
}

.location-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.map-container {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #60a5fa;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-highlights {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.service-highlights h4 {
    font-size: 18px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.highlight-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #60a5fa;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-left-color: #2563eb;
    transform: translateX(3px);
}

.highlight-icon {
    font-size: 16px;
    margin-right: 10px;
}

.highlight-item span:last-child {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .nap-item {
        flex-direction: column;
        text-align: center;
    }

    .nap-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .map-container {
        padding: 15px;
    }

    .map-container iframe {
        height: 250px;
    }

    .service-highlights {
        padding: 15px;
    }

    .highlight-item {
        padding: 10px;
    }
}

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

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

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 20px;
}

.final-cta .cta-button {
    background: white;
    color: #2563eb;
    font-size: 22px;
    padding: 20px 50px;
}

.final-cta .cta-button:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.cta-guarantee {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px 0;
}

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

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #60a5fa;
}

.footer-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-info a:hover {
    color: #93c5fd;
}

.footer-services h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #60a5fa;
}

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

.footer-services ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.footer-services ul li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* Floating Call to Action Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid white;
    min-width: fit-content;
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
    animation: none;
}

.floating-icon {
    font-size: 24px;
    margin-right: 12px;
    animation: bounce 1s infinite;
}

.floating-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.floating-text strong {
    font-size: 16px;
    display: block;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6), 0 0 0 10px rgba(37, 99, 235, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
        position: fixed;
    }

    .floating-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }

    .floating-icon {
        font-size: 22px;
        margin-right: 10px;
    }

    .floating-text {
        font-size: 14px;
        text-align: center;
    }

    .floating-text strong {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .floating-btn {
        padding: 14px 16px;
        font-size: 15px;
    }

    .floating-icon {
        font-size: 20px;
        margin-right: 8px;
    }

    .floating-text {
        font-size: 13px;
    }

    .floating-text strong {
        font-size: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo {
        height: 80px;
    }

    .phone-number {
        font-size: 20px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .services-overview h2,
    .why-choose h2,
    .final-cta h2 {
        font-size: 32px;
    }

    .service-areas h2,
    .industries h2 {
        font-size: 28px;
    }

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

    .service-image img {
        height: 250px;
    }

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

    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .final-cta p {
        font-size: 18px;
    }

    .final-cta .cta-button {
        font-size: 18px;
        padding: 16px 32px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .services-overview h2,
    .why-choose h2,
    .final-cta h2 {
        font-size: 26px;
    }

    .service-card,
    .benefit-item,
    .area-column,
    .industry-item {
        padding: 20px;
    }
}