:root {
    --primary-color: #1a1a1a;
    --accent-color: #c5a059;
    --text-color: #333;
    --bg-color: #fff;
    --section-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Who We Are Full Width Fix */
.about-full-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.deliver-card.full-width {
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
    border-left: none;
    border-top: 5px solid var(--accent-color);
}

.deliver-card h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.service-card {
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.candidate-outreach ul li {
    font-size: 1.1rem !important; /* Slightly larger as requested but balanced */
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    line-height: 1.3;
    min-height: 3.5rem; /* Helps align headers */
}

.service-card ul {
    flex-grow: 1;
}

header {
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.bar {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 2px;
}

/* Hamburger to X Animation */
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
}

.brand-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem !important;
    opacity: 1 !important;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #b08d4a;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.placeholder-box {
    width: 100%;
    height: 300px;
    background: #eee;
    border-radius: 10px;
}

/* Contact Form */
#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact textarea {
    height: 150px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer-seo {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-seo p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-seo a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-seo a:hover {
    text-decoration: underline;
}

.services-intro,
.faq-intro,
.contact-intro {
    max-width: 800px;
    margin: 0.75rem auto 0;
    opacity: 0.85;
}

.contact-intro a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-intro a:hover {
    text-decoration: underline;
}

.form-status {
    max-width: 600px;
    margin: 1rem auto 0;
    padding: 0.9rem 1rem;
    border-radius: 5px;
    text-align: center;
}

.form-status--error {
    background: #fdecea;
    color: #8a1f11;
    border: 1px solid #f5c2c0;
}

.form-status a {
    color: inherit;
    font-weight: 600;
}

/* FAQ — SEO / AI answer block */
.faq-section {
    padding: 4rem 0;
    background: #fff;
}

.faq-list {
    max-width: 860px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.faq-item summary {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    cursor: pointer;
    list-style: none;
    padding-right: 2rem;
    position: relative;
    color: var(--primary-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 0.85rem;
    line-height: 1.75;
    color: #444;
}

.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.thank-you-page h1 {
    margin-bottom: 1.25rem;
}

.thank-you-page .btn {
    margin-top: 1.5rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--section-bg); }
.lead-text { font-size: 1.6rem; font-weight: 300; margin-bottom: 2rem; line-height: 1.6; color: var(--primary-color); max-width: 1000px; margin-left: auto; margin-right: auto; }

.mission-box {
    background: var(--primary-color);
    color: #fff;
    padding: 6rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-box h2::after { background: var(--accent-color); }

.experience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 4rem 0;
}

.experience-list li {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
    padding-left: 3rem;
}

.experience-list li:hover {
    transform: translateY(-5px);
}

.experience-list li::before {
    content: '●';
    color: var(--accent-color);
    position: absolute;
    left: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-card ul li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
    color: var(--text-color);
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.engagement-model {
    margin-top: 6rem;
    padding: 5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.02);
    border: 1px solid #eee;
    text-align: center;
}

.engagement-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 1.25rem;
    display: inline-block;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
}

.engagement-model > p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.model-item {
    font-size: 1rem;
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.model-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-top-color: #9a7a3a;
    background: #fff;
}

.model-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.model-item:hover strong {
    color: var(--accent-color);
}

/* About Enhancement */
.deliver-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 3rem;
}

/* Specialization Section */
.parallax-section {
    padding: 10rem 0;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    display: flex;
    align-items: center;
}

.specialization-content {
    max-width: 900px;
    margin: 0 auto;
}

.spec-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 5rem;
    border-radius: 30px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.spec-tag {
    display: inline-block;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.spec-card h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.spec-card h2::after { display: none; }

.spec-card p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

.spec-card p strong {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .parallax-section { padding: 5rem 0; }
    .spec-card { padding: 3rem 1.5rem; }
    .spec-card h2 { font-size: 2.2rem; }
    .spec-card p { font-size: 1.1rem; }
}

@media (max-width: 1024px) {
    .experience-list, .model-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.05rem;
        letter-spacing: 1px;
    }

    .logo img {
        width: 80px;
        height: 80px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        padding: 0;
        text-align: center;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        border-bottom: 2px solid var(--accent-color);
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
        padding: 2rem 0;
    }

    .nav-links li {
        margin: 1.2rem 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .brand-eyebrow {
        font-size: 0.8rem !important;
        letter-spacing: 0.12em;
    }

    .nav-links li a {
        font-size: 1.1rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .experience-list, .model-grid {
        grid-template-columns: 1fr;
    }

    .mission-box {
        padding: 3rem 1.5rem;
    }
}
