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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --gold: #D4AF37;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #cccccc;
}

.gold-text {
    color: var(--gold);
}

.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-link {
    color: #ffffff;
    font-weight: 400;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.carousel {
    margin-top: 76px;
}

.carousel-item {
    height: 100vh;
    min-height: 500px;
}

.page-carousel .carousel-item {
    height: 60vh;
    min-height: 400px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.4);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
}

.carousel-caption h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

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

.btn-gold {
    background-color: var(--gold);
    color: #000000;
    border: 2px solid var(--gold);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.intro-section,
section {
    background-color: #000000;
}

.bg-dark {
    background-color: var(--dark-gray);
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(2);
}

.service-card:hover .service-icon {
    filter: none;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.gold-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gold-link:hover {
    color: #ffffff;
    letter-spacing: 1px;
}

.service-card-detailed {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(2);
}

.service-card-detailed:hover .service-icon-large {
    filter: none;
}

.service-list {
    list-style: none;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-gray);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(212, 175, 55, 0.2);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark-gray), #000000);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.footer {
    background-color: var(--dark-gray);
    border-top: 2px solid var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.border-gold {
    border-color: var(--gold);
    opacity: 0.3;
}

.social-icons a,
.social-icons-large a {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover,
.social-icons-large a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
}

.attorney-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.attorney-card:hover {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.attorney-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin: 0 auto;
}

.attorney-title {
    color: var(--light-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.attorney-specializations,
.attorney-credentials {
    list-style: none;
    padding: 0;
    text-align: left;
}

.attorney-specializations li,
.attorney-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-gray);
}

.attorney-specializations li::before,
.attorney-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.why-choose-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.why-choose-card:hover {
    border: 1px solid var(--gold);
    transform: translateY(-5px);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item {
    padding: 1.5rem;
}

.award-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

.form-label {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background-color: #0d0d0d;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: #1a1a1a;
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-control::placeholder {
    color: #666666;
}

.contact-info-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.map-wrapper iframe {
    width: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.social-icons-large a {
    font-size: 2rem;
}

.social-link-large {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-weight: bold;
    color: var(--gold);
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-large:hover {
    background-color: var(--gold);
    color: #000000;
    transform: translateY(-5px);
}

.service-detail-list {
    margin-top: 2rem;
}

.service-detail-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.service-detail-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(212, 175, 55, 0.2);
}

.service-detail-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-gray);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.scenario-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}

.scenario-box h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.process-box h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--dark-gray), #000000);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    text-align: center;
}

.cta-box h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.sidebar-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.sidebar-links a:hover {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
    padding-left: 1rem;
}

.why-litigation-box,
.who-needs-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.why-litigation-box h4,
.who-needs-box h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.industry-list {
    list-style: none;
    padding: 0;
}

.industry-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-gray);
}

.industry-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

.alert {
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgb(40, 167, 69);
    color: rgb(40, 167, 69);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgb(220, 53, 69);
    color: rgb(220, 53, 69);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .attorney-photo {
        width: 150px;
        height: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none;
        transition: none;
    }
}