@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');
:root {
  --red: #C54140;
  --red-dark: #A93635;
  --red-light: #F8E9E9;
  --black: #151515;
  --white: #FFFFFF;
  --gray-100: #F7F7F6;
  --gray-200: #E9E9E7;
  --gray-500: #777777;
  --gray-700: #444444;
  --heading-font: "Manrope", sans-serif;
  --body-font: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html, body {
    overflow-x: clip;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--black);
}
a {
  color: inherit;
  text-decoration: none;
}
/* ANIMATIONS */
/* Fade Up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}
.animate-fade-up.is-visible {
    animation: fadeUp 0.8s ease-out both;
}
/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.animate-fade-in {
    opacity: 0;
}
.animate-fade-in.is-visible {
    animation: fadeIn 0.7s ease-out both;
}
/* Float */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
/* Pulse */
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(197, 65, 64, 0);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(197, 65, 64, 0.12);
    }
}
.animate-pulse {
    animation: pulse 2.5s ease-in-out infinite;
}
/* ANIMATION DELAYS */
.delay-100 {
    animation-delay: 100ms !important;
}
.delay-200 {
    animation-delay: 200ms !important;
}
.delay-300 {
    animation-delay: 300ms !important;
}
.delay-400 {
    animation-delay: 400ms !important;
}
/* HOVER */
.hover-lift {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}
.hover-red {
    transition: color 0.2s ease;
}
.hover-red:hover {
    color: var(--red);
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-fade-up,
    .animate-fade-in {
        opacity: 1;
        transform: none;
    }
}

/* TOP BAR - BASE & VARIABLES */
.top-bar {
    width: 100%;
    min-height: 42px;
    background: var(--black, #0f0f0f);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--body-font, system-ui, -apple-system, sans-serif);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 42px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
.top-bar.collapsed {
    max-height: 0;
    min-height: 0;
    opacity: 0;
    border-bottom-color: transparent;
}
.top-bar .container-fluid,
.top-bar .row {
    min-height: 42px;
}
.top-bar-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    width: 100%;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.top-bar-item i {
    flex-shrink: 0;
    width: 16px;
    color: var(--red, #e50914);
    font-size: 13px;
    text-align: center;
    transition: color 0.2s ease, transform 0.2s ease;
}
.top-bar-item:hover {
    color: #ffffff;
}
.top-bar-item:hover i {
    color: #ffffff;
    transform: translateY(-1px);
}
.top-bar-item .fa-whatsapp,
.top-bar-item:hover .fa-whatsapp {
    color: #25D366;
}
@media (min-width: 768px) {
    .top-bar-contact .top-bar-item {
        position: relative;
    }
    .top-bar-contact .top-bar-item + .top-bar-item::before {
        content: "";
        position: absolute;
        left: -0.75rem;
        top: 50%;
        width: 1px;
        height: 14px;
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-50%);
    }
}
@media (max-width: 767.98px) {
    .top-bar {
        padding: 8px 0;
        min-height: auto;
    }
    .top-bar .container-fluid,
    .top-bar .row {
        min-height: auto;
    }
    .top-bar-contact {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px 16px !important;
        width: 100% !important;
    }
    .top-bar-contact .top-bar-item:nth-child(1),
    .top-bar-contact .top-bar-item:nth-child(2) {
        flex: 0 1 auto;
        min-height: 28px;
        font-size: 11px;
    }
    .top-bar-contact .top-bar-item:nth-child(3) {
        flex: 0 0 100% !important;
        justify-content: center !important;
        min-height: 26px;
        font-size: 11px;
    }
    .top-bar-item {
        color: rgba(255, 255, 255, 0.95);
    }
}
@media (max-width: 360px) {
    .top-bar-contact {
        gap: 4px 8px !important;
    }
    .top-bar-contact .top-bar-item:nth-child(1),
    .top-bar-contact .top-bar-item:nth-child(2) {
        font-size: 10px;
    }
}


/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    min-height: 68px;
    padding: 0;
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-200);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
    transform: none !important;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: none !important;
}
.navbar > .container-fluid {
    min-height: 68px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.navbar-logo {
    display: block;
    width: 155px;
    height: auto;
    object-fit: contain;
    transition:
        width 0.3s ease,
        transform 0.3s ease;
}
.navbar.scrolled .navbar-logo {
    width: 145px;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.navbar .nav-item {
    display: flex;
    align-items: center;
}
.navbar .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px !important;
    color: var(--black);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 0.2s ease;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 1px;
    width: auto;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition:
        transform 0.25s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--red);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.language-dropdown {
    position: relative;
}
.language-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 70px;
    min-height: 38px;
    padding: 7px 11px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 7px;
    color: var(--black);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}
.language-btn:hover {
    color: var(--red);
    background: var(--white);
    border-color: var(--red);
}
.language-btn:focus {
    color: var(--black);
    background: var(--white);
    border-color: var(--red);
    box-shadow:
        0 0 0 3px rgba(197, 65, 64, 0.10);
}
.language-btn.show {
    color: var(--black);
    background: var(--white);
    border-color: var(--red);
}
.language-flag {
    display: block;
    width: 25px;
    height: 18px;
    object-fit: cover;
    flex-shrink: 0;
}
.language-btn::after {
    margin-left: 2px;
    vertical-align: middle;
}
.language-menu {
    min-width: 155px;
    margin-top: 8px !important;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 9px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12);
}
.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 6px;
    color: var(--black);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}
.language-menu .dropdown-item:hover {
    color: var(--red);
    background: rgba(197, 65, 64, 0.07);
}
.language-menu .dropdown-item.active {
    color: var(--red);
    background: rgba(197, 65, 64, 0.08);
}
.language-option-flag {
    display: block;
    width: 25px;
    height: 18px;
    object-fit: cover;
    flex-shrink: 0;
}
.navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 17px;
    border: 0;
    border-radius: 50px;
    background: var(--red);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.navbar-cta:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow:
        0 6px 16px rgba(197, 65, 64, 0.20);
}
.navbar-cta:focus {
    color: var(--white);
    box-shadow:
        0 0 0 3px rgba(197, 65, 64, 0.15);
}
.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 38px;
    padding: 6px 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 7px;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}
.navbar-toggler:hover {
    background: #fff;
    border-color: var(--red);
}
.navbar-toggler:focus {
    background: #fff;
    border-color: var(--red);
    box-shadow:
        0 0 0 3px rgba(197, 65, 64, 0.10);
}
@media (max-width: 991.98px) {
    .navbar {
        position: sticky;
        top: 0;
        min-height: 64px;
        transform: none !important;
    }
    .navbar.scrolled {
        transform: none !important;
    }
    .navbar > .container-fluid {
        min-height: 64px;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .navbar-logo {
        width: 120px;
    }
    .navbar.scrolled .navbar-logo {
        width: 115px;
    }
    .navbar-collapse {
        width: 100%;
        padding: 15px 0 20px;
    }
    .navbar-nav {
        display: flex;
        align-items: stretch;
        width: 100%;
        gap: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .navbar .nav-item {
        width: 100%;
    }
    .navbar .nav-link {
        display: flex;
        width: 100%;
        padding: 10px 0 !important;
    }
    .navbar .nav-link::after {
        left: 0;
        right: auto;
        bottom: 3px;
        width: 22px;
        height: 2px;
    }
    .navbar-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 12px;
        gap: 10px;
    }
    .language-dropdown {
        width: 100%;
    }
    .language-btn {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        min-height: 42px;
    }
    .language-menu {
        width: 100%;
        min-width: 100%;
        margin-top: 5px !important;
    }
    .navbar-cta {
        width: 100%;
        min-height: 42px;
    }
}
@media (max-width: 576px) {
    .navbar {
        position: sticky;
        top: 0;
        width: 100%;
        max-width: 100%;
        min-height: 60px;
        transform: none !important;
        overflow: visible;
    }
    .navbar.scrolled {
        transform: none !important;
    }
    .navbar > .container-fluid {
        width: 100%;
        max-width: 100%;
        min-height: 60px;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .navbar-logo {
        width: 115px;
        max-width: 115px;
    }
    .navbar.scrolled .navbar-logo {
        width: 112px;
    }
    .navbar-brand {
        flex-shrink: 0;
    }
    .navbar-toggler {
        width: 40px;
        height: 38px;
        flex-shrink: 0;
    }
    .navbar-collapse {
        width: 100%;
        padding: 14px 0 18px;
    }
    .navbar-nav {
        width: 100%;
    }
    .navbar .nav-item {
        width: 100%;
    }
    .navbar .nav-link {
        width: 100%;
        padding: 10px 0 !important;
        font-size: 15px;
    }
    .navbar-actions {
        width: 100%;
        margin-top: 10px;
        gap: 10px;
    }
    .language-btn {
        width: 100%;
        min-height: 42px;
        padding: 9px 12px;
    }
    .navbar-cta {
        width: 100%;
        min-height: 42px;
        padding: 10px 16px;
    }
}
@media (max-width: 380px) {
    .navbar > .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .navbar-logo {
        width: 105px;
    }
    .navbar.scrolled .navbar-logo {
        width: 103px;
    }
    .navbar-toggler {
        width: 38px;
        height: 36px;
    }
    .navbar .nav-link {
        font-size: 14px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-logo,
    .navbar .nav-link,
    .navbar .nav-link::after,
    .navbar-cta,
    .language-btn,
    .language-menu .dropdown-item {
        transition: none !important;
    }
}


/*  HERO */
.hero {
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.15) 100%
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 0;
    color: var(--white);
}
.hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--red);
}
.hero h1 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--white);
}
.hero h1 span {
    display: block;
    color: var(--red);
}
.hero-content p {
    max-width: 540px;
    margin: 24px 0 32px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 0;
    border-radius: 50px;
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.hero-btn:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 65, 64, 0.3);
}
.hero .carousel-indicators {
    z-index: 5;
    justify-content: flex-start;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 12px 30px;
}
.hero .carousel-indicators button {
    width: 28px;
    height: 3px;
    margin: 0 4px;
    border: 0;
    opacity: 0.4;
    transition:
        width 0.3s ease,
        opacity 0.3s ease;
}
.hero .carousel-indicators button.active {
    width: 55px;
    opacity: 1;
    background: var(--red);
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 70px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 1;
}
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    background-size: 45%;
    backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
    .hero-slide {
        min-height: 570px;
    }
    .hero-content {
        padding: 70px 20px;
    }
    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        display: none;
    }
    .hero .carousel-indicators {
        padding-left: 20px;
        padding-bottom: 22px;
    }
}


/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.about-image {
    position: relative;
    margin-right: 30px;
}
.about-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
}
.about-experience {
    position: absolute;
    right: -30px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 125px;
    height: 125px;
    padding: 10px;
    background: var(--red);
    color: var(--white);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(197, 65, 64, 0.25);
}
.about-experience strong {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}
.about-experience span {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.15em;
    opacity: 0.8;
}
.about-content {
    padding-left: 25px;
}
.about-content h2 {
    margin: 8px 0 22px;
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.about-content h2 span {
    display: block;
    color: var(--red);
}
.about-content > p {
    max-width: 570px;
    color: var(--gray-500);
    line-height: 1.7;
}
.about-content .about-lead {
    font-size: 17px;
    color: var(--black);
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}
.about-feature {
    display: flex;
    gap: 13px;
}
.about-feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--red-light);
    color: var(--red);
}
.about-feature h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
}
.about-feature p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-500);
}
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    padding-bottom: 5px;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}
.about-link:hover {
    color: var(--red);
    gap: 14px;
}
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
    }
    .about-image {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .about-section {
        padding: 70px 0;
    }
    .about-image img {
        height: 400px;
    }
    .about-experience {
        right: 10px;
        bottom: 20px;
        width: 100px;
        height: 100px;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* AUDIENCE SECTION */
.audience-section {
    padding: 90px 0;
    background: var(--gray-100);
}
.section-heading {
    max-width: 650px;
    margin: 0 auto;
}
.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--red);
}
.section-heading h2 {
    margin: 0 0 14px;
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
}
.section-heading p {
    max-width: 580px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.7;
}
.audience-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    color: var(--black);
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.audience-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}
.audience-card:hover {
    color: var(--black);
    transform: translateY(-5px);
    border-color: rgba(197, 65, 64, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}
.audience-card:hover::before {
    transform: scaleY(1);
}
.audience-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(197, 65, 64, 0.08);
    color: var(--red);
    font-size: 20px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
.audience-card:hover .audience-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
}
.audience-content {
    position: relative;
    z-index: 1;
}
.audience-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--red);
}
.audience-content h3 {
    margin: 0 0 8px;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.audience-content p {
    max-width: 430px;
    margin: 0 0 16px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}
.audience-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}
.audience-card:hover .audience-link {
    gap: 13px;
    color: var(--red);
}
.audience-link i {
    color: var(--red);
}
@media (max-width: 767px) {
    .audience-section {
        padding: 70px 0;
    }
    .audience-card {
        align-items: flex-start;
        padding: 25px;
        gap: 18px;
    }
    .audience-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .audience-content h3 {
        font-size: 21px;
    }
    .audience-content p {
        font-size: 13px;
    }
}


/* WHY ALBAFORCE */
.why-section {
    padding: 100px 0;
    background: var(--white);
}
.why-content {
    padding-right: 30px;
}
.why-content h2 {
    margin: 8px 0 20px;
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.why-content h2 span {
    display: block;
    color: var(--red);
}
.why-lead {
    max-width: 540px;
    margin-bottom: 35px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-500);
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.why-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(197, 65, 64, 0.08);
    color: var(--red);
    font-size: 17px;
}
.why-item h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
}
.why-item p {
    max-width: 450px;
    margin: 0;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}
.why-visual {
    position: relative;
    margin-left: 25px;
}
.why-visual img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
}
.why-stat {
    position: absolute;
    left: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 230px;
    padding: 18px 22px;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
.why-stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--red);
}
.why-stat strong,
.why-stat small {
    display: block;
}
.why-stat strong {
    font-size: 14px;
}
.why-stat small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}
@media (max-width: 991px) {
    .why-content {
        padding-right: 0;
    }
    .why-visual {
        margin-left: 20px;
    }
}
@media (max-width: 767px) {
    .why-section {
        padding: 70px 0;
    }
    .why-visual {
        margin-left: 10px;
    }
    .why-visual img {
        height: 400px;
    }
    .why-stat {
        left: 10px; 
        bottom: 20px;
        min-width: 200px;
        padding: 15px 18px;
    }
    .why-stat-number {
        font-size: 26px;
    }
}


/* HOW IT WORKS */
.process-section {
    padding: 100px 0;
    background: var(--gray-100);
}
.process-section .section-heading h2 span {
    color: var(--red);
}
.process-column {
    height: 100%;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.process-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.process-column-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--gray-200);
}
.process-column-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 11px;
    background: rgba(197, 65, 64, 0.08);
    color: var(--red);
    font-size: 19px;
}
.process-column-header span {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--red);
}
.process-column-header h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 700;
}
.process-steps {
    padding: 10px 0 5px;
}
.process-step {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 20px 0;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 57px;
    bottom: -5px;
    width: 1px;
    background: var(--gray-200);
}
.process-number {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(197, 65, 64, 0.25);
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}
.process-step h4 {
    margin: 3px 0 6px;
    font-size: 15px;
    font-weight: 700;
}
.process-step p {
    max-width: 430px;
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.6;
}
.process-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--red);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}
.process-link:hover {
    gap: 14px;
    color: var(--red);
}
@media (max-width: 767px) {
    .process-section {
        padding: 70px 0;
    }
    .process-column {
        padding: 25px;
    }
    .process-column-header h3 {
        font-size: 19px;
    }
    .process-step {
        gap: 14px;
    }
}


/* FINAL CTA */
.cta-section {
    padding: 100px 0;
    background: var(--gray-100);
}
.cta-box {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 70px;
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.cta-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.cta-content h2 {
    margin: 0 0 18px;
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
}
.cta-content h2 span {
    color: var(--red);
}
.cta-content p {
    max-width: 570px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.cta-btn-primary {
    background: var(--red);
    color: var(--white);
}
.cta-btn-primary:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(197, 65, 64, 0.3);
}
.cta-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--white);
}
.cta-btn-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}
.cta-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    width: 400px;
    height: 400px;
    transform: translateY(-50%);
    border: 1px solid rgba(197, 65, 64, 0.25);
    border-radius: 50%;
}
.cta-decoration span {
    position: absolute;
    border: 1px solid rgba(197, 65, 64, 0.2);
    border-radius: 50%;
}
.cta-decoration span:nth-child(1) {
    inset: 45px;
}
.cta-decoration span:nth-child(2) {
    inset: 95px;
}
.cta-decoration span:nth-child(3) {
    inset: 145px;
}
@media (max-width: 767px) {
    .cta-section {
        padding: 70px 0;
    }
    .cta-box {
        min-height: auto;
        padding: 45px 28px;
    }
    .cta-content h2 {
        font-size: 2.6rem;
    }
    .cta-content p {
        font-size: 14px;
    }
    .cta-actions {
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
    }
    .cta-decoration {
        right: -180px;
        width: 350px;
        height: 350px;
        opacity: 0.6;
    }
}


/* FOOTER */
.footer {
    position: relative;
    background: #242424;
    color: #d6d6d6;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--white);
    border-radius: 8px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.footer-logo img {
    display: block;
    width: 155px;
    height: auto;
}
.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25);
}
.footer-description {
    max-width: 380px;
    margin-bottom: 0;
    color: #a9a9a9;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}
.footer-title {
    position: relative;
    margin: 0 0 20px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.footer-title::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    margin-top: 9px;
    background: var(--red);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.footer-links li {
    margin: 0;
    padding: 0;
}
.footer-links a {
    display: inline-block;
    color: #a9a9a9;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #a9a9a9;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.footer-contact a:hover {
    color: var(--white);
    transform: translateX(3px);
}
.footer-contact i {
    flex: 0 0 17px;
    width: 17px;
    margin-top: 3px;
    color: var(--red);
    font-size: 14px;
    text-align: center;
    transition:
        color 0.2s ease;
}
.footer-contact a:hover i {
    color: #e15b5a;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #bdbdbd;
    font-size: 13px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}
.footer-social:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-4px);
}
.footer-bottom {
    border-color: rgba(255, 255, 255, 0.10) !important;
}
.footer-copyright {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: #777777 ;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}
.footer-copyright a {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
.footer-copyright a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}
.designer-logo {
    display: block;
    width: 65px;
    height: auto;
    opacity: 0.75;
    filter: brightness(0) invert(1);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
.footer-copyright a:hover .designer-logo {
    opacity: 1;
    transform: translateY(-1px);
}
.footer .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .footer-description {
        max-width: 450px;
    }
}
@media (max-width: 767px) {
    .footer {
        text-align: left;
    }
    .footer .row {
        row-gap: 35px !important;
    }
    .footer-description {
        max-width: 100%;
    }
    .footer-logo img {
        width: 145px;
    }
}
@media (max-width: 576px) {
    .footer-logo {
        padding: 7px 12px;
    }
    .footer-logo img {
        width: 135px;
    }
    .footer-description {
        font-size: 13px;
        line-height: 1.7;
    }
    .footer-title {
        margin-bottom: 16px;
        font-size: 13px;
    }
    .footer-links {
        gap: 8px;
    }
    .footer-links a,
    .footer-contact a {
        font-size: 12px;
    }
    .footer-contact {
        gap: 11px;
    }
    .footer-bottom .d-flex {
        align-items: flex-start !important;
    }
    .footer-copyright {
        font-size: 11px;
    }
    .designer-logo {
        width: 60px;
    }
}


/* PAGE HERO */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}
.page-hero:hover .page-hero-bg {
    transform: scale(1.05);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.60) 45%,
            rgba(0, 0, 0, 0.30) 100%
        );
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero-content {
    max-width: 700px;
    padding: 80px 0;
}
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.page-hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
}
.page-hero h1 {
    margin: 0;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.page-hero h1 span {
    color: var(--red);
}
.page-hero p {
    max-width: 580px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}
@media (max-width: 767px) {
    .page-hero {
        min-height: 350px;
    }
    .page-hero-content {
        padding: 65px 0;
    }
    .page-hero h1 {
        font-size: 40px;
    }
    .page-hero p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.7;
    }
    .page-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.50)
            );
    }
}
@media (max-width: 576px) {
    .page-hero {
        min-height: 320px;
    }
    .page-hero-content {
        padding: 55px 0;
    }
    .page-hero h1 {
        font-size: 36px;
    }
    .page-hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }
    .page-hero p {
        font-size: 13px;
    }
}


/* TALENTS INTRO */
.talents-intro {
    padding: 100px 0;
    background: var(--white);
}
.talents-intro-content {
    max-width: 680px;
}
.talents-intro-content h2 {
    margin: 12px 0 22px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.talents-intro-content h2 span {
    color: var(--red);
}
.talents-intro-content p {
    margin-bottom: 15px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
}
.talents-intro-content .talents-intro-lead {
    color: var(--gray-700);
    font-size: 17px;
    font-weight: 500;
}
.talents-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.talent-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--gray-100);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.talent-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 65, 64, 0.25);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}
.talent-highlight-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--red-light);
    color: var(--red);
    font-size: 15px;
}
.talent-highlight h3 {
    margin: 1px 0 5px;
    font-size: 15px;
    font-weight: 700;
}
.talent-highlight p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .talents-intro {
        padding: 75px 0;
    }
    .talents-intro-content {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .talents-intro {
        padding: 60px 0;
    }
    .talents-intro-content h2 {
        font-size: 32px;
    }
    .talents-intro-content .talents-intro-lead {
        font-size: 15px;
    }
    .talent-highlight {
        padding: 18px;
    }
}



/* TALENTS INTRO */
.talents-intro {
    padding: 100px 0;
    background: var(--white);
}
.talents-intro-content {
    max-width: 680px;
}
.talents-intro-content h2 {
    margin: 12px 0 22px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.talents-intro-content h2 span {
    color: var(--red);
}
.talents-intro-content p {
    margin-bottom: 15px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
}
.talents-intro-content .talents-intro-lead {
    color: var(--gray-700);
    font-size: 17px;
    font-weight: 500;
}
.talents-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.talent-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--gray-100);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.talent-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 65, 64, 0.25);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}
.talent-highlight-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--red-light);
    color: var(--red);
    font-size: 15px;
}
.talent-highlight h3 {
    margin: 1px 0 5px;
    font-size: 15px;
    font-weight: 700;
}
.talent-highlight p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .talents-intro {
        padding: 75px 0;
    }
    .talents-intro-content {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .talents-intro {
        padding: 60px 0;
    }
    .talents-intro-content h2 {
        font-size: 32px;
    }
    .talents-intro-content .talents-intro-lead {
        font-size: 15px;
    }
    .talent-highlight {
        padding: 18px;
    }
}


/* CV SUBMISSION */
.cv-section {
    padding: 100px 0;
    background: var(--gray-100);
}
.cv-form-wrapper {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.05);
}
.cv-form-wrapper label {
    display: block;
    margin-bottom: 7px;
    color: var(--black);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
}
.cv-form-wrapper .form-control,
.cv-form-wrapper .form-select {
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--gray-200);
    border-radius: 7px;
    background: var(--white);
    color: var(--black);
    font-family: var(--body-font);
    font-size: 13px;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.cv-form-wrapper textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.cv-form-wrapper .form-control::placeholder {
    color: #aaa;
}
.cv-form-wrapper .form-control:focus,
.cv-form-wrapper .form-select:focus {
    border-color: var(--red);
    box-shadow:
        0 0 0 3px rgba(197, 65, 64, 0.08);
}
.cv-upload {
    position: relative;
    min-height: 125px;
    border: 1px dashed #cfcfcf;
    border-radius: 8px;
    background: var(--gray-100);
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}
.cv-upload:hover {
    border-color: var(--red);
    background: var(--red-light);
}
.cv-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.cv-upload-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    pointer-events: none;
}
.cv-upload-content i {
    margin-bottom: 5px;
    color: var(--red);
    font-size: 22px;
}
.cv-upload-content strong {
    color: var(--black);
    font-size: 13px;
}
.cv-upload-content span {
    color: var(--gray-500);
    font-size: 11px;
}
.cv-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}
.cv-consent input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--red);
}
.cv-consent span {
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
}
.cv-consent a {
    color: var(--red);
    font-weight: 600;
}
.cv-consent a:hover {
    text-decoration: underline;
}
.cv-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border: 0;
    border-radius: 7px;
    background: var(--red);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.cv-submit:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(197, 65, 64, 0.20);
}
.cv-info {
    padding: 10px 15px 10px 20px;
}
.cv-info-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.cv-info h3 {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
}
.cv-info h3 span {
    color: var(--red);
}
.cv-info > p {
    margin-bottom: 30px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.8;
}
.cv-steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.cv-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.cv-step-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red);
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 800;
}
.cv-step h4 {
    margin: 1px 0 5px;
    font-size: 14px;
    font-weight: 700;
}
.cv-step p {
    margin: 0;
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.6;
}
.cv-info-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px;
    padding: 16px;
    border-left: 3px solid var(--red);
    background: var(--white);
}
.cv-info-contact i {
    margin-top: 3px;
    color: var(--red);
    font-size: 13px;
}
.cv-info-contact p {
    margin: 0;
    color: var(--gray-500);
    font-size: 11px;
    line-height: 1.7;
}
.cv-info-contact strong {
    color: var(--black);
}
@media (max-width: 991px) {
    .cv-section {
        padding: 75px 0;
    }
    .cv-info {
        padding: 0;
    }
}
@media (max-width: 576px) {
    .cv-section {
        padding: 60px 0;
    }
    .cv-form-wrapper {
        padding: 22px 18px;
    }
    .cv-info h3 {
        font-size: 28px;
    }
    .cv-upload {
        min-height: 110px;
    }
}


/* TALENT CTA */
.talent-cta-section {
    padding: 80px 0;
    background: var(--white);
}
.talent-cta {
    position: relative;
    overflow: hidden;
    padding: 55px 60px;
    border-radius: 12px;
    background: var(--black);
}
.talent-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}
.talent-cta .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}
.talent-cta h2 {
    margin: 12px 0 18px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.talent-cta h2 span {
    color: var(--red);
}
.talent-cta p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}
.talent-cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}
.talent-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 19px;
    border-radius: 6px;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.talent-cta-btn:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(197, 65, 64, 0.25);
}
.talent-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}
.talent-cta-link:hover {
    color: var(--red);
    gap: 12px;
}
.talent-cta-decoration {
    position: absolute;
    right: -70px;
    top: 50%;
    width: 260px;
    height: 260px;
    transform: translateY(-50%);
    pointer-events: none;
}
.talent-cta-decoration span {
    position: absolute;
    display: block;
    border: 1px solid rgba(197, 65, 64, 0.25);
    border-radius: 50%;
}
.talent-cta-decoration span:nth-child(1) {
    inset: 0;
}
.talent-cta-decoration span:nth-child(2) {
    inset: 35px;
}
.talent-cta-decoration span:nth-child(3) {
    inset: 70px;
    background: rgba(197, 65, 64, 0.08);
}
@media (max-width: 767px) {
    .talent-cta-section {
        padding: 60px 0;
    }
    .talent-cta {
        padding: 40px 25px;
    }
    .talent-cta-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .talent-cta-decoration {
        right: -120px;
        opacity: 0.7;
    }
}


/* JOBS INTRO */
.jobs-intro {
    padding: 100px 0;
    background: var(--white);
}
.jobs-intro-content {
    max-width: 680px;
}
.jobs-intro-content h2 {
    margin: 12px 0 22px;
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.jobs-intro-content h2 span {
    display: block;
    color: var(--red);
}
.jobs-intro-content p {
    max-width: 620px;
    margin-bottom: 15px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
}
.jobs-intro-content .jobs-intro-lead {
    color: var(--gray-700);
    font-size: 17px;
    font-weight: 500;
}
.jobs-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--red);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}
.jobs-intro-link:hover {
    color: var(--red);
    gap: 14px;
}
.jobs-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.jobs-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--gray-100);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.jobs-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 65, 64, 0.25);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}
.jobs-highlight-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--red-light);
    color: var(--red);
    font-size: 15px;
}
.jobs-highlight h3 {
    margin: 1px 0 5px;
    font-size: 15px;
    font-weight: 700;
}
.jobs-highlight p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.6;
}


/*  JOBS PROCESS */
.jobs-process {
    padding: 100px 0;
    background: var(--gray-100);
}
.jobs-process .section-heading {
    max-width: 680px;
}
.jobs-process .section-heading h2 span {
    color: var(--red);
}
.jobs-process-card {
    position: relative;
    height: 100%;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.jobs-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 65, 64, 0.2);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.07);
}
.jobs-process-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(197, 65, 64, 0.12);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}
.jobs-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
    border-radius: 11px;
    background: var(--red-light);
    color: var(--red);
    font-size: 18px;
}
.jobs-process-card h3 {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 700;
}
.jobs-process-card p {
    max-width: 380px;
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.7;
}


/* JOBS CTA */
.jobs-cta-section {
    padding: 100px 0;
    background: var(--white);
}
.jobs-cta {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 65px;
    background: var(--black);
    border-radius: 18px;
    overflow: hidden;
}
.jobs-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.jobs-cta .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}
.jobs-cta h2 {
    margin: 12px 0 18px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.jobs-cta h2 span {
    color: var(--red);
}
.jobs-cta p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
}
.jobs-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.jobs-cta-decoration {
    position: absolute;
    right: -90px;
    top: 50%;
    width: 360px;
    height: 360px;
    transform: translateY(-50%);
    border: 1px solid rgba(197, 65, 64, 0.25);
    border-radius: 50%;
    pointer-events: none;
}
.jobs-cta-decoration span {
    position: absolute;
    border: 1px solid rgba(197, 65, 64, 0.2);
    border-radius: 50%;
}
.jobs-cta-decoration span:nth-child(1) {
    inset: 45px;
}
.jobs-cta-decoration span:nth-child(2) {
    inset: 90px;
}
.jobs-cta-decoration span:nth-child(3) {
    inset: 135px;
    background: rgba(197, 65, 64, 0.08);
}
@media (max-width: 991px) {
    .jobs-intro {
        padding: 75px 0;
    }
    .jobs-process {
        padding: 75px 0;
    }
    .jobs-cta-section {
        padding: 75px 0;
    }
    .jobs-cta {
        padding: 50px;
    }
}
@media (max-width: 767px) {
    .jobs-intro {
        padding: 65px 0;
    }
    .jobs-intro-content h2 {
        font-size: 32px;
    }
    .jobs-intro-content .jobs-intro-lead {
        font-size: 15px;
    }
    .jobs-process {
        padding: 65px 0;
    }
    .jobs-process-card {
        padding: 28px;
    }
    .jobs-process-card h3 {
        font-size: 19px;
    }
    .jobs-cta-section {
        padding: 65px 0;
    }
    .jobs-cta {
        min-height: auto;
        padding: 42px 28px;
    }
    .jobs-cta h2 {
        font-size: 2.6rem;
    }
    .jobs-cta p {
        font-size: 14px;
    }
    .jobs-cta-actions {
        flex-direction: column;
    }
    .jobs-cta-actions .cta-btn {
        width: 100%;
    }
    .jobs-cta-decoration {
        right: -170px;
        width: 340px;
        height: 340px;
        opacity: 0.6;
    }
}
@media (max-width: 576px) {
    .jobs-highlight {
        padding: 18px;
    }
    .jobs-process-card {
        padding: 25px;
    }
    .jobs-cta {
        padding: 38px 22px;
    }
}


/* COMPANIES PAGE */
.companies-intro {
padding: 100px 0;
background: #fff;
}
.section-eyebrow {
display: inline-block;
margin-bottom: 15px;
color: #e63946;
font-size: 13px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
}
.companies-intro-content h2,
.section-heading h2 {
margin-bottom: 22px;
color: #172033;
font-size: clamp(38px, 4vw, 58px);
font-weight: 700;
line-height: 1.1;
}
.companies-intro-content h2 span,
.section-heading h2 span {
color: #e63946;
}
.companies-intro-content p {
color: #687080;
font-size: 16px;
line-height: 1.8;
}
.companies-intro-content .lead {
color: #343b49;
font-size: 19px;
line-height: 1.7;
}
.btn-primary-custom {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 25px;
border: 0;
border-radius: 5px;
background: #e63946;
color: #fff;
font-weight: 600;
transition: all .3s ease;
}
.btn-primary-custom:hover {
background: #c92f3b;
color: #fff;
transform: translateY(-2px);
}
.companies-features {
display: flex;
flex-direction: column;
gap: 18px;
}
.company-feature-card {
display: flex;
align-items: flex-start;
gap: 22px;
padding: 28px;
border: 1px solid #e9ebef;
border-radius: 10px;
background: #fff;
box-shadow: 0 10px 35px rgba(23, 32, 51, .05);
transition: all .3s ease;
}
.company-feature-card:hover {
transform: translateY(-5px);
border-color: rgba(230, 57, 70, .25);
box-shadow: 0 15px 40px rgba(23, 32, 51, .09);
}
.company-feature-icon {
flex: 0 0 55px;
width: 55px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
background: rgba(230, 57, 70, .09);
color: #e63946;
font-size: 21px;
}
.company-feature-card h4 {
margin: 0 0 8px;
color: #172033;
font-size: 19px;
font-weight: 700;
}
.company-feature-card p {
margin: 0;
color: #737b89;
font-size: 14px;
line-height: 1.7;
}


/* COMPANIES PROCESS */
.companies-process {
padding: 100px 0;
background: #f7f8fa;
}
.section-heading {
max-width: 700px;
margin: 0 auto;
}
.section-heading > p {
max-width: 600px;
margin: 0 auto;
color: #707887;
font-size: 16px;
line-height: 1.8;
}
.process-card {
position: relative;
height: 100%;
padding: 38px 32px;
border: 1px solid #e8e9ed;
border-radius: 10px;
background: #fff;
overflow: hidden;
transition: all .3s ease;
}
.process-card:hover {
transform: translateY(-7px);
box-shadow: 0 15px 40px rgba(23, 32, 51, .08);
}
.process-number {
position: absolute;
top: 18px;
right: 25px;
color: #edf0f4;
font-size: 55px;
font-weight: 800;
line-height: 1;
}
.process-icon {
position: relative;
z-index: 1;
width: 60px;
height: 60px;
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
background: #172033;
color: #fff;
font-size: 21px;
}
.process-card h3 {
position: relative;
z-index: 1;
margin-bottom: 13px;
color: #172033;
font-size: 21px;
font-weight: 700;
}
.process-card p {
position: relative;
z-index: 1;
margin: 0;
color: #737b89;
font-size: 15px;
line-height: 1.75;
}


/* COMPANIES CTA */
.companies-cta {
position: relative;
padding: 110px 0;
overflow: hidden;
background: #172033;
}
.companies-cta-bg {
position: absolute;
inset: 0;
background-image: url("image/companies-cta.avif");
background-size: cover;
background-position: center;
}
.companies-cta-overlay {
position: absolute;
inset: 0;
background: rgba(23, 32, 51, .90);
}
.companies-cta-content {
position: relative;
z-index: 2;
max-width: 760px;
margin: 0 auto;
}
.section-eyebrow.light {
color: #fff;
}
.companies-cta h2 {
margin-bottom: 20px;
color: #fff;
font-size: clamp(38px, 4vw, 56px);
font-weight: 700;
line-height: 1.1;
}
.companies-cta h2 span {
color: #e63946;
}
.companies-cta p {
max-width: 650px;
margin: 0 auto 30px;
color: rgba(255,255,255,.75);
font-size: 17px;
line-height: 1.8;
}
.companies-cta-actions {
display: flex;
justify-content: center;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.btn-light-custom,
.btn-outline-light-custom {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 26px;
border-radius: 5px;
font-weight: 600;
transition: all .3s ease;
}
.btn-light-custom {
background: #fff;
color: #172033;
border: 1px solid #fff;
}
.btn-light-custom:hover {
background: #e63946;
border-color: #e63946;
color: #fff;
transform: translateY(-2px);
}
.btn-outline-light-custom {
background: transparent;
color: #fff;
border: 1px solid rgba(255,255,255,.45);
}
.btn-outline-light-custom:hover {
background: #fff;
border-color: #fff;
color: #172033;
}
@media (max-width: 991px) {
.companies-intro,
.companies-process {
padding: 75px 0;
}
.companies-intro-content {
    margin-bottom: 20px;
}
.companies-cta {
    padding: 80px 0;
}
}
@media (max-width: 575px) {
.companies-intro,
.companies-process {
padding: 60px 0;
}
.company-feature-card {
    padding: 22px;
    gap: 16px;
}
.company-feature-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
}
.process-card {
    padding: 30px 25px;
}
.companies-cta-actions {
    flex-direction: column;
}
.btn-light-custom,
.btn-outline-light-custom {
    width: 100%;
    justify-content: center;
}
}


/* WHAT WE STAND FOR */
.values-section {
padding: 100px 0;
background: #f7f8fa;
}
.values-heading {
max-width: 700px;
margin: 0 auto;
}
.values-heading h2 {
margin: 0 0 20px;
color: #172033;
font-size: clamp(38px, 4vw, 54px);
font-weight: 700;
line-height: 1.1;
}
.values-heading h2 span {
color: #e63946;
}
.values-heading p {
max-width: 620px;
margin: 0 auto;
color: #737b89;
font-size: 16px;
line-height: 1.8;
}
.value-card {
position: relative;
height: 100%;
padding: 35px 28px 30px;
border: 1px solid #e6e8ed;
border-radius: 10px;
background: #fff;
overflow: hidden;
transition: all .3s ease;
}
.value-card:hover {
transform: translateY(-7px);
border-color: rgba(230, 57, 70, .25);
box-shadow: 0 18px 40px rgba(23, 32, 51, .08);
}
.value-icon {
width: 58px;
height: 58px;
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
background: rgba(230, 57, 70, .09);
color: #e63946;
font-size: 21px;
transition: all .3s ease;
}
.value-card:hover .value-icon {
background: #e63946;
color: #fff;
}
.value-number {
position: absolute;
top: 18px;
right: 20px;
color: #f0f1f4;
font-size: 48px;
font-weight: 800;
line-height: 1;
transition: color .3s ease;
}
.value-card:hover .value-number {
color: rgba(230, 57, 70, .08);
}
.value-card h3 {
position: relative;
z-index: 1;
margin-bottom: 14px;
color: #172033;
font-size: 20px;
font-weight: 700;
line-height: 1.3;
}
.value-card p {
position: relative;
z-index: 1;
margin: 0;
color: #737b89;
font-size: 14px;
line-height: 1.75;
}
@media (max-width: 991px) {
.values-section {
padding: 75px 0;
}
}
@media (max-width: 575px) {
.values-section {
padding: 60px 0;
}
.value-card {
    padding: 30px 24px;
}
.value-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}
}


/* OUR APPROACH */
.approach-section {
padding: 100px 0;
background: #fff;
}
.approach-heading {
max-width: 720px;
margin: 0 auto;
}
.approach-heading h2 {
margin: 0 0 20px;
color: #172033;
font-size: clamp(38px, 4vw, 54px);
font-weight: 700;
line-height: 1.1;
}
.approach-heading h2 span {
color: #e63946;
}
.approach-heading p {
max-width: 650px;
margin: 0 auto;
color: #737b89;
font-size: 16px;
line-height: 1.8;
}
.approach-timeline {
position: relative;
max-width: 1000px;
margin: 70px auto 0;
}
.approach-timeline::before {
content: "";
position: absolute;
top: 40px;
left: 16.66%;
right: 16.66%;
height: 1px;
background: #e2e5ea;
}
.approach-item {
position: relative;
width: 33.333%;
float: left;
padding: 0 25px;
text-align: center;
}
.approach-number {
position: relative;
z-index: 2;
width: 80px;
height: 80px;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #e63946;
border-radius: 50%;
background: #fff;
color: #e63946;
font-size: 20px;
font-weight: 700;
transition: all .3s ease;
}
.approach-item:hover .approach-number {
background: #e63946;
color: #fff;
transform: scale(1.08);
}
.approach-content {
max-width: 270px;
margin: 0 auto;
}
.approach-icon {
width: 50px;
height: 50px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 7px;
background: #f7f8fa;
color: #172033;
font-size: 18px;
transition: all .3s ease;
}
.approach-item:hover .approach-icon {
background: rgba(230, 57, 70, .09);
color: #e63946;
}
.approach-content h3 {
margin-bottom: 12px;
color: #172033;
font-size: 22px;
font-weight: 700;
}
.approach-content p {
margin: 0;
color: #737b89;
font-size: 14px;
line-height: 1.75;
}
.approach-timeline::after {
content: "";
display: table;
clear: both;
}
@media (max-width: 991px) {
.approach-section {
    padding: 75px 0;
}
.approach-timeline {
    margin-top: 55px;
}
.approach-item {
    padding: 0 15px;
}
.approach-content {
    max-width: 230px;
}
.approach-timeline::before {
    left: 16.66%;
    right: 16.66%;
}
}
@media (max-width: 767px) {
.approach-section {
    padding: 60px 0;
}
.approach-timeline {
    margin-top: 45px;
}
.approach-timeline::before {
    display: none;
}
.approach-item {
    width: 100%;
    float: none;
    margin-bottom: 45px;
    padding: 0 15px;
}
.approach-item:last-child {
    margin-bottom: 0;
}
.approach-number {
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
}
.approach-content {
    max-width: 450px;
}
}


/* ABOUT CTA */
.about-cta {
position: relative;
padding: 110px 0;
background: #172033;
overflow: hidden;
}
.about-cta::before {
content: "";
position: absolute;
width: 500px;
height: 500px;
top: -280px;
right: -150px;
border-radius: 50%;
background: rgba(230, 57, 70, .12);
}
.about-cta::after {
content: "";
position: absolute;
width: 350px;
height: 350px;
bottom: -220px;
left: -100px;
border-radius: 50%;
background: rgba(255, 255, 255, .03);
}
.about-cta-overlay {
position: absolute;
inset: 0;
background:
linear-gradient(
135deg,
rgba(23, 32, 51, .98),
rgba(23, 32, 51, .92)
);
}
.about-cta-content {
position: relative;
z-index: 2;
max-width: 780px;
margin: 0 auto;
}
.about-cta-eyebrow {
color: #e63946;
}
.about-cta h2 {
margin: 0 0 22px;
color: #fff;
font-size: clamp(38px, 4vw, 58px);
font-weight: 700;
line-height: 1.1;
}
.about-cta h2 span {
display: block;
color: #e63946;
}
.about-cta p {
max-width: 650px;
margin: 0 auto 32px;
color: rgba(255, 255, 255, .72);
font-size: 17px;
line-height: 1.8;
}
.about-cta-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
.about-cta-primary,
.about-cta-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-width: 190px;
padding: 14px 25px;
border-radius: 5px;
font-weight: 600;
transition: all .3s ease;
}
.about-cta-primary {
border: 1px solid #e63946;
background: #e63946;
color: #fff;
}
.about-cta-primary:hover {
border-color: #c92f3b;
background: #c92f3b;
color: #fff;
transform: translateY(-2px);
}
.about-cta-secondary {
border: 1px solid rgba(255, 255, 255, .35);
background: transparent;
color: #fff;
}
.about-cta-secondary:hover {
border-color: #fff;
background: #fff;
color: #172033;
transform: translateY(-2px);
}
@media (max-width: 767px) {
.about-cta {
    padding: 75px 0;
}
.about-cta-actions {
    flex-direction: column;
}
.about-cta-primary,
.about-cta-secondary {
    width: 100%;
    max-width: 300px;
}
}


/* CONTACT PAGE */
.contact-intro {
background: #fff;
}
.contact-intro-content {
max-width: 600px;
}
.contact-intro-content h2,
.contact-form-wrapper h2,
.contact-cta-inner h2 {
font-size: clamp(2.2rem, 4vw, 3.5rem);
font-weight: 700;
line-height: 1.15;
color: #16213e;
margin: 12px 0 22px;
}
.contact-intro-content h2 span,
.contact-form-wrapper h2 span,
.contact-cta-inner h2 span {
color: #e63946;
}
.contact-intro-content p {
color: #687080;
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 15px;
}
.section-eyebrow {
display: inline-block;
color: #e63946;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 2px;
}
.contact-info-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
}
.contact-info-card {
display: flex;
align-items: flex-start;
gap: 18px;
padding: 25px;
background: #f7f8fa;
border: 1px solid #eceef2;
border-radius: 12px;
color: inherit;
text-decoration: none;
transition: all 0.3s ease;
}
.contact-info-card:hover {
transform: translateY(-5px);
background: #fff;
border-color: #e63946;
box-shadow: 0 15px 35px rgba(22, 33, 62, 0.08);
}
.contact-info-icon {
width: 48px;
height: 48px;
min-width: 48px;
display: flex;
align-items: center;
justify-content: center;
background: #16213e;
color: #fff;
border-radius: 10px;
font-size: 18px;
}
.contact-info-card h5 {
margin: 2px 0 7px;
color: #16213e;
font-size: 1rem;
font-weight: 700;
}
.contact-info-card p {
margin: 0;
color: #737b8c;
font-size: 0.9rem;
line-height: 1.6;
}
.contact-form-section {
background: #f7f8fa;
}
.contact-form-wrapper {
background: #fff;
padding: 55px;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(22, 33, 62, 0.07);
}
.contact-form-wrapper > .text-center p {
max-width: 600px;
margin: 0 auto;
color: #737b8c;
line-height: 1.7;
}
.contact-form-wrapper label {
display: block;
margin-bottom: 9px;
color: #16213e;
font-size: 0.9rem;
font-weight: 600;
}
.contact-form-wrapper .form-control {
min-height: 52px;
padding: 13px 16px;
border: 1px solid #dfe2e8;
border-radius: 7px;
color: #16213e;
background: #fff;
box-shadow: none;
transition: all 0.25s ease;
}
.contact-form-wrapper textarea.form-control {
min-height: 150px;
resize: vertical;
}
.contact-form-wrapper .form-control::placeholder {
color: #a5abb5;
}
.contact-form-wrapper .form-control:focus {
border-color: #e63946;
box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}
.contact-submit-btn {
border: 0;
background: #e63946;
color: #fff;
padding: 14px 30px;
border-radius: 6px;
font-size: 0.95rem;
font-weight: 600;
transition: all 0.3s ease;
}
.contact-submit-btn i {
margin-left: 8px;
transition: transform 0.3s ease;
}
.contact-submit-btn:hover {
background: #c92f3b;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2);
}
.contact-submit-btn:hover i {
transform: translateX(4px);
}
.contact-map {
width: 100%;
line-height: 0;
}
.contact-map iframe {
filter: grayscale(25%);
display: block;
}
.contact-cta {
background: #16213e;
color: #fff;
}
.contact-cta-inner {
max-width: 800px;
margin: 0 auto;
}
.contact-cta-inner h2 {
color: #fff;
}
.contact-cta-inner p {
max-width: 600px;
margin: 0 auto 30px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
}
.contact-cta .section-eyebrow {
color: #e63946;
}
.contact-cta-actions {
display: flex;
justify-content: center;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.contact-cta-btn,
.contact-cta-outline {
padding: 13px 25px;
border-radius: 6px;
font-weight: 600;
transition: all 0.3s ease;
}
.contact-cta-btn {
background: #e63946;
color: #fff;
}
.contact-cta-btn:hover {
background: #fff;
color: #16213e;
}
.contact-cta-btn i {
margin-left: 7px;
}
.contact-cta-outline {
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.35);
}
.contact-cta-outline:hover {
background: #fff;
color: #16213e;
border-color: #fff;
}
@media (max-width: 991px) {
.contact-intro-content {
    max-width: 100%;
}
.contact-info-grid {
    margin-top: 15px;
}
.contact-form-wrapper {
    padding: 40px 30px;
}
}
@media (max-width: 575px) {
.contact-info-grid {
    grid-template-columns: 1fr;
}
.contact-form-wrapper {
    padding: 35px 20px;
}
.contact-intro-content h2,
.contact-form-wrapper h2,
.contact-cta-inner h2 {
    font-size: 2.2rem;
}
.contact-info-card {
    padding: 20px;
}
.contact-cta-actions {
    flex-direction: column;
}
.contact-cta-btn,
.contact-cta-outline {
    width: 100%;
    max-width: 280px;
}
}