:root {
    --color-navy: #1a2c4e;
    --color-navy-dark: #0f1c33;
    --color-gold: #c5a059;
    --color-gold-hover: #b08d4b;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-text: #333333;

    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--color-navy);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--color-gold);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.1rem;
}

.btn-free-case {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-free-case:hover {
    background: var(--color-navy);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    background: var(--color-navy);
    color: var(--color-white);
    min-height: 85vh;
    /* slightly less than full screen to show content peek */
    padding-top: 80px;
    /* navbar offset */
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 50px 0 10%;
    z-index: 2;
}

.hero-image {
    flex: 1;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Creating a slant effect */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero .highlight {
    color: var(--color-gold);
    font-style: italic;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: var(--color-gold);
}

.btn-hero {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 4px;
}

.btn-hero:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

/* Trust Bar */
.trust-bar {
    background: #f4f4f4;
    padding: 30px 10%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-bar p {
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
}

.logos-grid {
    display: flex;
    gap: 50px;
    opacity: 0.6;
    filter: grayscale(1);
    width: 100%;
}

.logos-grid img {
    height: 30px;
}

/* Intro */
.intro-section {
    padding: 100px 0;
    background: var(--color-white);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text h6 {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--color-gold);
    margin: 0 auto 30px;
}

.intro-text p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.stat-item p {
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
}

/* Areas */
.areas-section {
    padding: 100px 0;
    background: var(--color-gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.area-card {
    background: var(--color-white);
    padding: 40px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
    /* hover effect prep */
    transition: 0.3s;
}

.area-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--color-gold);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.area-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Consult */
.consult-section {
    padding: 100px 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.consult-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.consult-text {
    flex: 1;
}

.consult-text h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.consult-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.detail i {
    color: var(--color-gold);
}

.consult-form {
    flex: 1;
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.consult-form h3 {
    color: var(--color-navy);
    margin-bottom: 25px;
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--color-gold);
}

/* Footer */
footer {
    background: var(--color-navy-dark);
    color: #888;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
        height: auto;
    }

    .hero-image img {
        clip-path: none;
        height: 300px;
    }

    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .consult-container {
        flex-direction: column;
        padding: 0 20px;
    }

    nav ul {
        display: none;
    }

    .cta-header {
        display: none;
    }
}