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

:root {
    --primary-navy: #1a2a4e;
    --secondary-navy: #2d3e5f;
    --gold: #c59d5f;
    --gold-dark: #a67c44;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Top Bar */
.top-bar {
    background: var(--primary-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 5px;
    color: var(--gold);
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--gold);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
    color: var(--primary-navy);
}

.logo h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    transition: color 0.3s;
}

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

.phone-nav {
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 5px;
    padding: 10px 20px !important;
}

.phone-nav:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 280px;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

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

.dropdown-menu li a {
    padding: 12px 20px;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--gold);
}

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 42, 78, 0.85), rgba(26, 42, 78, 0.85)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a2a4e" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 78, 0.3);
}

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

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    font-size: 24px;
    color: var(--gold);
}

.hero-feature span {
    font-size: 16px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn i {
    margin-right: 8px;
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.badge i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.badge h3 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.badge p {
    color: var(--gray);
    font-size: 16px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* About Preview */
.about-preview {
    background: var(--light-gray);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-placeholder {
    background: var(--primary-navy);
    padding: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 120px;
    color: var(--gold);
}

.section-content .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.section-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Practice Areas */
.practice-areas {
    background: var(--white);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.practice-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--gold);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.practice-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.practice-icon i {
    font-size: 36px;
    color: var(--gold);
}

.practice-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.practice-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    color: var(--gold-dark);
}

.card-link i {
    transition: transform 0.3s;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose-us {
    background: var(--light-gray);
}

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

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

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 42px;
    color: var(--gold);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-navy);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Page Styles */
.page-hero {
    background: linear-gradient(rgba(26, 42, 78, 0.9), rgba(26, 42, 78, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a2a4e" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.content-section {
    padding: 80px 0;
}

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

.content-wrapper h2 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 25px;
    margin-top: 40px;
}

.content-wrapper h3 {
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-wrapper ul {
    margin: 20px 0 20px 40px;
    line-height: 2;
}

.content-wrapper ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight-box {
    background: var(--light-gray);
    padding: 30px;
    border-left: 4px solid var(--gold);
    margin: 30px 0;
}

.highlight-box h3 {
    margin-top: 0;
}

.faq-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.contact-info-box {
    background: var(--primary-navy);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.contact-info-box h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--white);
}

.info-content h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 16px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.info-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--gold);
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }

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

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

    .section-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}

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

    .top-bar-left span {
        display: block;
        margin: 5px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .badges-grid,
    .features-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}
