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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #221f20;
    background-color: #fefefe;
}

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

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

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #002d64;
    margin-bottom: 0.2rem;
}

.logo-text p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
}

.header-actions .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.header-actions .whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.nav {
    position: relative;
    padding: 0.5rem 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #002d64;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    padding: 0.5rem;
    margin: 0;
}

.nav-menu li {
    flex: 1;
}

.nav-menu a {
    display: block;
    color: #221f20;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #002d64, #9d0704);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    left: 0;
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 45, 100, 0.8), rgba(157, 7, 4, 0.8)), url('hero_background.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9d0704;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(157, 7, 4, 0.3);
}

.cta-btn:hover {
    background: #7a0503;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 7, 4, 0.4);
}

.cta-btn.primary {
    background: white;
    color: #002d64;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-btn.primary:hover {
    background: #fefefe;
    color: #002d64;
}

.cta-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Service Sections */
.service-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #002d64, #9d0704);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #002d64;
    margin-bottom: 1rem;
}

.service-content p {
    color: #221f20;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.service-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mobile image enhancement with overlapping circles */
.service-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.service-image-container .service-image {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.service-image-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #002d64, #9d0704);
    border-radius: 50%;
    top: -10px;
    right: -10px;
    z-index: -1;
    opacity: 0.1;
}

.service-image-container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9d0704, #002d64);
    border-radius: 50%;
    bottom: -15px;
    left: -15px;
    z-index: -1;
    opacity: 0.15;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.check-icon {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #002d64;
    margin-bottom: 3rem;
}

/* Accordion Styles */
.accordion {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8fafc;
}

.accordion-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #002d64;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.accordion-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

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

.faq-item {
    background: #fefefe;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #9d0704;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002d64;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #221f20;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #002d64;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: #9d0704;
    font-size: 0.9rem;
}

.footer-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #9d0704;
}

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

.footer-services li {
    padding: 0.25rem 0;
    color: #fefefe;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #fefefe;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #22c55e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        border-bottom: none;
        padding-bottom: 0.5rem;
        width: 100%;
    }
    
    .header-actions {
        gap: 0.5rem;
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 120px);
    }
    
    .header-actions .whatsapp-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        flex-shrink: 1;
        min-width: 140px;
        max-width: none;
        white-space: nowrap;
    }
    
    .nav {
        width: 100%;
        padding: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-self: center;
        margin-top: 0;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
        padding: 0;
    }
    
    .nav.mobile-open .nav-menu {
        max-height: 400px;
        padding: 1rem;
    }
    
    .nav.mobile-open .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav.mobile-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .nav.mobile-open .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu li {
        flex: none;
        width: 100%;
    }
    
    .nav-menu a {
        text-align: left;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .service-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        border-radius: 50%;
        position: relative;
        z-index: 2;
    }
    
    .service-image-container {
        width: 180px;
        height: 180px;
        margin: 1rem auto;
    }
    
    .service-image-container::before {
        width: 100px;
        height: 100px;
        top: -5px;
        right: -5px;
    }
    
    .service-image-container::after {
        width: 60px;
        height: 60px;
        bottom: -10px;
        left: -10px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .header-actions .whatsapp-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .service-section {
        padding: 2rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        width: 120px;
        height: 120px;
    }
    
    .service-image-container {
        width: 150px;
        height: 150px;
    }
    
    .service-image-container::before {
        width: 80px;
        height: 80px;
        top: -8px;
        right: -8px;
    }
    
    .service-image-container::after {
        width: 50px;
        height: 50px;
        bottom: -12px;
        left: -12px;
    }
}

/* Add new media query for very small screens */
@media (max-width: 360px) {
    .header-actions .whatsapp-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
        min-width: 100px;
    }
    
    .header-actions {
        max-width: calc(100% - 100px);
    }
}