/* =====================================================
   ROOT
===================================================== */

:root {

    --primary: #80b852;
    --primary-dark: #44963b;

    --dark: #101714;
    --dark-2: #17201c;

    --cream: #f7f4ed;
    --white: #ffffff;

    --text: #303632;
    --muted: #737873;

    --border: #d6ded2;

    --heading-font: "Playfair Display", serif;
    --body-font: "DM Sans", sans-serif;

}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 110px 0;
}


/* =====================================================
   HEADER
===================================================== */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .4s ease;
}

.main-header.scrolled {
    position: fixed;
    background: rgba(16, 23, 20, .97);
    backdrop-filter: blur(12px);
}

.navbar {
    padding: 18px 0;
}

.navbar-brand {
    color: var(--white);
    font-family: var(--heading-font);
    background: var(--white);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.navbar-brand span {
    display: block;
    font-family: var(--body-font);
    font-size: 7px;
    letter-spacing: 3px;
    margin-top: 7px;
    color: rgba(255,255,255,.65);
}

.navbar-nav {
    gap: 30px;
}
.travel-logo {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}
.nav-link {
    color: rgba(255,255,255,.9) !important;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.header-btn {
    padding: 13px 20px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    font-size: 12px;
    transition: .3s;
}

.header-btn i {
    margin-left: 8px;
}

.header-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.navbar-toggler {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.4);
    padding: 8px 11px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* =====================================================
   PREMIUM HERO CAROUSEL
====================================================== */

.travel-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.travel-hero .carousel,
.travel-hero .carousel-inner,
.travel-hero .carousel-item {
    width: 100%;
    height: 110vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}


/* HERO OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 12, 0.88) 0%,
            rgba(8, 15, 12, 0.62) 42%,
            rgba(8, 15, 12, 0.20) 100%
        );

    z-index: 1;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 50px;
}

.hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;

    color: var(--primary);

    margin-bottom: 22px;
}

.hero-small-title::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--primary);
}


.hero-content h1 {
    margin: 0 0 25px;

    font-family: var(--heading-font);
    font-size: clamp(55px, 6.5vw, 92px);

    font-weight: 500;
    line-height: 1.02;

    letter-spacing: -2px;
    color: var(--white);
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
    font-style: italic;
}


.hero-content p {
    max-width: 620px;

    margin-bottom: 35px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* PRIMARY BUTTON */

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 25px;

    background: var(--primary);
    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;
}

.primary-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.primary-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}


/* TEXT BUTTON */

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.5);

    padding-bottom: 6px;

    transition: all 0.3s ease;
}

.text-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}


/* CAROUSEL INDICATORS */

.travel-hero .carousel-indicators {
    z-index: 5;

    left: auto;
    right: 50px;

    bottom: 45px;

    margin: 0;

    width: auto;

    justify-content: flex-end;
    gap: 8px;
}

.travel-hero .carousel-indicators button {
    width: 32px;
    height: 2px;

    margin: 0;

    border: 0;

    opacity: 0.45;

    background: var(--white);

    transition: all 0.3s ease;
}

.travel-hero .carousel-indicators button.active {
    width: 60px;
    opacity: 1;
    background: var(--primary);
}


.travel-hero .carousel-control-prev, .travel-hero .carousel-control-next{
    bottom: 85px !important;
}

.travel-hero .carousel-control-prev,
.travel-hero .carousel-control-next {
    z-index: 5;

    top: auto;
    bottom: 30px;

    width: 48px;
    height: 48px;

    opacity: 1;

    border: 1px solid rgba(255,255,255,0.3);

    transition: all 0.3s ease;
}

.travel-hero .carousel-control-prev {
    left: auto;
    right: 175px;
}

.travel-hero .carousel-control-next {
    right: 115px;
}

.travel-hero .carousel-control-prev:hover,
.travel-hero .carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}


/* =====================================================
   TRAVEL SEARCH SECTION
====================================================== */

.travel-search-section {
    position: relative;
    z-index: 10;

    padding: 0 0 20px;

    background: var(--cream);
}


/* SEARCH WRAPPER */

.travel-search-wrapper {
    margin-top: -55px;

    position: relative;
    z-index: 10;

    background: var(--white);

    padding: 30px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.10);

    border: 1px solid rgba(0,0,0,0.05);
}


/* HEADING */

.search-heading {
    margin-bottom: 25px;
}

.search-heading span {
    display: block;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--primary);

    margin-bottom: 6px;
}

.search-heading h3 {
    margin: 0;

    font-family: var(--heading-font);

    font-size: 27px;
    font-weight: 500;

    color: var(--dark);
}


/* FORM */

.travel-search-form {
    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        0.9fr
        1.1fr
        auto;

    align-items: stretch;

    border: 1px solid var(--border);
}


/* SEARCH FIELD */

.search-field {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border-right: 1px solid var(--border);

    background: var(--white);

    transition: all 0.3s ease;
}

.search-field:hover {
    background: #fcfbf8;
}


/* ICON */

.search-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(184, 144, 82, 0.10);

    color: var(--primary);

    border-radius: 50%;
}

.search-icon i {
    font-size: 14px;
}


/* FIELD CONTENT */

.search-field-content {
    min-width: 0;
    width: 100%;
}

.search-field-content label {
    display: block;

    margin-bottom: 4px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #999;
}

.search-field-content select,
.search-field-content input {
    width: 100%;

    border: 0;
    outline: none;

    padding: 0;

    background: transparent;

    font-family: var(--body-font);

    font-size: 13px;

    font-weight: 600;

    color: var(--dark);

    cursor: pointer;
}

.search-field-content input {
    cursor: pointer;
}


/* SEARCH BUTTON */

.travel-search-btn {
    min-width: 145px;

    padding: 0 25px;

    border: 0;

    background: var(--dark);

    color: var(--white);

    font-family: var(--body-font);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transition: all 0.35s ease;
}

.travel-search-btn:hover {
    background: var(--primary);
}

.travel-search-btn i {
    font-size: 13px;
}

/* =====================================================
   SECTION TITLES
===================================================== */

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 17px;
}

.section-title {
    font-family: var(--heading-font);
    color: var(--dark);

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 500;

    line-height: 1.1;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
}

.intro-text {
    max-width: 570px;

    font-size: 17px;
    line-height: 1.9;

    color: var(--muted);
}

.underline-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;

    margin-top: 25px;

    color: var(--dark);
    font-size: 12px;
    font-weight: 700;

    border-bottom: 1px solid var(--dark);
    padding-bottom: 7px;
}

.underline-link i {
    transition: .3s;
}

.underline-link:hover i {
    transform: translateX(5px);
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 50px;
}

.section-heading-text {
    max-width: 370px;
    color: var(--muted);
    line-height: 1.8;
}

.outline-btn {
    border: 1px solid var(--border);

    padding: 14px 20px;

    color: var(--dark);

    font-size: 11px;
    font-weight: 600;

    transition: .3s;
}

.outline-btn i {
    margin-left: 10px;
}

.outline-btn:hover {
    background: var(--dark);
    color: var(--white);
}

/* =====================================================
   PREMIUM INTRO SECTION
====================================================== */

.intro-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}


/* TOP AREA */

.intro-top {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 100px;

    align-items: end;

    padding-bottom: 85px;

    border-bottom: 1px solid var(--border);
}


/* LEFT HEADING */

.intro-heading {
    max-width: 700px;
}

.intro-heading .section-label {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--primary);
}

.intro-heading .section-label::before {
    content: "";

    width: 38px;

    height: 1px;

    background: var(--primary);
}


/* MAIN TITLE */

.intro-title {
    margin: 0;

    font-family: var(--heading-font);

    font-size: clamp(48px, 5.5vw, 78px);

    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -2px;

    color: var(--dark);
}

.intro-title span {
    display: block;

    color: var(--primary);

    font-style: italic;
}

.intro-title strong {
    display: block;

    font-weight: 500;
}


/* RIGHT CONTENT */

.intro-description {
    position: relative;

    max-width: 490px;

    padding-left: 55px;
}


/* NUMBER */

.intro-number {
    position: absolute;

    left: 0;
    top: 0;

    font-family: var(--heading-font);

    font-size: 14px;

    font-weight: 500;

    color: var(--primary);

    letter-spacing: 1px;
}

.intro-description p {
    margin: 0 0 30px;

    font-size: 17px;

    line-height: 1.9;

    color: var(--text);
}


/* LINK */

.intro-link {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    color: var(--dark);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--dark);

    transition: all 0.35s ease;
}

.intro-link span {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--dark);

    border-radius: 50%;

    transition: all 0.35s ease;
}

.intro-link i {
    font-size: 11px;

    transition: transform 0.35s ease;
}

.intro-link:hover {
    color: var(--primary);

    border-color: var(--primary);
}

.intro-link:hover span {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);
}

.intro-link:hover i {
    transform: translateX(3px);
}


/* =====================================================
   INTRO FEATURES
====================================================== */

.intro-features {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        0.7fr;

    padding-top: 35px;
}


/* FEATURE */

.intro-feature {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px 30px;

    border-right: 1px solid var(--border);
}

.intro-feature:first-child {
    padding-left: 0;
}

.intro-feature:last-child {
    border-right: 0;
}


/* ICON */

.feature-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--primary);

    font-size: 14px;

    transition: all 0.35s ease;
}

.intro-feature:hover .feature-icon {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}


/* TEXT */

.intro-feature strong {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;

    font-weight: 700;

    color: var(--dark);
}

.intro-feature span {
    display: block;

    font-size: 11px;

    color: #888;

    line-height: 1.5;
}


/* NUMBER FEATURE */

.intro-feature-number {
    justify-content: center;

    gap: 14px;
}

.intro-feature-number strong {
    margin: 0;

    font-family: var(--heading-font);

    font-size: 38px;

    line-height: 1;

    color: var(--primary);

    font-weight: 500;
}

.intro-feature-number span {
    font-size: 10px;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: 1px;
}

/* =====================================================
   DESTINATIONS
===================================================== */

.destination-section {
    background: var(--cream);
}

.destination-card {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.destination-card.large-card {
    height: 520px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            transparent 55%
        );
}

.destination-overlay {
    position: absolute;
    z-index: 2;

    left: 28px;
    right: 28px;
    bottom: 27px;

    display: flex;
    justify-content: space-between;
    align-items: end;
}

.destination-overlay span {
    color: rgba(255,255,255,.7);
    font-size: 10px;
    letter-spacing: 2px;
}

.destination-overlay h3 {
    margin: 7px 0 0;

    color: var(--white);
    font-family: var(--heading-font);

    font-size: 36px;
}

.destination-overlay a {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.5);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

.destination-overlay a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.destination-overlay a i {
    transform: rotate(45deg);
}


/* =====================================================
   PACKAGES
===================================================== */

.package-card {
    background: var(--white);

    border: 1px solid var(--border);

    transition: .4s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.package-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .7s;
}

.package-card:hover .package-image img {
    transform: scale(1.07);
}

.package-tag {
    position: absolute;
    top: 18px;
    left: 18px;

    background: var(--white);

    padding: 7px 12px;

    color: var(--dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-content {
    padding: 28px;
}

.package-location {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
}

.package-location i {
    margin-right: 5px;
}

.package-content h3 {
    font-family: var(--heading-font);

    font-size: 30px;

    color: var(--dark);

    margin: 10px 0;
}

.package-content p {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;

    min-height: 46px;
}

.package-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.package-bottom small {
    display: block;

    color: var(--muted);

    font-size: 8px;
    letter-spacing: 1px;
}

.package-bottom strong {
    display: block;

    font-size: 18px;
    color: var(--dark);

    margin-top: 3px;
}

.package-bottom > a {
    width: 43px;
    height: 43px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid var(--border);

    color: var(--dark);

    transition: .3s;
}

.package-bottom > a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: var(--dark);
}

.about-section .section-title {
    color: var(--white);
}

.about-images {
    position: relative;
    padding-right: 70px;
}

.about-main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.experience-box {
    position: absolute;

    right: 0;
    bottom: 35px;

    width: 190px;

    padding: 25px;

    background: var(--primary);
}

.experience-box strong {
    display: block;

    color: var(--white);
    font-family: var(--heading-font);

    font-size: 45px;
}

.experience-box span {
    color: rgba(255,255,255,.9);

    font-size: 11px;
    line-height: 1.6;
}

.about-text {
    color: rgba(255,255,255,.65);

    font-size: 15px;
    line-height: 1.9;

    margin: 25px 0 35px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 18px;
}

.feature-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.2);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    color: var(--white);

    font-size: 15px;

    margin-bottom: 5px;
}

.feature-item p {
    color: rgba(255,255,255,.55);

    font-size: 12px;
    line-height: 1.6;

    margin: 0;
}


/* =====================================================
   EXPERIENCES
===================================================== */

.experience-section {
    background: var(--cream);
}

.section-heading-center {
    max-width: 650px;
    margin: auto;
}

.section-heading-center p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 15px;
}

.experience-card {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.experience-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.8),
            transparent 65%
        );
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .7s;
}

.experience-card:hover img {
    transform: scale(1.07);
}

.experience-card > div {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 2;
}

.experience-card span {
    color: var(--primary);

    font-size: 11px;
}

.experience-card h3 {
    color: var(--white);

    font-family: var(--heading-font);

    font-size: 29px;

    margin: 5px 0;
}

.experience-card p {
    color: rgba(255,255,255,.7);

    font-size: 11px;

    margin: 0;
}

/* =====================================================
   STATS SECTION
====================================================== */

.stats-section {
    padding: 80px 0;
    background: var(--cream);
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.stat-item strong {
    display: block;
    margin-bottom: 12px;

    font-family: var(--heading-font);
    font-size: 52px;
    line-height: 1;
    font-weight: 500;

    color: var(--primary);
}

.stat-item strong .counter {
    display: inline-block;
}

.stat-item > span {
    display: block;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--text);
}
/* ===================================================== TESTIMONIAL ===================================================== */ .testimonial-section { 
    background: var(--white);
 } 
 .testimonial-box {
     max-width: 900px;
      margin: auto;
       text-align: center;
     } 
.quote-icon { 
    color: var(--primary); 
    font-size: 35px;
 }
.testimonial-box > p {
    color: var(--dark); 
    font-family: var(--heading-font); 
    font-size: clamp(28px, 3vw, 42px); 
    line-height: 1.35;
    margin: 25px auto 35px; 
} 
    .testimonial-author {
    display: flex; 
    justify-content: center;
    align-items: center; 
    gap: 12px;
    } 
    .author-image {
    width: 45px;
    height: 45px; 
    border-radius: 50%; 
    overflow: hidden;
    } 
    .author-image img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    } 
    .testimonial-author strong {
         display: block;
          color: var(--dark); 
          font-size: 12px;
           text-align: left; 
        } 
.testimonial-author span { 
    display: block; 
    color: var(--muted); 
    font-size: 10px;
     text-align: left;
      margin-top: 3px; 
    }
/* =====================================================
   PREMIUM CTA SECTION
====================================================== */

.cta-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}


.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/img7.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

/* Dark Luxury Overlay */

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 17, 14, 0.90) 0%,
            rgba(10, 17, 14, 0.68) 50%,
            rgba(10, 17, 14, 0.82) 100%
        );
}

/* Main Wrapper */

.cta-wrapper {
    position: relative;
    z-index: 2;
    min-height: 520px;
    padding: 100px 60px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.18);
}

/* Decorative Circle */

.cta-decoration {
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-decoration::before {
    content: "";
    position: absolute;
    inset: 35px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
}

.cta-decoration span:first-child {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    top: 38px;
    left: 50%;
}

.cta-decoration span:last-child {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    bottom: 75px;
    right: 48px;
}

/* CTA Content */

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

/* Label */

.cta-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 28px;

    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cta-label span {
    width: 35px;
    height: 1px;
    background: var(--primary);
}

/* Heading */

.cta-content h2 {
    margin: 0 auto 25px;

    max-width: 850px;

    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -2px;

    color: var(--white);
}

.cta-content h2 em {
    display: block;
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

/* Description */

.cta-content p {
    max-width: 570px;
    margin: 0 auto 38px;

    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
}

/* Buttons */

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

/* Primary Button */

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 7px 7px 7px 25px;

    background: var(--primary);
    color: var(--white);

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all 0.35s ease;
}

.cta-primary-btn span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark);
    transition: all 0.35s ease;
}

.cta-primary-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-primary-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.cta-primary-btn:hover span {
    background: var(--primary);
    color: var(--white);
}

.cta-primary-btn:hover i {
    transform: translateX(4px);
}

/* Secondary Button */

.cta-secondary-btn {
    color: var(--white);
    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.5);

    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Bottom Text */

.cta-bottom-text {
    position: absolute;
    z-index: 3;

    left: 45px;
    right: 45px;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.15);

    color: rgba(255,255,255,0.45);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: var(--dark);

    color: var(--white);

    padding: 80px 0 25px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo img {
    width: 150px;
    background: var(--white);
    height: auto;
    display: block;
    object-fit: contain;
}

.footer p {
    color: rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.8;

    margin-top: 20px;

    max-width: 330px;
}

.footer h4 {
    color: var(--white);

    font-size: 13px;

    margin-bottom: 25px;
}

.footer ul li {
    margin-bottom: 13px;
}

.footer ul a {
    color: rgba(255,255,255,.55);

    font-size: 11px;

    transition: .3s;
}

.footer ul a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 10px;

    margin-top: 25px;
}

.social-links a {
    width: 37px;
    height: 37px;

    border: 1px solid rgba(255,255,255,.2);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.newsletter {
    display: flex;

    margin-top: 20px;
}

.newsletter input {
    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    color: var(--white);

    outline: none;

    font-size: 11px;
}

.newsletter button {
    width: 55px;

    border: 0;

    background: var(--primary);

    color: var(--white);
}

.footer-bottom {
    margin-top: 70px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.4);

    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: rgba(255,255,255,.4);
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* =====================================================
   BACK TO TOP
===================================================== */

#topBtn {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    background: var(--primary);
    color: var(--white);

    border: none;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);

    z-index: 999;
}

#topBtn.show {
    opacity: 1;
    visibility: visible;
}

#topBtn:hover {
    background: var(--primary-dark);
}

