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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Top Contact Bar */
.top-bar {
    background-color: rgba(135, 206, 235, 0.3);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: #0077b6;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-btn {
    background-color: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: #cc0000;
}

.call-link {
    color: #0077b6;
    text-decoration: none;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00b4d8;
}

.logo-text .dark {
    color: #0077b6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00b4d8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0077b6;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(135, 206, 235, 0.4), rgba(135, 206, 235, 0.2)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23E8F4F8" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #00b4d8;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Service Page Hero */
.service-hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(135, 206, 235, 0.4), rgba(135, 206, 235, 0.2)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%23E8F4F8" width="1200" height="300"/></svg>');
    background-size: cover;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    color: #555;
    font-weight: 700;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.content-section.white {
    background-color: white;
}

.content-section.light {
    background-color: #e8f4f8;
}

.section-title {
    font-size: 2.5rem;
    color: #00b4d8;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Vision/Mission/Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #00b4d8;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #00b4d8;
    line-height: 1.7;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.partner-logo {
    text-align: center;
    padding: 20px;
}

.partner-logo img {
    max-width: 150px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.partner-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    padding: 20px;
    text-align: center;
}

/* Service Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Section with Image */
.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 25px;
    padding-left: 0;
}

.benefits-list strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.benefits-list p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Professional Team Section */
.team-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 2.2rem;
    color: #00b4d8;
    margin-bottom: 30px;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00b4d8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #0077b6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-badge {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-badge img {
    max-width: 50px;
    max-height: 50px;
}

.footer-text {
    font-size: 1rem;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b4d8;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: #00b4d8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
    background-color: #0077b6;
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #00b4d8;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0077b6;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
        align-self: flex-end;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .service-hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}
