/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.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: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: contain;
}

.logo h1 {
    color: #00416b;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00416b;
}

.cta-button {
    background: #00416b;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #002d4d;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #00416b 0%, #002d4d 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00416b 0%, #002d4d 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ef4351;
    color: white;
}

.btn-primary:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #00416b;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00416b;
}

.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 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #00416b;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #00416b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00416b;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card i {
    font-size: 3rem;
    color: #00416b;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #00416b;
    margin-bottom: 1rem;
}

.product-card p {
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00416b;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #00416b;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00416b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #00416b;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: #00416b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #00416b;
    margin-bottom: 0.5rem;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #00416b;
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #00416b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-contact {
        display: none;
    }

    /* Mobile call button for better accessibility */
    .mobile-call-button {
        display: block;
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1000;
        background: #00416b;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 65, 107, 0.4);
        transition: all 0.3s ease;
    }

    .mobile-call-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 65, 107, 0.6);
    }

    .mobile-call-button i {
        font-size: 24px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .page-hero .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero .hero-content p {
        font-size: 1rem;
    }

    .service-card.detailed,
    .product-card.detailed {
        padding: 1.5rem;
        min-height: 400px;
    }

    .featured-item {
        padding: 1.5rem;
        min-height: 400px;
    }

    .featured-item img {
        height: 150px;
    }

    .featured-item .price {
        font-size: 1.3rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .map-info {
        padding: 1rem;
    }

    .map-info .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        padding: 0.8rem 0;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #00416b;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-contact {
        display: none;
    }
}

/* Additional Styles for Multi-page Support */
.nav-menu a.active {
    color: #00416b;
    font-weight: 600;
}

/* Detailed Service Cards */
.service-card.detailed {
    text-align: left;
    padding: 2.5rem;
}

.service-card.detailed ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: #666;
}

.service-card.detailed li {
    margin-bottom: 0.5rem;
}

/* Detailed Product Cards */
.product-card.detailed {
    text-align: left;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.product-card.detailed ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: #666;
    flex-grow: 1;
}

.product-card.detailed li {
    margin-bottom: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: #00416b;
    border: 2px solid #00416b;
    margin-top: 1rem;
    align-self: flex-start;
    margin-top: auto;
}

.btn-outline:hover {
    background: #00416b;
    color: white;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.featured-item h3 {
    margin-bottom: 0.5rem;
    color: #00416b;
}

.featured-item .price {
    color: #ef4351;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.featured-item p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-item .btn {
    margin-top: auto;
    align-self: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit i {
    font-size: 3rem;
    color: #00416b;
    margin-bottom: 1rem;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 3rem;
    color: #00416b;
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member .role {
    color: #ef4351;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: #00416b;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ef4351;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #00416b;
    margin-bottom: 1rem;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: #ef4351;
    color: white;
    text-align: center;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.emergency-content i {
    font-size: 3rem;
}

.btn-emergency {
    background: white;
    color: #ef4351;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.btn-emergency:hover {
    background: #00416b;
    color: white;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-embed iframe {
    border-radius: 8px;
}

.map-info {
    padding: 1.5rem;
}

.map-info h3 {
    color: #00416b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.map-info .btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive design for map section */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-embed iframe {
        height: 300px;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group select {
    background: white;
}

.small {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: #00416b;
    color: white;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: white;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #00416b;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #00416b;
}
