﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2cb6b9 0%, #1e8e92 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 50px;
        width: auto;
        //filter: brightness(0) saturate(100%) invert(68%) sepia(89%) saturate(1094%) hue-rotate(143deg) brightness(91%) contrast(50%);
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #2cb6b9;
        }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 1rem 0;
    }

    .mobile-menu li {
        padding: 0.5rem 1rem;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        display: block;
        padding: 0.5rem 0;
    }

.cta-btn {
    background: #207f81;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 182, 185, 0.3);
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 182, 185, 0.5);
        background: #1e8e92;
    }

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2cb6b9, #1e8e92);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

    .social-link:hover {
        transform: scale(1.1);
    }

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo {
    margin-bottom: 2rem;
}

    .hero-logo img {
        height: 285px;
    }

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* About Section */
.about {
    background: white;
    padding: 80px 0;
}

.about-content {
    /* display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center; */
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2cb6b9, #1e8e92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto;
    float: left;
    margin: 20px;
}

    .about-image img {
        width: 80%;
        border-radius: 50%;
    }

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Services Section */
.services {
    background: #f8f9ff;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2cb6b9;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .service-card p {
        color: #666;
        line-height: 1.6;
    }

/* Pricing Section */
.pricing {
    background: white;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #2cb6b9 0%, #1e8e92 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .pricing-card:hover::before {
        opacity: 1;
    }

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: #f8f9ff;
    padding: 80px 0;
}

.contact-info {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2cb6b9, #1e8e92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.safety-info {
    background: linear-gradient(135deg, #2cb6b9 0%, #1e8e92 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

    .safety-info h3 {
        margin-bottom: 1rem;
    }

/* Map Section */
.map-section {
    background: white;
    padding: 60px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-info {
    text-align: left;
}

.footer-social {
    text-align: right;
}

    .footer-social h4 {
        margin-bottom: 1rem;
        color: #2cb6b9;
    }

    .footer-social .social-links {
        justify-content: flex-end;
    }

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo img {
        height: 40px;
    }

    .cta-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        float: none;
        margin: auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-social {
        text-align: center;
    }

        .footer-social .social-links {
            justify-content: center;
        }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}
