/* NOLA Legal Website - Clean Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background-color: #222;
    padding: 10px 0;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.nav-menu a:hover {
    color: #ccc;
}

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

/* Hero Banner - Full Image Display */
.hero-banner {
    width: 100%;
    background: #000;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: none;
    object-fit: contain;
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.intro-section p {
    margin-bottom: 15px;
    color: #444;
}

.service-overview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.service-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 180px;
}

.service-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #222;
}

.service-item .price {
    font-size: 20px;
    font-weight: bold;
    color: #006600;
    margin: 5px 0;
}

.service-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Form Sections */
.form-section {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    scroll-margin-top: 80px;
}

.form-section h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
    display: inline-block;
}

.section-price {
    display: inline-block;
    background: #006600;
    color: #fff;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}

.section-price.free {
    background: #006600;
}

/* Disclaimer Box */
.disclaimer-box {
    background: #fffde7;
    border: 1px solid #e6d88a;
    padding: 12px 15px;
    margin: 15px 0 20px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.disclaimer-box strong {
    color: #333;
}

/* Form Elements */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 13px;
    color: #333;
}

.required {
    color: #c00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #666;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 6px;
    width: auto;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    border-radius: 3px;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #999;
    background: #f5f5f5;
}

.file-upload-area p {
    margin: 5px 0;
    color: #555;
}

.file-upload-area .upload-note {
    font-size: 11px;
    color: #999;
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-list {
    margin-top: 10px;
}

.file-item {
    padding: 8px 10px;
    background: #e8f5e9;
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 12px;
}

/* Calendar Info */
.calendar-info {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 13px;
}

.calendar-embed {
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

/* Payment Box */
.payment-box {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 3px;
}

.payment-box p {
    margin: 5px 0;
}

.payment-btn {
    display: inline-block;
    background: #006600;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.payment-btn:hover {
    background: #005500;
}

/* Submit Button */
.submit-btn {
    background: #333;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background: #222;
}

/* Response Note */
.response-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f5f5f5;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.disclaimer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #222;
}

.disclaimer-section p {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #222;
    color: #ccc;
    padding: 30px 0 15px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #ccc;
    font-size: 12px;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section a {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 11px;
    color: #888;
}

/* Phone number very small/obscure */
.phone-tiny {
    font-size: 10px;
    color: #666;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: #222;
}

.modal-content p {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.modal-btn.primary {
    background: #006600;
    color: #fff;
}

.modal-btn.secondary {
    background: #999;
    color: #fff;
}

.modal-btn:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #222;
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-container {
        position: relative;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-overview {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Page */
.about-header {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.about-header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.about-header p {
    font-size: 14px;
    color: #ccc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

.contact-info {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
}

.contact-info p {
    margin-bottom: 8px;
}

.attorney-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.attorney-card img {
    width: 120px;
    height: 120px;
    border-radius: 5px;
    object-fit: cover;
}

.attorney-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222;
}

.attorney-info p {
    color: #555;
    font-size: 13px;
}

@media (max-width: 500px) {
    .attorney-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
