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

:root {
    --primary-dark: #0a1628;
    --primary-blue: #1e3a5f;
    --accent-gold: #d4af37;
    --text-light: #ffffff;
    --text-gray: #e8e8e8;
    --text-muted: #b8b8b8;
    --border-color: #2a4a6f;
    --input-bg: #162238;
    --input-border: #2d4b73;
}

body {
    font-family: 'Crimson Pro', 'Georgia', serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background-color: var(--primary-dark);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-blue);
    list-style: none;
    min-width: 150px;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(10, 22, 40, 0.7), rgba(30, 58, 95, 0.7)), url('images/tulsa-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Pages */
.content-page {
    flex: 1;
    padding: 3rem 2rem;
}

.page-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.page-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.intro-section,
.services-section,
.faq-section {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    margin: 4rem 0;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: rgba(30, 58, 95, 0.3);
    border-radius: 8px;
}

.team-member.reverse {
    grid-template-columns: 1fr 1fr;
}

.member-info h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.certifications h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

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

.certifications li {
    color: var(--text-muted);
    padding: 0.4rem 0;
    font-size: 1.05rem;
}

.member-photo img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

/* Certification Logos */
.certifications-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
}

.certifications-logos img {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.certifications-logos img:hover {
    opacity: 1;
}

/* Contact Page */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.contact-option {
    background-color: rgba(30, 58, 95, 0.4);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.option-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 1rem;
}

.contact-option h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-option p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-option .benefit {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text-light);
}

/* Scheduling Form */
.scheduling-form-container {
    background-color: rgba(30, 58, 95, 0.3);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.scheduling-form-container h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.deposition-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: var(--accent-gold);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Crimson Pro', serif;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: var(--primary-blue);
}

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

.form-group select {
    cursor: pointer;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    background-color: var(--input-bg);
    border: 2px dashed var(--input-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: var(--accent-gold);
    background-color: var(--primary-blue);
}

.file-icon {
    font-size: 1.5rem;
}

.file-text {
    color: var(--text-gray);
    font-size: 1rem;
}

.file-name {
    display: block;
    margin-top: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.form-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid rgb(76, 175, 80);
    color: rgb(129, 199, 132);
    display: block;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid rgb(244, 67, 54);
    color: rgb(239, 154, 154);
    display: block;
}

/* Contact Info */
.contact-info {
    background-color: rgba(30, 58, 95, 0.3);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        border: none;
        margin-top: 0;
        background-color: rgba(10, 22, 40, 0.5);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

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

    .team-member,
    .team-member.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .scheduling-form-container {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .logo img {
        height: 50px;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}
/* Important Alert Box */
.important-alert {
    background-color: rgba(255, 152, 0, 0.15);
    border: 2px solid #ff9800;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

.alert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.alert-content {
    color: #ffa726;
    font-size: 1.1rem;
    line-height: 1.6;
}

.alert-content strong {
    color: #ff9800;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.5rem;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
    }
}

@media (max-width: 768px) {
    .important-alert {
        flex-direction: column;
        text-align: center;
    }
}