/* Suds Mobile Valet - Main Styles */
/* Migrated and simplified from Lebanon WordPress theme */

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Navigation */
.main-nav {
    background: #0e6191;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffde59;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content .logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Main Content */
.main-content {
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

h1 {
    color: #0e6191;
    font-size: 2.5em;
    margin: 30px 0;
    font-weight: bold;
}

h2 {
    color: #0e6191;
    font-size: 2em;
    margin: 25px 0;
    font-weight: 600;
}

h3 {
    color: #0e6191;
    font-size: 1.5em;
    margin: 20px 0;
    font-weight: 500;
}

p {
    margin: 15px 0;
    color: #0e6191;
    font-size: 1.1em;
}

.about-section,
.beliefs,
.info-section,
.contact-cta {
    margin: 40px 0;
}

/* Packages & Services */
.package {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.package h2 {
    margin-top: 0;
}

.package ul {
    list-style: none;
    padding-left: 0;
}

.package ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

/* Accordion Styles */
.accordion-container {
    margin: 30px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    background: #0e6191;
    color: white;
    padding: 20px 25px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #1a7fb5;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.accordion-content ul {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
}

.accordion-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.accordion-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0e6191;
    font-weight: bold;
}

.accordion-content p {
    padding: 0 25px;
    margin: 15px 0;
}

.accordion-content .pricing-table {
    margin: 20px 25px;
    width: calc(100% - 50px);
}

.package ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0e6191;
    font-weight: bold;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.pricing-table th {
    background: #0e6191;
    color: white;
    font-weight: bold;
}

.pricing-table td {
    background: white;
}

/* Testimonials */
.testimonial {
    background: #f5f5f5;
    padding: 30px;
    margin: 20px 0;
    border-left: 4px solid #0e6191;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 15px;
    font-style: normal;
    color: #0e6191;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #fff;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: #0e6191;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.6em;
    }
    
    h3 {
        font-size: 1.3em;
    }
    
    .pricing-table {
        font-size: 0.9em;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 4px;
    }
}

/* CMS Editor Styles */
.editable-content {
    min-height: 100px;
    padding: 10px;
    border: 2px dashed transparent;
    transition: border-color 0.3s;
}

.editable-content:hover {
    border-color: #0e6191;
}

.cms-edit-button {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0e6191;
    color: white;
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
