/* NOLA Legal Website Styles */

* {
    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-color: #fff;
}

/* Header */
.header {
    background-color: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c9a227;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #c9a227;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 10px 5px;
}

.cta-button:hover {
    background-color: #a88620;
}

.cta-button.secondary {
    background-color: #1a1a2e;
}

.cta-button.secondary:hover {
    background-color: #2d2d4a;
}

.firm-intro {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Form Section */
.form-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-section h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #c9a227;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group label .required {
    color: #c00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a227;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Radio/Checkbox Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"],
.radio-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.submit-btn {
    background-color: #c9a227;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #a88620;
}

/* Payment Section */
.payment-section {
    background: #f0f4f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.payment-section h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.payment-section p {
    margin-bottom: 20px;
    color: #555;
}

.payment-btn {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.payment-btn:hover {
    background-color: #218838;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.disclaimer-section h4 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.disclaimer-section p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* About Page Styles */
.about-header {
    text-align: center;
    padding: 40px 0;
    background: #1a1a2e;
    color: #fff;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #c9a227;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.attorney-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .attorney-card {
        flex-direction: column;
        text-align: center;
    }
}

.attorney-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.attorney-info h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.attorney-info p {
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: #c9a227;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #c9a227;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

/* Consultation Methods Icons */
.consultation-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.method-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.method-card:hover {
    border-color: #c9a227;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.method-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.method-card h4 {
    color: #1a1a2e;
    font-size: 1rem;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
}


/* ---- Article pages (added for law-help.org blog) ---- */
.article-content { max-width: 800px; margin: 0 auto; }
.article-content h1 { color: #1a1a2e; font-size: 2rem; line-height: 1.25; margin-bottom: 1rem; }
.article-content h2 { color: #1a1a2e; font-size: 1.35rem; margin-top: 1.8rem; margin-bottom: .6rem; }
.article-content p { margin-bottom: 1rem; color: #444; }
.article-content ul, .article-content ol { margin: 0 0 1rem 1.4rem; }
.article-content li { margin-bottom: .4rem; }
.article-content strong { color: #1a1a2e; }
.article-content blockquote { border-left: 4px solid #c9a227; background: #f8f9fa;
    margin: 1.2rem 0; padding: .8rem 1.2rem; color: #555; font-style: italic; }
.article-list { max-width: 800px; margin: 0 auto; list-style: none; }
.article-list li { background: #f8f9fa; border-radius: 8px; padding: 20px; margin-bottom: 16px; }
.article-list a { color: #1a1a2e; font-size: 1.2rem; font-weight: 600; text-decoration: none; }
.article-list a:hover { color: #c9a227; }
.article-list .excerpt { color: #666; font-size: .95rem; margin-top: 6px; }
.back-link { display: inline-block; margin: 20px 0; color: #c9a227; text-decoration: none; font-weight: 600; }
