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

body {
    font-family: 'Open Sans', sans-serif;
    color: #0A064A;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, .cta-btn, .book-now-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #01579B;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    transition: all 0.3s ease;
}

/* Page Header (used in about, services, contact pages) */
.page-header {
    background-color: #01579B;
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #02899C;
}

/* Header Styles */
header {
    background-color: #01579B;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.droplet-icon {
    margin-right: 10px;
    fill: #029C7B;
    stroke: #029C7B;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
}

nav {
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: flex;
    list-style: none;
}

.desktop-nav li {
    margin-left: 1.5rem;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #029C7B;
}

.book-now-btn {
    background-color: #029C7B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    margin-left: 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.book-now-btn:hover {
    background-color: #02899C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

.mobile-nav {
    display: none;
    background-color: #01579B;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    padding: 0.75rem 1rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

.mobile-nav a:hover {
    color: #029C7B;
}

.mobile-btn {
    width: 100%;
    margin: 0.5rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(10, 6, 74, 0.7), rgba(10, 6, 74, 0.7)), 
                      url('https://source.unsplash.com/random/1600x900/?clean,car');
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #02899C;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    background-color: #029C7B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: #02899C;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Overview Section */
.overview {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid #029C7B;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 3rem;
    color: #029C7B;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #01579B;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-card h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #02899C;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-card p {
    color: #0A064A;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #01579B;
    color: white;
    padding: 2.5rem 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

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

footer p {
    font-size: 1.05rem;
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: #02899C;
    font-size: 1.75rem;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #029C7B;
    transform: translateY(-3px);
}

/* Services Section Styles */
.services-section {
    padding: 5rem 0;
    background-color: #fff;
}

.service-detail {
    display: flex;
    margin-bottom: 5rem;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    padding: 0;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.service-info {
    flex: 2;
    padding: 2.5rem;
}

.service-info h3 {
    color: #01579B;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-info h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #029C7B;
    bottom: 0;
    left: 0;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0A064A;
    margin-bottom: 1.5rem;
}

.service-info ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-info li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
    font-size: 1.05rem;
    color: #0A064A;
}

.service-info li:before {
    content: "✓";
    color: #029C7B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.placeholder-image {
    background-color: #f2f2f2;
    border-radius: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #029C7B;
    position: absolute;
    top: 0;
    left: 0;
}

/* About Page Styles */
.about-section, .mission-section {
    padding: 5rem 0;
}

.about-section {
    background-color: #f9f9f9;
}

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

.about-content, .mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
}

.mission-content {
    background-color: #f9f9f9;
}

.about-text, .mission-text {
    flex: 3;
    padding: 3rem;
}

.about-image, .mission-image {
    flex: 2;
    position: relative;
    min-height: 400px;
}

.about-text h3, .mission-text h3 {
    color: #01579B;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-text h3:after, .mission-text h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #029C7B;
    bottom: 0;
    left: 0;
}

.about-text p, .mission-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0A064A;
}

.pull-quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #029C7B;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 5px solid #029C7B;
    line-height: 1.4;
    position: relative;
}

.pull-quote:before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -20px;
    font-size: 4rem;
    color: rgba(2, 156, 123, 0.2);
    z-index: -1;
}

.values {
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    color: #029C7B;
    margin-right: 1.5rem;
    font-size: 2rem;
}

.value-item h4 {
    color: #01579B;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

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

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

.team-member {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.member-image {
    margin-bottom: 1.5rem;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.team-member h4 {
    color: #01579B;
    margin-bottom: 0.5rem;
}

.position {
    color: #029C7B;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonial-section:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(2, 137, 156, 0.05);
    top: -50px;
    left: -50px;
    border-radius: 50%;
    z-index: 0;
}

.testimonial-section:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(2, 156, 123, 0.05);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.testimonial-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #01579B;
    position: relative;
    z-index: 1;
}

.testimonial-section h3:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #029C7B;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote {
    color: #029C7B;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #01579B;
    font-style: italic;
}

.client-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.client-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #01579B;
    margin-bottom: 0.3rem;
}

.client-type {
    color: #029C7B;
    font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h3, .contact-form h3 {
    color: #01579B;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-info h3:after, .contact-form h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #029C7B;
    bottom: 0;
    left: 0;
}

.contact-form h3 {
    color: #01579B;
    text-align: left;
}

.info-items {
    margin: 2.5rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.info-item i {
    color: #029C7B;
    font-size: 1.8rem;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    color: #01579B;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #0A064A;
    line-height: 1.6;
}

.social-media h4 {
    color: #01579B;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #02899C;
    margin-right: 1.2rem;
    transition: all 0.3s;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background-color: #029C7B;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #01579B; /* Header blue */
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #0A064A;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #029C7B;
    box-shadow: 0 0 0 3px rgba(2, 156, 123, 0.1);
}

.form-btn {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Form Success and Error Messages */
.success-message,
.error-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.success-message {
    background-color: rgba(2, 156, 123, 0.1);
    color: #029C7B;
    border-left: 4px solid #029C7B;
}

.error-message {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.success-message i,
.error-message i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.map-placeholder {
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.map-content {
    text-align: center;
    color: #01579B;
}

.map-content i {
    margin-bottom: 1rem;
}

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

.faq-section h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8f8f8;
    cursor: pointer;
}

.faq-question h4 {
    color: #01579B;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #029C7B;
    transition: transform 0.3s;
}

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

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

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

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.pricing-section h2 {
    color: #01579B;
    margin-bottom: 0.5rem;
}

.pricing-section > p {
    margin-bottom: 3rem;
}

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

.pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}

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

.pricing-card h3 {
    color: #01579B;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #029C7B;
    margin-bottom: 2rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card li:before {
    content: "✓";
    color: #029C7B;
    margin-right: 0.5rem;
}

.featured {
    border: 2px solid #029C7B;
    transform: scale(1.05);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #029C7B;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav, .book-now-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-detail, 
    .service-detail.reverse,
    .about-content,
    .mission-content {
        flex-direction: column;
    }
    
    .service-image,
    .about-image,
    .mission-image {
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .featured {
        transform: scale(1);
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-top: 1rem;
    }
    
    .social-icons a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
}
