/* =========================================================
   SORE SPORTS MANAGEMENT
   GLOBAL STYLES
========================================================= */

:root {
    --blue: #0757a5;
    --blue-dark: #031a35;
    --blue-deep: #020c1b;
    --blue-light: #1478d4;
    --orange: #f58220;
    --orange-light: #ff9a3d;
    --white: #ffffff;
    --gray: #aab5c4;
    --gray-light: #e7ebf0;
    --dark: #06111f;
    --black: #02060b;
    --border: rgba(255, 255, 255, 0.12);
    --container: 1240px;
    --transition: 0.35s ease;
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), 90%);
    margin: auto;
}

/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--blue-deep);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 180px;
    max-height: 100px;
    object-fit: contain;
}

.loader-line {
    width: 160px;
    height: 2px;
    background: var(--orange);
    margin: 30px 0 15px;
    animation: loaderAnimation 1.5s infinite;
}

.preloader span {
    color: white;
    font-size: 10px;
    letter-spacing: 4px;
}

@keyframes loaderAnimation {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    51% {
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 1000;
    transition:
        background 0.35s ease,
        height 0.35s ease,
        box-shadow 0.35s ease;
}

.header.scrolled {
    height: 72px;
    background: rgba(3, 14, 28, 0.96);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-container {
    width: min(1400px, 94%);
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 145px;
    max-height: 65px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--orange);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector {
    position: relative;
}

.language-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 13px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 150px;
    padding: 8px;
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
}

.language-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu button {
    width: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
}

.language-menu button:hover {
    background: #f1f4f7;
    color: var(--blue);
}

.header-button {
    padding: 12px 18px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.header-button:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--blue-deep);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition:
        opacity 1.1s ease,
        transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(1, 10, 22, 0.94) 0%,
            rgba(2, 16, 32, 0.75) 45%,
            rgba(2, 16, 32, 0.25) 100%
        );
}

.hero-content {
    position: absolute;
    width: min(1200px, 90%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    color: white;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero-tag::before {
    content: "";
    width: 35px;
    height: 2px;
    margin-right: 12px;
    background: var(--orange);
}

.hero h1 {
    max-width: 900px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(65px, 8vw, 125px);
    line-height: 0.83;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    max-width: 600px;
    margin: 30px 0;
    color: #d5dce5;
    font-size: 16px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-orange {
    color: white;
    background: var(--orange);
}

.btn-orange:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 130, 32, 0.25);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

.slider-controls {
    position: absolute;
    right: 5%;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.slider-controls button {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.slider-counter {
    display: flex;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.slider-counter span:first-child {
    color: var(--orange);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 5;
}

.slider-progress span {
    display: block;
    width: 10%;
    height: 100%;
    background: var(--orange);
    transition: width 0.5s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 5;
}

.scroll-indicator div {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
    position: relative;
}

.section-label {
    display: block;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.section-heading h2,
.process-title h2,
.request-heading h2,
.contact-intro h2,
.agency-content h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.9;
    text-transform: uppercase;
}

.section-heading h2 span,
.process-title h2 span,
.request-heading h2 span,
.contact-intro h2 span,
.agency-content h2 span {
    color: var(--orange);
}

.section-heading > p {
    max-width: 430px;
    color: #6d7887;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 120px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.intro-grid h2 {
    max-width: 600px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(45px, 5vw, 70px);
    line-height: 0.95;
    text-transform: uppercase;
}

.intro-grid h2 strong {
    color: var(--blue);
}

.intro-text p {
    color: #687587;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 120px 0;
    background: #f4f6f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #dfe4e9;
}

.service-card {
    position: relative;
    min-height: 340px;
    padding: 35px;
    background: white;
    overflow: hidden;
    transition: var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--orange);
    transition: width 0.4s ease;
}

.service-card:hover {
    background: var(--blue-dark);
    color: white;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover p {
    color: #aebaca;
}

.service-card:hover a {
    color: var(--orange);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #dce1e6;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.service-icon {
    margin-top: 30px;
    margin-bottom: 35px;
    font-size: 34px;
}

.service-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-card p {
    color: #758191;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card a {
    position: absolute;
    bottom: 30px;
    left: 35px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =========================================================
   EXPERTISE
========================================================= */

.expertise-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background: var(--blue-dark);
    color: white;
}

.expertise-image {
    min-height: 600px;
    background:
        linear-gradient(
            rgba(3, 26, 53, 0.25),
            rgba(3, 26, 53, 0.35)
        ),
        url("https://images.unsplash.com/photo-1431324155629-1a6deb1dec8d?auto=format&fit=crop&w=1600&q=90");
    background-size: cover;
    background-position: center;
}

.expertise-content {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    max-width: 600px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(50px, 5vw, 75px);
    line-height: 0.9;
    text-transform: uppercase;
}

.expertise-content h2 span {
    color: var(--orange);
}

.expertise-content > p {
    max-width: 550px;
    margin: 30px 0;
    color: #b7c3d0;
    line-height: 1.8;
    font-size: 14px;
}

.expertise-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.expertise-points div {
    padding: 20px;
    background: var(--blue-dark);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.expertise-points strong {
    color: var(--orange);
    font-size: 11px;
}

.expertise-points span {
    font-size: 12px;
}

/* =========================================================
   DESTINATIONS
========================================================= */

.destinations-section {
    padding: 120px 0;
    background: white;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.country-card {
    position: relative;
    min-height: 210px;
    padding: 25px;
    border: 1px solid #e4e8ec;
    overflow: hidden;
    transition: var(--transition);
}

.country-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(7, 87, 165, 0.06);
}

.country-card:hover {
    transform: translateY(-7px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.country-card > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
}

.country-card strong {
    display: block;
    margin: 25px 0 10px;
    font-size: 35px;
}

.country-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    text-transform: uppercase;
}

.country-card p {
    margin-top: 4px;
    color: #84909d;
    font-size: 10px;
}

/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 120px 0;
    background: var(--blue-dark);
    color: white;
}

.process-title {
    max-width: 700px;
    margin-bottom: 70px;
}

.process-title h2 {
    font-size: clamp(55px, 7vw, 85px);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-item {
    min-height: 260px;
    padding: 35px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.process-item:last-child {
    border-right: none;
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.process-item > span {
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
}

.process-item h3 {
    margin: 35px 0 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
}

.process-item p {
    color: #9ba9b9;
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   AGENCY
========================================================= */

.agency-section {
    padding: 130px 0;
    background: #f4f6f8;
}

.agency-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.agency-content > p {
    max-width: 650px;
    margin-top: 20px;
    color: #697687;
    font-size: 14px;
    line-height: 1.8;
}

.agency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    border-top: 1px solid #d9dee4;
}

.agency-stats div {
    padding: 25px 15px;
    border-right: 1px solid #d9dee4;
}

.agency-stats div:last-child {
    border-right: none;
}

.agency-stats strong {
    display: block;
    color: var(--blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
}

.agency-stats span {
    color: #768290;
    font-size: 10px;
}

.agency-visual {
    display: flex;
    justify-content: center;
}

.agency-box {
    width: min(430px, 100%);
    aspect-ratio: 1 / 1;
    padding: 25px;
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );
    color: white;
    box-shadow: 30px 30px 0 var(--orange);
}

.agency-box-top,
.agency-box-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.agency-box-center {
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agency-box-center img {
    width: 220px;
    max-height: 180px;
    object-fit: contain;
}

/* =========================================================
   REQUEST
========================================================= */

.request-section {
    padding: 130px 0;
    background: white;
}

.request-heading {
    max-width: 800px;
    margin-bottom: 60px;
}

.request-heading p {
    max-width: 650px;
    margin-top: 25px;
    color: #6f7b89;
    line-height: 1.8;
    font-size: 14px;
}

.request-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
}

.request-types {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #e3e7eb;
}

.request-type {
    position: relative;
    min-height: 90px;
    padding: 20px 25px;
    border: none;
    background: #f4f6f8;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.request-type span {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
}

.request-type strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    letter-spacing: 0.5px;
}

.request-type small {
    display: block;
    margin-top: 4px;
    color: #87929f;
    font-size: 9px;
}

.request-type:hover,
.request-type.active {
    background: var(--blue-dark);
    color: white;
}

.request-form-wrapper {
    padding: 45px;
    background: #f4f6f8;
}

.selected-request {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dbe0e5;
}

.selected-request span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.selected-request strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d7dde3;
    background: white;
    outline: none;
    color: var(--dark);
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(7, 87, 165, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 25px;
}

.form-check input {
    margin-top: 3px;
}

.form-check label {
    color: #6e7a88;
    font-size: 10px;
    line-height: 1.6;
}

.submit-button {
    width: 100%;
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border: none;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--blue);
}

.submit-button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.submit-button strong {
    font-size: 20px;
}

.form-message {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
}

.form-message.success {
    color: #168044;
}

.form-message.error {
    color: #c62828;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
    min-height: 560px;
    display: flex;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1553778263-73a83bab9b0c?auto=format&fit=crop&w=2200&q=90")
        center / cover fixed;
    color: white;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 35, 0.97),
            rgba(3, 17, 35, 0.55)
        );
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    max-width: 800px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(60px, 8vw, 105px);
    line-height: 0.85;
    text-transform: uppercase;
}

.cta-content h2 span {
    color: var(--orange);
}

.cta-content p {
    max-width: 550px;
    margin: 30px 0;
    color: #c6d0db;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 120px 0;
    background: var(--blue-dark);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-intro p {
    max-width: 500px;
    margin-top: 25px;
    color: #aab7c6;
    font-size: 14px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(245, 130, 32, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: white;
    font-size: 20px;
}

.contact-item small {
    display: block;
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-item strong {
    display: block;
    color: white;
    font-size: 14px;
}

.contact-item > div > span {
    color: white;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 25px;
    background: #020913;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 160px;
    max-height: 80px;
    object-fit: contain;
}

.footer-brand p {
    margin-top: 20px;
    color: #768596;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer h4 {
    margin-bottom: 25px;
    color: var(--orange);
    font-size: 9px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: #9aa7b5;
    font-size: 11px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #5e6a78;
    font-size: 9px;
    letter-spacing: 0.5px;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: none;
    background: var(--orange);
    color: white;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 500;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--blue);
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 9px;
    }

    .header-button {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .request-layout {
        grid-template-columns: 280px 1fr;
    }

    .request-form-wrapper {
        padding: 35px;
    }

    .intro-grid,
    .agency-grid,
    .contact-grid {
        gap: 60px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .header {
        height: 75px;
    }

    .header.scrolled {
        height: 68px;
    }

    .header-container {
        width: 92%;
    }

    .logo img {
        width: 120px;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 30px;
        background: rgba(3, 14, 28, 0.98);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav a {
        font-size: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .language-button {
        padding: 9px 10px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        top: 48%;
    }

    .hero h1 {
        font-size: clamp(55px, 16vw, 90px);
    }

    .hero p {
        font-size: 13px;
        max-width: 500px;
    }

    .slider-controls {
        bottom: 30px;
        right: 5%;
    }

    .scroll-indicator {
        display: none;
    }

    .intro-section,
    .services-section,
    .destinations-section,
    .process-section,
    .agency-section,
    .request-section,
    .contact-section {
        padding: 80px 0;
    }

    .intro-grid,
    .agency-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-heading {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-section {
        grid-template-columns: 1fr;
    }

    .expertise-image {
        min-height: 400px;
    }

    .expertise-content {
        padding: 70px 7%;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .process-item:nth-child(2) {
        border-right: none;
    }

    .request-layout {
        grid-template-columns: 1fr;
    }

    .request-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .agency-stats {
        grid-template-columns: 1fr;
    }

    .agency-stats div {
        border-right: none;
        border-bottom: 1px solid #d9dee4;
    }

    .agency-stats div:last-child {
        border-bottom: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .cta-section {
        background-attachment: scroll;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .container {
        width: 92%;
    }

    .header-right {
        gap: 7px;
    }

    .language-selector {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: 92%;
    }

    .hero-tag {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(48px, 17vw, 75px);
    }

    .hero p {
        margin: 22px 0;
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: auto;
        min-height: 48px;
        padding: 0 22px;
    }

    .slider-controls {
        bottom: 20px;
    }

    .slider-controls button {
        width: 38px;
        height: 38px;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: none;
    }

    .expertise-points {
        grid-template-columns: 1fr;
    }

    .agency-box {
        box-shadow: 15px 15px 0 var(--orange);
    }

    .agency-box-center img {
        width: 180px;
    }

    .request-type {
        min-height: 80px;
    }

    .request-form-wrapper {
        padding: 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .back-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   ACCESSIBILITY / FOCUS
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}