﻿:root {
    --primary: #E31E24;
    --dark: #0D0D0D;
    --white: #FFFFFF;
    --text: #CFCFCF;
    --border: #2B2B2B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
.hero-tag,
.nav-menu a,
.header-btn a,
.btn-primary,
.btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .5px;
}

/* ===========================
   CONTAINER
=========================== */
.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* ===========================
   HEADER
=========================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: transparent;
    z-index: 1000;
}

    .header .container {
        width: 90%;
        max-width: 1280px;
        height: 90px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

/* Logo */
.logo img {
    height: 140px;
    width: auto;
    display: block;
}

/* Navigation */
.nav a {
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

    .nav-menu ul li a {
        color: #ffffff;
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .nav-menu ul li a:hover,
        .nav-menu ul li a.active {
            color: var(--primary);
        }

/* Button */
.header-btn a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: .3s;
}

    .header-btn a:hover {
        background: #b7171c;
    }

/* ===================================
   HERO SECTION
=================================== */
.hero {
    position: relative;
    min-height: 850px;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.65)), url("../images/hero/hero-bg.png") center center/cover no-repeat;
    overflow: hidden;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 0 0 35%;
    transform: translateY(-40px);
    position: relative;
    z-index: 5;
}

.hero-image {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 750px;
}

.hero-tag {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-subtitle {
    color: var(--primary);
}

.hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 84px;
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

    .hero-content h1 span {
        color: var(--primary);
    }

.hero-title {
    font-size: 70px;
    line-height: 1;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    color: #ddd;
    line-height: 1.8;
    max-width: 550px;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

    .btn-primary:hover {
        background: #b7171c;
    }

.btn-secondary {
    border: 1px solid #555;
    color: #fff;
}

    .btn-secondary:hover {
        background: #fff;
        color: #111;
    }

.trainer-img {
    width: auto;
    height: auto;
    display: block;
    position: relative;
    top: 40px;
}

.hero-features {
    width: 90%;
    max-width: 1280px;
    margin: 30px 0 0;
    background: transparent;
}

.feature-description {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 25px;
}

.hero-features ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 0;
    white-space: nowrap;
}

    .hero-features li i {
        color: var(--primary);
        font-size: 28px;
        width: auto;
    }

/* ===========================
   RIGHT INFO CARD
=========================== */
.hero-info-card {
    flex: 0 0 25%;
    position: relative;
    transform: translateX(110px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .info-item:last-child {
        border-bottom: none;
    }

.info-icon {
    width: 55px;
    height: 55px;
    border: 2px solid #E31E24;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E31E24;
    font-size: 22px;
    flex-shrink: 0;
}

.info-item h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 4px;
}

.info-item p {
    color: #CFCFCF;
    font-size: 14px;
    line-height: 1.4;
}

.hero-services {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    width: 120%;
    position: relative;
    z-index: 2;
}

.service-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(20,20,20,.9);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
}

.service-icon {
    width: 54px;
    height: 54px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .service-icon i {
        color: var(--primary);
        font-size: 22px;
    }

.service-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
    font-family: 'Barlow Condensed',sans-serif;
}

.service-content p {
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.4;
}

html {
    scroll-behavior: smooth;
}

/* =========================================================================
   DESKTOP RESPONSIVE MODIFICATIONS (1200px & 992px)
========================================================================== */
@media (max-width:1200px) {
    .hero-content h1 {
        font-size: 64px;
    }

    .nav-menu ul {
        gap: 25px;
    }

        .nav-menu ul li a {
            font-size: 18px;
        }

    .hero-info-card {
        transform: translateX(60px);
    }

    .trainer-img {
        max-width: 100%;
    }
}

@media (max-width:992px) {
    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image,
    .hero-info-card {
        width: 100%;
        flex: 0 0 100%;
    }

    .hero-image {
        min-height: auto;
        margin: 30px 0;
    }

    .trainer-img {
        max-width: 420px;
        width: 100%;
        top: 0;
    }

    .hero-info-card {
        transform: none;
        margin-top: 30px;
    }

    .hero-features ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* =========================================================================
   CLEAN ISOLATED MOBILE REPLACE CODE (768px & 480px)
========================================================================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .header .container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 90px;
        padding: 0 20px;
    }

    .logo img {
        height: 65px;
        width: auto;
    }

    .header-btn, .nav-menu {
        display: none !important;
    }

    .hero-container {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 15px !important;
    }

    .hero-content, .hero-image {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .hero-content {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

        .hero-content h1 {
            font-size: 36px !important;
            line-height: 1.1 !important;
            margin-bottom: 15px !important;
        }

    .hero-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .hero-image {
        min-height: auto !important;
        margin: 20px 0 !important;
        display: flex !important;
        justify-content: center !important;
    }

    .trainer-img {
        width: 60% !important;
        max-width: 220px !important;
        height: auto !important;
        margin: 0 auto !important;
        position: relative !important;
        top: 0 !important;
    }

    /* TARGETING ONLY: Dark info boxes inside the hero wrapper block */
    div.hero-container .hero-info-card {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 25px auto 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

        div.hero-container .hero-info-card .info-item {
            flex-direction: column !important;
            text-align: center !important;
            padding: 12px 8px !important;
            border-bottom: none !important;
            background: rgba(255, 255, 255, 0.05) !important;
            border-radius: 8px !important;
        }

        div.hero-container .hero-info-card .info-icon {
            width: 45px !important;
            height: 45px !important;
            font-size: 18px !important;
            margin: 0 auto 8px auto !important;
        }

        div.hero-container .hero-info-card .info-item h3 {
            font-size: 18px !important;
            margin-bottom: 4px !important;
        }

        div.hero-container .hero-info-card .info-item p {
            font-size: 11px !important;
        }

    .hero-services {
        width: 100% !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 25px !important;
    }

    .service-box {
        padding: 12px 15px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

        .hero-buttons a {
            flex: 1 !important;
            max-width: 180px !important;
            padding: 12px 10px !important;
            font-size: 14px !important;
            text-align: center !important;
        }
}

@media (max-width: 480px) {
    .logo img {
        height: 70px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 34px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

        .hero-buttons a {
            width: 100% !important;
            max-width: 280px !important;
        }
}

/* ===================================
   STATS BAR SECTION
=================================== */
.stats-bar {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #EAEAEA;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 10px 0;
}

    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #E2E2E2;
    }

.stat-icon i {
    color: var(--primary);
    font-size: 45px;
}

.stat-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 1.2px;
    line-height: 1.2;
}

/* ===================================
   WHY CHOOSE ONE2ONE SECTION
=================================== */
.why-choose-section {
    background-color: #FAFAFA;
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 54px;
        font-weight: 500;
        text-transform: uppercase;
        color: #111111;
        letter-spacing: -1px;
        line-height: 0.85;
        margin-bottom: 15px;
    }

        .section-header h2 span {
            color: var(--primary);
        }

.header-line {
    width: 45px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--white);
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    padding: 50px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    }

.why-icon-box {
    width: 80px;
    height: 80px;
    color: var(--primary);
    font-size: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background: transparent;
}

.why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.why-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    max-width: 240px;
}

/* ===================================
   STATS/WHY GRID RESPONSIVE LAYOUTS
=================================== */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item {
        border-bottom: 1px solid #F0F0F0;
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-header h2 {
        font-size: 34px;
    }
}

/* ===================================
   OUR PROGRAMS SECTION (DARK THEME)
=================================== */
.programs-section {
    background-color: #0F0F0F;
    padding: 100px 0;
    width: 100%;
}

.dark-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 0.85;
    margin-bottom: 15px;
    text-align: center;
}

    .dark-header h2 span {
        color: #E31E24;
    }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.program-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .program-card:hover {
        transform: translateY(-8px);
        border-color: #E31E24;
        box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
    }

.program-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .program-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.program-card:hover .program-img-wrapper img {
    transform: scale(1.1);
}

.program-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
    background-color: #E31E24;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.4);
    z-index: 2;
}

.program-info {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .program-info h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 28px;
        font-weight: 900;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .program-info p {
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        color: #A0A0A0;
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

.program-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #E31E24;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    align-self: flex-start;
}

    .program-link i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

.program-card:hover .program-link {
    color: #ff333a;
}

    .program-card:hover .program-link i {
        transform: translateX(5px);
    }

.programs-footer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-all-programs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #E31E24;
    padding: 14px 45px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-all-programs i {
        font-size: 13px;
        transition: transform 0.3s ease;
    }

    .btn-all-programs:hover {
        background-color: #E31E24;
    }

        .btn-all-programs:hover i {
            transform: translateX(6px);
        }

@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .programs-section {
        padding: 80px 0;
    }

    .dark-header h2 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .programs-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =========================================================================
   TESTIMONIALS STYLING
========================================================================== */
.testimonials-section {
    background-color: #FAFAFA;
    padding: 90px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 32px;
    color: #E31E24;
    opacity: 1;
}

.stars i {
    color: #FFC107;
    font-size: 13px;
    margin-left: 2px;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #444444;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.client-meta h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #111111;
    margin: 0;
}

.client-meta span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888888;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

    .slider-dots .dot {
        width: 8px;
        height: 8px;
        background-color: #D6D6D6;
        border-radius: 50%;
        cursor: pointer;
    }

        .slider-dots .dot.active {
            background-color: #E31E24;
            width: 20px;
            border-radius: 4px;
        }

/* =========================================================================
   INSTAGRAM FEED STYLING
========================================================================== */
.instagram-section {
    background-color: #0F0F0F;
    padding: 80px 0 30px 0;
    width: 100%;
    overflow: hidden;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0 40px;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    border: 1px solid #222222;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1.25 / 1;
    cursor: pointer;
    background-color: #161616;
}

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .insta-overlay i {
        color: #ffffff;
        font-size: 28px;
        transform: scale(0.7);
        transition: transform 0.3s ease;
    }

.insta-item:hover img {
    transform: scale(1.06);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

    .insta-item:hover .insta-overlay i {
        transform: scale(1);
    }

.instagram-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-insta-handle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #E31E24;
    background-color: transparent;
    padding: 10px 35px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

    .btn-insta-handle i {
        font-size: 22px;
    }

    .btn-insta-handle:hover {
        background-color: #E31E24;
        transform: translateY(-2px);
    }

@media (max-width: 1200px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 15px;
    }
}

/*=========================================
        FINAL CTA
=========================================*/
.final-cta {
    min-height: 420px;
    padding: 50px 8%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), url("../images/cta_image1.png") center center/cover no-repeat;
}

    .final-cta::before,
    .final-cta::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #7a0000 8%, #ff2b2b 25%, #b30000 50%, #ff2b2b 75%, #7a0000 92%, transparent);
    }

    .final-cta::before {
        top: 0;
    }

    .final-cta::after {
        bottom: 0;
    }

.final-cta-content {
    width: 45%;
    max-width: 600px;
    margin-left: auto;
    text-align: left;
    z-index: 2;
}

    .final-cta-content h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 56px;
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .final-cta-content p {
        font-size: 18px;
        color: #d8d8d8;
        line-height: 1.8;
        margin-bottom: 35px;
    }

.final-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease;
}

    .final-btn:hover {
        background: #b7161c;
        transform: translateY(-2px);
    }

    .final-btn i {
        transition: 0.3s;
    }

    .final-btn:hover i {
        transform: translateX(5px);
    }

@media (max-width: 992px) {
    .final-cta {
        justify-content: center;
        text-align: center;
        min-height: 350px;
        padding: 40px 30px;
    }

    .final-cta-content {
        width: 100%;
        max-width: 650px;
    }

        .final-cta-content h2 {
            font-size: 42px;
        }

        .final-cta-content p {
            font-size: 16px;
        }
}

@media (max-width: 768px) {
    .final-cta {
        min-height: 300px;
        padding: 35px 20px;
    }

    .final-cta-content {
        width: 100%;
        text-align: center;
    }

        .final-cta-content h2 {
            font-size: 32px;
        }

        .final-cta-content p {
            font-size: 15px;
        }

    .final-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 50px 18px;
    }

    .final-cta-content h2 {
        font-size: 30px;
    }

    .final-cta-content p {
        font-size: 14px;
    }
}

/*=========================================
        FOOTER
=========================================*/
.footer {
    background: #0d0d0d;
    color: #fff;
}

.footer-grid {
    max-width: 1400px;
    margin: auto;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: block;
    max-height: 100px;
    width: auto;
}

.footer-col > p {
    margin: 0 0 12px 0;
    padding: 0;
    line-height: 1.4;
    color: #cfcfcf;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.footer-col h4 {
    font-family: 'Barlow Condensed',sans-serif;
    font-size: 22px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-col p {
    color: #bfbfbf;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #bfbfbf;
            text-decoration: none;
            transition: .3s;
        }

            .footer-col ul li a:hover {
                color: var(--primary);
            }

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.3s ease;
}

    .footer-social a:hover {
        background: var(--primary);
        border-color: var(--primary);
    }
