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

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

.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: 100;
}

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

.logo-img {
    height: 70px;
    width: auto;
}

.phone-link {
    color: #0A2A3A;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    color: #058DD8;
}

.phone-link i {
    color: #058DD8;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 30, 50, 0.92), rgba(25, 45, 70, 0.88));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.contact-item i {
    color: #058DD8;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #058DD8;
    color: white;
    border: 2px solid #058DD8;
}

.cta-button.primary:hover {
    background: #0A2A3A;
    border-color: #0A2A3A;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #0A2A3A;
    transform: translateY(-2px);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0A2A3A;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #058DD8;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #058DD8;
}

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

.service-icon {
    font-size: 3rem;
    color: #058DD8;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0A2A3A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card h3 a {
    color: #058DD8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h3 a:hover {
    color: #0A2A3A;
    text-decoration: underline;
}

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

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #058DD8;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #0A2A3A;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefits-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.benefits-description a {
    color: #0A2A3A;
    text-decoration: none;
    font-weight: 600;
}

.benefits-description a:hover {
    color: #058DD8;
    text-decoration: underline;
}

/* Customer Types */
.customer-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #058DD8;
}

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

.card-icon {
    font-size: 3rem;
    color: #058DD8;
    margin-bottom: 1.5rem;
}

.type-card h3 {
    color: #0A2A3A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.type-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-cta {
    background: #058DD8;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.card-cta:hover {
    background: #0A2A3A;
}

/* Process */
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #058DD8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #0A2A3A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Service Summary */
.service-summary {
    padding: 80px 0;
    background: #0A2A3A;
    color: white;
}

.service-summary .section-title {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.service-summary .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #058DD8;
}

.service-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    text-align: justify;
}

.service-summary p:last-child {
    margin-bottom: 0;
}

.service-summary a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-summary a:hover {
    color: #058DD8;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #0A2A3A;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #058DD8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #058DD8;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial cite {
    color: #0A2A3A;
    font-weight: 600;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: #0A2A3A;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-details {
    space-y: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-detail i {
    color: #058DD8;
    font-size: 1.2rem;
    width: 20px;
}

.contact-detail a {
    color: #0A2A3A;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #058DD8;
    text-decoration: underline;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #0A2A3A;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-info h3 {
    color: #058DD8;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #058DD8;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #058DD8;
}

.footer-services h4,
.footer-areas h4 {
    color: #058DD8;
    margin-bottom: 1rem;
}

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

.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-services li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services li a:hover {
    color: #058DD8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Floating CTA Button - FIXED SIZING */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #058DD8 0%, #0474B8 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 
        0 4px 15px rgba(5, 141, 216, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: gentle-pulse 3s ease-in-out infinite;
    min-width: 140px;
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #0474B8 0%, #0A2A3A 100%);
    box-shadow: 
        0 8px 25px rgba(5, 141, 216, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.floating-btn i {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.floating-btn:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg);
}

@keyframes gentle-pulse {
    0%, 100% { 
        box-shadow: 
            0 4px 15px rgba(5, 141, 216, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% { 
        box-shadow: 
            0 6px 20px rgba(5, 141, 216, 0.4),
            0 3px 12px rgba(0, 0, 0, 0.25);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 15px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-contact {
        display: none;
    }
}