/* Global Styles & Variables */
:root {
    --primary-color: #08111a;
    /* Darker Navy/Black */
    --primary-light: #0f1f2e;
    /* Lighter navy for cards */
    --accent-gold: #c6a87c;
    /* Muted Gold/Bronze typical of law firms */
    --accent-bright: #d4af37;
    /* Brighter gold for hover/highlights */
    --accent-green: #30aa3c;
    /* Whatsapp Green */
    --text-light: #ffffff;
    --text-grey: #b0b0b0;
    --text-dark: #121212;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #000;
    /* Deep black bg */
    color: var(--text-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light) !important;
}

.gold-text {
    color: var(--accent-gold);
}

.eyebrow-gold {
    text-transform: uppercase;
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-gold {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6);
}

.btn-whatsapp {
    background-color: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.btn-whatsapp:hover {
    background-color: var(--accent-green);
    color: white;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #1ebc57;
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    /* Transparent initially */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: #050505;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--accent-gold);
    height: 32px;
    width: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
}

.logo-text span:first-child {
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text span:last-child {
    font-size: 0.9rem;
    font-weight: 400;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #ddd;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #050b14;
    /* Fallback */
    overflow: hidden;
    padding-top: 100px;
    /* Header space */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.4) 100%), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.gold-strip {
    position: absolute;
    top: 0;
    right: 25%;
    width: 150px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(198, 168, 124, 0.1), rgba(198, 168, 124, 0.05));
    border-left: 1px solid rgba(198, 168, 124, 0.2);
    border-right: 1px solid rgba(198, 168, 124, 0.2);
    z-index: 2;
    transform: skewX(-10deg);
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    height: 100%;
}

.hero-content {
    padding-right: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(198, 168, 124, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(198, 168, 124, 0.1);
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    /* Big impact */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    /* Reference style */
    font-weight: 400;
    /* Classy thin serif */
}

.hero p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    color: #ccc;
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
}

.hero-cta-group {
    margin-top: 20px;
}

.cta-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-person {
    max-height: 85vh;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    /* Fade feet if needed */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Differentials */
.differentials {
    padding: 80px 0;
    background-color: #0b0b0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.divider-center {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 20px auto 40px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-gold);
}

.diff-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    transform: rotate(45deg);
    /* Diamond shape icon container */
}

.diff-icon-box i {
    transform: rotate(-45deg);
    width: 24px;
    height: 24px;
}

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Areas of Practice */
.areas {
    padding: 100px 0;
    background-color: #000;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-intro {
    margin-bottom: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

@media(max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.area-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(45deg, #0e0e0e, #141414);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(198, 168, 124, 0.1);
}

.area-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(198, 168, 124, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.area-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.area-content p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Marquee */
.marquee-section {
    background: var(--accent-gold);
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Reviews */
.testimonials {
    padding: 80px 0;
    background: #0b0b0b;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    /* White cards like Google */
    color: #333;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    background-color: var(--primary-color);
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviewer-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #000;
    margin: 0;
    font-weight: 700;
}

.stars {
    color: #fbbc04;
    font-size: 0.9rem;
}

/* .google-icon removed: logos are no longer displayed next to reviews */

.review-text {
    font-style: normal;
    font-size: 0.95rem;
    color: #555;
}

/* About Redesign */
.about-new {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.lawyer-badge {
    background: linear-gradient(to right, #111, #080808);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    margin-bottom: 40px;
}

.lb-content h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin: 5px 0;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.about-image-stand img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%) sepia(20%) brightness(0.9);
    transition: var(--transition);
}

.about-image-stand img:hover {
    filter: none;
}

/* Process */
.process {
    padding: 100px 0;
    background: #080808;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-icon {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 0;
}

.flex-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.2rem;
    color: #ddd;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #000;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
    font-weight: 700;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 80px 0 30px;
    color: #888;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-list i {
    color: var(--accent-gold);
    width: 18px;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 30px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin: 0 auto 2rem;
        border: none;
        padding: 0;
    }

    .hero-cta-group {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gold-strip {
        display: none;
    }

    .hero-image-wrapper {
        height: auto;
    }

    .hero-person {
        max-height: 500px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 999;
        border-left: 1px solid #222;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-highlights {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .diff-grid,
    .areas-grid,
    .reviews-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}