/* Premium CSS Design System for BMRK Consultant */

:root {
    --primary-color: #c26d3c;
    --primary-hover: #b05c2d;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --text-white-muted: rgba(255, 255, 255, 0.85);
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 6px;
    --max-width: 1280px;
}

/* Reset & Base Styles */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Navigation */
.site-header {
    background-color: var(--bg-white);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area .logo {
    height: 44px;
    display: block;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 1.85rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

/* Active Indicator Underline */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header Get Started Button Override */
.btn-get-started {
    padding: 0.48rem 1.15rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* General Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 109, 60, 0.25);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: #111827;
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-get-started {
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../assets/hero-bg.jpg') no-repeat center center / cover;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, rgba(194, 109, 60, 0.35) 0%, rgba(15, 23, 42, 0) 60%), 
                linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.55) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

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

/* Scroll-triggered reveal animation */
.scroll-reveal {
    opacity: 0;
}

.scroll-reveal.in-view {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5.5rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Tagline Badge */
.tagline-badge {
    background-color: rgba(194, 109, 60, 0.12);
    border: 1px solid rgba(194, 109, 60, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-block;
}

.tagline-badge span {
    color: #f09560;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Title & Description */
.hero-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-white-muted);
    margin-bottom: 1.8rem;
}

/* Hero Actions Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hire-talent {
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
}

.btn-hire-talent .arrow {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.btn-hire-talent:hover .arrow {
    transform: translateX(4px);
}

.btn-find-job {
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
}

/* Trust Badges / Features row */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f09560;
}

.feature-text {
    color: var(--text-white-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background-color: #faf6f0;
    padding: 6rem 2rem;
}

.services-container {
    max-width: 1140px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-tagline {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.services-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    color: #271f1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(194, 109, 60, 0.08);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .card-img {
    transform: scale(1.05);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.card-img-title {
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    right: 1.5rem;
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 600;
    z-index: 2;
    font-family: var(--font-serif);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.card-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.badge {
    background-color: #f5efe6;
    color: #5c4e46;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.view-roles-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.view-roles-link:hover {
    color: var(--primary-hover);
}

.view-roles-link:hover .link-arrow {
    transform: translateX(4px);
}

.link-arrow {
    transition: transform 0.2s ease;
}

/* Why Choose BMRK Section */
.why-choose-section {
    background-color: #3c200f;
    padding: 6rem 2rem;
    color: var(--text-white);
}

.why-choose-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-choose-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(194, 109, 60, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-highlight {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: #f09560;
    margin-bottom: 0.75rem;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.why-card-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #faf6f0;
    padding: 6rem 2rem;
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    text-align: center;
    color: #271f1a;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 109, 60, 0.05);
}

.quote-icon {
    color: #f09560;
    opacity: 0.8;
    margin-bottom: 1.25rem;
    display: flex;
}

.testimonial-quote {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-divider {
    border: none;
    height: 1px;
    background-color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-location {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Split CTA Section */
.split-cta-section {
    display: flex;
    background-color: #3c200f;
    overflow: hidden;
    position: relative;
}

.cta-block {
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cta-left {
    background-color: var(--primary-color);
    width: 55%;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    z-index: 2;
    padding-right: 8rem;
    animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cta-right {
    background-color: #3c200f;
    width: 45%;
    z-index: 1;
    padding-left: 4rem;
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cta-inner {
    max-width: 500px;
    width: 100%;
}

.cta-left .cta-inner {
    margin-left: auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta-light {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid var(--bg-white);
}

.btn-cta-light:hover {
    background-color: #f7f3ed;
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-outline:hover {
    background-color: var(--text-white);
    color: #3c200f;
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-cta-light .arrow,
.btn-cta-outline .arrow {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.btn-cta-light:hover .arrow,
.btn-cta-outline:hover .arrow {
    transform: translateX(4px);
}

/* Services Subpage Styles */
.services-banner-section {
    background-color: #3c200f;
    padding: 4.25rem 2rem;
    color: var(--text-white);
}

.services-banner-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-banner-content {
    max-width: 720px;
}

.tagline-badge-sub {
    background-color: rgba(194, 109, 60, 0.15);
    border: 1px solid rgba(194, 109, 60, 0.35);
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.tagline-badge-sub span {
    color: #f09560;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.services-banner-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.services-banner-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

.what-we-do-section {
    background-color: #faf6f0;
    padding: 6rem 2rem 2rem;
}

.what-we-do-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.what-we-do-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    color: #271f1a;
    margin-bottom: 2rem;
}

.what-we-do-content {
    max-width: 800px;
}

.what-we-do-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Customized Hiring Banner styling */
.custom-hiring-section {
    background-color: var(--primary-color);
    padding: 3.5rem 4rem;
    color: var(--text-white);
}

.custom-hiring-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.custom-hiring-text {
    max-width: 760px;
}

.custom-hiring-title {
    font-family: var(--font-serif);
    font-size: 2.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.custom-hiring-desc {
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.custom-hiring-action {
    flex-shrink: 0;
}

/* Our Service Models Section */
.service-models-section {
    background-color: #faf6f0;
    padding: 6rem 2rem;
}

.service-models-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.models-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    text-align: center;
    color: #271f1a;
    margin-bottom: 0.5rem;
}

.models-tagline {
    font-size: 1.02rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
    display: block;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.model-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 109, 60, 0.06);
}

.model-badge {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 1.5rem;
}

.badge-orange {
    background-color: var(--primary-color);
}

.badge-blue {
    background-color: #2b82c2;
}

.badge-olive {
    background-color: #a9a32c;
}

.badge-brown {
    background-color: #7c3d1e;
}

.model-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.model-card-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Industries We Serve Section */
.industries-serve-section {
    background-color: #3c200f;
    padding: 2.5rem 2rem;
    text-align: center;
}

.industries-serve-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.industries-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.industries-pills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.15rem;
    max-width: 880px;
    margin: 0 auto;
}

.industry-pill {
    background-color: rgba(194, 109, 60, 0.12);
    border: 1px solid rgba(194, 109, 60, 0.28);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.42rem 1.05rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: default;
    opacity: 0;
}

.industry-pill:nth-child(1) { animation-delay: 0.04s; }
.industry-pill:nth-child(2) { animation-delay: 0.08s; }
.industry-pill:nth-child(3) { animation-delay: 0.12s; }
.industry-pill:nth-child(4) { animation-delay: 0.16s; }
.industry-pill:nth-child(5) { animation-delay: 0.2s; }
.industry-pill:nth-child(6) { animation-delay: 0.24s; }
.industry-pill:nth-child(7) { animation-delay: 0.28s; }
.industry-pill:nth-child(8) { animation-delay: 0.32s; }
.industry-pill:nth-child(9) { animation-delay: 0.36s; }
.industry-pill:nth-child(10) { animation-delay: 0.4s; }
.industry-pill:nth-child(11) { animation-delay: 0.44s; }
.industry-pill:nth-child(12) { animation-delay: 0.48s; }
.industry-pill:nth-child(13) { animation-delay: 0.52s; }
.industry-pill:nth-child(14) { animation-delay: 0.56s; }
.industry-pill:nth-child(15) { animation-delay: 0.6s; }
.industry-pill:nth-child(16) { animation-delay: 0.64s; }
.industry-pill:nth-child(17) { animation-delay: 0.68s; }
.industry-pill:nth-child(18) { animation-delay: 0.72s; }
.industry-pill:nth-child(19) { animation-delay: 0.76s; }
.industry-pill:nth-child(20) { animation-delay: 0.8s; }


.industry-pill:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 109, 60, 0.25);
}

/* Centered CTA Section styling */
.centered-cta-section {
    background-color: #faf6f0;
    padding: 4rem 2rem;
    text-align: center;
}

.centered-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.centered-cta-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    color: #271f1a;
    margin-bottom: 1.25rem;
}

.centered-cta-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.centered-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.cta-btn-solid {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.8rem 2rem;
}

.cta-btn-solid:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.cta-btn-outline {
    background-color: transparent;
    border-color: #271f1a;
    color: #271f1a;
    padding: 0.8rem 2rem;
}

.cta-btn-outline:hover {
    background-color: #271f1a;
    color: var(--text-white);
}

/* How It Works Subpage Styles */
.employers-process-section {
    background-color: #faf6f0;
    padding: 2.25rem 2rem;
}

.employers-process-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-header-badge {
    width: 52px;
    height: 52px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(194, 109, 60, 0.15);
    flex-shrink: 0;
}

.process-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #271f1a;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.process-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 3rem 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    opacity: 0;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 109, 60, 0.06);
}

/* Employer step cards — warm sandy tan background */
.employers-process-container .step-card {
    background-color: rgba(201, 164, 127, 0.3);
    border-color: rgba(0, 0, 0, 0.04);
}

.employers-process-container .step-card:hover {
    box-shadow: 0 10px 30px rgba(100, 60, 20, 0.15);
}

.employers-process-container .step-card-title {
    color: #271f1a;
}

.employers-process-container .step-card-desc {
    color: rgba(39, 31, 26, 0.75);
}

.employers-process-container .step-watermark {
    color: rgba(39, 31, 26, 0.06);
}

/* Candidate step cards — same warm sandy tan color theme */
.candidates-process-container .step-card {
    background-color: rgba(201, 164, 127, 0.3);
    border-color: rgba(0, 0, 0, 0.04);
}

.candidates-process-container .step-card:hover {
    box-shadow: 0 10px 30px rgba(100, 60, 20, 0.15);
}

.candidates-process-container .step-card-title {
    color: #271f1a;
}

.candidates-process-container .step-card-desc {
    color: rgba(39, 31, 26, 0.75);
}

.candidates-process-container .step-watermark {
    color: rgba(39, 31, 26, 0.06);
}

.step-watermark {
    position: absolute;
    top: -1.5rem;
    right: -0.5rem;
    font-family: var(--font-serif);
    font-size: 9.5rem;
    font-weight: 900;
    color: rgba(194, 109, 60, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.step-badge {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card-title {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.step-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    z-index: 1;
}

.process-action-wrapper {
    margin-top: 3.5rem;
    text-align: left;
}

.process-btn {
    padding: 0.8rem 2rem;
}

.process-section-divider {
    border: none;
    height: 4px;
    background: linear-gradient(to right, #c26d3c 33.33%, #a9a32c 33.33%, #a9a32c 66.66%, #2b82c2 66.66%);
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.badge-dark-brown {
    background-color: #3c200f !important;
    box-shadow: 0 4px 15px rgba(60, 32, 15, 0.2) !important;
}

.candidates-process-section {
    background-color: #faf6f0;
    padding: 5rem 2rem;
}

.candidates-process-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Why Our Process Works styling */
.why-process-section {
    background-color: #3c200f;
    padding: 5rem 2rem;
    text-align: center;
}

.why-process-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-process-title {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3.5rem;
}

.why-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-process-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2.5rem 1.75rem;
    text-align: left;
    transition: var(--transition-smooth);
    opacity: 0;
}

.why-process-card:nth-child(1) { animation-delay: 0.1s; }
.why-process-card:nth-child(2) { animation-delay: 0.2s; }
.why-process-card:nth-child(3) { animation-delay: 0.3s; }
.why-process-card:nth-child(4) { animation-delay: 0.4s; }

.why-process-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(194, 109, 60, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-card-title-sub {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.why-card-desc-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

/* Footer Section */
.site-footer {
    background-color: #2b160b;
    padding: 5rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 3px solid var(--primary-color);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1.1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col .footer-logo {
    height: 48px;
    object-fit: contain;
    display: block;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.footer-profile-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-info-list li a:hover {
    color: var(--primary-color);
}

.info-icon {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list li a {
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-list li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.cities-subgrids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cities-list li a {
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.6);
}

.cities-list li a:hover {
    color: var(--primary-color);
}

.footer-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-btn-solid {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.footer-btn-solid:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.footer-btn-outline {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.footer-btn-outline:hover {
    background-color: var(--text-white);
    color: #2b160b;
    border-color: var(--text-white);
}

.footer-info-note {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* About Us Subpage Styles */
.about-hero-section {
    position: relative;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    padding: 5.5rem 2rem;
    color: var(--text-white);
    border-bottom: 3px solid var(--primary-color);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(39, 31, 26, 0.94) 0%, rgba(39, 31, 26, 0.8) 50%, rgba(39, 31, 26, 0.4) 100%);
    pointer-events: none;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-hero-content {
    max-width: 680px;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.about-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

/* Our Story Section */
.our-story-section {
    background-color: #faf6f0;
    padding: 4.5rem 2rem;
}

.our-story-container {
    max-width: 920px;
    margin: 0 auto;
}

.our-story-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #3c200f;
    margin-bottom: 1.75rem;
}

.our-story-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #524741;
    margin-bottom: 1.25rem;
}

.our-story-content p:last-child {
    margin-bottom: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: #faf6f0;
    padding: 1rem 2rem 4.5rem;
}

.vision-mission-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.vision-card {
    background-color: #3c200f;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(60, 32, 15, 0.12);
    opacity: 0;
}

.mission-card {
    background-color: rgba(239, 230, 217, 0.65);
    border: 1px solid rgba(194, 109, 60, 0.2);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    opacity: 0;
}

.vm-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.badge-vision {
    background-color: rgba(194, 109, 60, 0.35);
    color: #f09560;
}

.badge-mission {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.vm-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.vision-card .vm-title {
    color: var(--text-white);
}

.mission-card .vm-title {
    color: #3c200f;
}

.vm-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.mission-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.mission-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #524741;
}

.mission-checklist .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* What We Stand For Section */
.stand-for-section {
    background-color: #faf6f0;
    padding: 4.5rem 2rem;
    border-top: 1px solid rgba(194, 109, 60, 0.1);
}

.stand-for-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.stand-for-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #3c200f;
    margin-bottom: 3rem;
}

.stand-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stand-card {
    background-color: rgba(239, 230, 217, 0.65);
    border-radius: 12px;
    padding: 2.25rem 1.75rem;
    text-align: left;
    border: 1px solid rgba(194, 109, 60, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    opacity: 0;
}

.stand-card:nth-child(1) { animation-delay: 0.1s; }
.stand-card:nth-child(2) { animation-delay: 0.2s; }
.stand-card:nth-child(3) { animation-delay: 0.3s; }
.stand-card:nth-child(4) { animation-delay: 0.4s; }
.stand-card:nth-child(5) { animation-delay: 0.5s; }
.stand-card:nth-child(6) { animation-delay: 0.6s; }

.stand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 109, 60, 0.08);
}

.stand-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.badge-orange {
    background-color: var(--primary-color);
}

.badge-blue {
    background-color: #2b82c2;
}

.badge-green {
    background-color: #929929;
}

.stand-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #271f1a;
    margin-bottom: 0.75rem;
}

.stand-card-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Why Choose BMRK About Section */
.why-choose-about-section {
    background-color: #3c200f;
    padding: 5rem 2rem;
    color: var(--text-white);
    text-align: center;
}

.why-choose-about-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-choose-about-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3.5rem;
}

.why-choose-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.why-about-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-smooth);
    opacity: 0;
}

.why-about-card:nth-child(1) { animation-delay: 0.1s; }
.why-about-card:nth-child(2) { animation-delay: 0.15s; }
.why-about-card:nth-child(3) { animation-delay: 0.2s; }
.why-about-card:nth-child(4) { animation-delay: 0.25s; }
.why-about-card:nth-child(5) { animation-delay: 0.3s; }
.why-about-card:nth-child(6) { animation-delay: 0.35s; }
.why-about-card:nth-child(7) { animation-delay: 0.4s; }
.why-about-card:nth-child(8) { animation-delay: 0.45s; }
.why-about-card:nth-child(9) { animation-delay: 0.5s; }

.why-about-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(194, 109, 60, 0.4);
}

.why-about-card .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.why-about-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

/* Get In Touch Section */
.get-in-touch-section {
    background-color: #faf6f0;
    padding: 4.5rem 2rem;
}

.get-in-touch-container {
    max-width: 900px;
    margin: 0 auto;
}

.get-in-touch-card {
    background-color: rgba(239, 230, 217, 0.65);
    border-radius: 16px;
    border: 1px solid rgba(194, 109, 60, 0.22);
    padding: 2.75rem 3.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    opacity: 0;
}

.touch-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #3c200f;
    margin-bottom: 1.25rem;
}

.touch-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.touch-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    font-weight: 500;
}

.touch-details a {
    color: #3c200f;
    transition: var(--transition-smooth);
}

.touch-details a:hover {
    color: var(--primary-color);
}

.touch-btn {
    padding: 0.85rem 2.25rem;
}

/* Contact Us Subpage Styles */
.contact-banner-section {
    padding: 4.25rem 2rem;
}

.contact-main-section {
    background-color: #faf6f0;
    padding: 4.5rem 2rem;
}

.contact-main-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quick Contact Card */
.quick-contact-card {
    background-color: #3c200f;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(60, 32, 15, 0.12);
}

.quick-contact-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.quick-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.quick-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.qc-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(194, 109, 60, 0.22);
    color: #f09560;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qc-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.qc-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.qc-value {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

a.qc-value {
    transition: var(--transition-smooth);
}

a.qc-value:hover {
    color: #f09560;
}

/* Our Offices Card */
.our-offices-card {
    background-color: #ffffff;
    border: 1px solid rgba(194, 109, 60, 0.15);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.offices-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #3c200f;
    margin-bottom: 1.5rem;
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-item {
    background-color: rgba(239, 230, 217, 0.45);
    border: 1px solid rgba(194, 109, 60, 0.15);
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: var(--transition-smooth);
}

.office-item:hover {
    transform: translateY(-2px);
    border-color: rgba(194, 109, 60, 0.35);
    background-color: rgba(239, 230, 217, 0.75);
}

.office-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(194, 109, 60, 0.15);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-header-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.25rem;
}

.office-name {
    font-size: 1rem;
    font-weight: 700;
    color: #271f1a;
}

.office-type-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: #c26d3c;
    background-color: rgba(194, 109, 60, 0.12);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.office-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Form Right Column */
.contact-form-wrapper {
    background-color: #ffffff;
    border: 1px solid rgba(194, 109, 60, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.form-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(239, 230, 217, 0.4);
    border-bottom: 1px solid rgba(194, 109, 60, 0.15);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1.35rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
    background-color: rgba(194, 109, 60, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    background-color: #ffffff;
    border-bottom-color: var(--primary-color);
    font-weight: 700;
}

.form-body {
    padding: 3rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

.form-panel-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: #3c200f;
    margin-bottom: 0.5rem;
}

.form-panel-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #271f1a;
}

.required {
    color: var(--primary-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1.15rem;
    border-radius: 8px;
    border: 1px solid rgba(194, 109, 60, 0.2);
    background-color: rgba(239, 230, 217, 0.25);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #271f1a;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(194, 109, 60, 0.12);
}

.form-submit-row {
    margin-top: 0.5rem;
}

.submit-btn {
    padding: 0.9rem 2.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 8px;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .cta-block {
        padding: 5rem 3rem;
    }
    
    .cta-left {
        padding-right: 5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .stand-for-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.8rem 1rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .hero-content {
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.85rem;
        flex-direction: column;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .services-section {
        padding: 4rem 1.25rem;
    }
    
    .services-header {
        margin-bottom: 2.5rem;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-section {
        padding: 4rem 1.25rem;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-section {
        padding: 4rem 1.25rem;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .split-cta-section {
        flex-direction: column;
    }
    
    .cta-block {
        width: 100%;
        padding: 4rem 1.5rem;
    }
    
    .cta-left {
        clip-path: none;
        padding-right: 1.5rem;
    }
    
    .cta-right {
        padding-left: 1.5rem;
    }
    
    .cta-inner {
        max-width: 100%;
        text-align: left;
    }
    
    .cta-title {
        font-size: 1.95rem;
    }
    
    .cta-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .site-footer {
        padding: 4rem 1.25rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .footer-title {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .services-banner-section {
        padding: 2.75rem 1.25rem;
    }
    .services-banner-title {
        font-size: 2.2rem;
    }
    .services-banner-subtitle {
        font-size: 0.95rem;
    }
    .what-we-do-section {
        padding: 4rem 1.25rem 1rem;
    }
    .what-we-do-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    .what-we-do-content p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .custom-hiring-section {
        padding: 3rem 1.25rem;
    }
    .custom-hiring-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .custom-hiring-title {
        font-size: 1.95rem;
    }
    .custom-hiring-desc {
        font-size: 0.95rem;
    }
    .custom-hiring-action {
        width: 100%;
    }
    .custom-hiring-action .btn {
        width: 100%;
    }
    .service-models-section {
        padding: 4rem 1.25rem;
    }
    .models-title {
        font-size: 2.2rem;
    }
    .models-tagline {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .model-card {
        padding: 2rem 1.5rem;
    }

    .industries-serve-section {
        padding: 1.85rem 1.25rem;
    }
    .industries-title {
        font-size: 1.75rem;
        margin-bottom: 1.15rem;
    }
    .industries-pills-list {
        gap: 0.75rem;
    }
    .industry-pill {
        padding: 0.34rem 0.85rem;
        font-size: 0.78rem;
    }

    .centered-cta-section {
        padding: 2.75rem 1.25rem;
    }
    .centered-cta-title {
        font-size: 2.2rem;
    }
    .centered-cta-desc {
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }
    .centered-cta-actions {
        flex-direction: column;
        gap: 0.85rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .centered-cta-actions .btn {
        width: 100%;
    }

    .employers-process-section {
        padding: 1.85rem 1.25rem;
    }
    .process-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.15rem;
    }
    .process-title {
        font-size: 2.2rem;
    }
    .process-subtitle {
        font-size: 0.95rem;
        line-height: 1.45;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step-card {
        padding: 2.25rem 1.5rem;
    }
    .step-watermark {
        font-size: 7.5rem;
        top: -1rem;
    }
    
    .process-action-wrapper {
        margin-top: 2rem;
        text-align: center;
    }
    .process-btn {
        width: 100%;
    }
    .candidates-process-section {
        padding: 4rem 1.25rem;
    }

    .why-process-section {
        padding: 4rem 1.25rem;
    }
    .why-process-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .why-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-process-card {
        padding: 2rem 1.5rem;
    }

    .about-hero-section {
        padding: 3.5rem 1.25rem;
    }
    .about-hero-title {
        font-size: 2.1rem;
    }
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    .our-story-section {
        padding: 3rem 1.25rem;
    }
    .our-story-title {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }
    .vision-mission-section {
        padding: 0 1.25rem 3rem;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .vision-card, .mission-card {
        padding: 2.25rem 1.5rem;
    }
    .stand-for-section {
        padding: 3rem 1.25rem;
    }
    .stand-for-title {
        font-size: 1.85rem;
        margin-bottom: 2rem;
    }
    .stand-for-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .why-choose-about-section {
        padding: 3.5rem 1.25rem;
    }
    .why-choose-about-title {
        font-size: 1.85rem;
        margin-bottom: 2.25rem;
    }
    .why-choose-about-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .get-in-touch-section {
        padding: 3rem 1.25rem;
    }
    .get-in-touch-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
        padding: 2rem 1.5rem;
    }
    .touch-title {
        font-size: 1.75rem;
    }
    .touch-action {
        width: 100%;
    }
    .touch-btn {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-tabs {
        grid-template-columns: 1fr;
    }
    .tab-btn {
        padding: 1rem;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(194, 109, 60, 0.15);
    }
    .tab-btn.active {
        border-bottom-color: transparent;
        border-left: 4px solid var(--primary-color);
    }
    .form-body {
        padding: 1.75rem 1.25rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
