/* =========================================================
   LEISURE FAN TOURS AND SAFARIS
   LUXURY AFRICAN SAFARI WEBSITE
   COMPLETE STYLE.CSS
========================================================= */

/* =========================
   RESET & GLOBAL
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

section,
header,
footer {
    width: 100%;
    position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span {
    overflow-wrap: break-word;
}

/* =========================
   COLORS
========================= */
:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --dark: #17331d;
    --green: #0b5d3b;
    --green-dark: #073f29;
    --cream: #faf8f2;
    --white: #ffffff;
    --light: #f5f5f2;
    --text: #333333;
    --light-text: #777777;
    --border: #e7e2d5;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

p {
    color: #555;
    margin-bottom: 15px;
}

.small-title {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* =========================
   BUTTONS
========================= */
.gold-button {
    display: inline-block;
    border: none;
    background: var(--gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.gold-button:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-button:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
========================================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    width: 100%;
    max-width: 1400px;
    min-height: 82px;
    margin: 0 auto;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    flex-shrink: 0;
    z-index: 2;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 180px;
    max-height: 85px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    padding: 11px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    color: var(--dark);
    font-size: 25px;
    cursor: pointer;
    z-index: 2;
}

/* =========================================================
   HERO
========================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.58)),
        url("safari.jpg") center center / cover no-repeat;
    padding-top: 82px;
}

.hero-overlay {
    width: 100%;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 80px 6%;
    color: #fff;
}

.hero-content .welcome {
    color: var(--gold);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 1.03;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.hero-text {
    max-width: 750px;
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */
.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin-bottom: 15px;
}

/* =========================================================
   ABOUT
========================================================= */
.about-section {
    padding: 110px 6%;
    background: var(--cream);
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-gallery {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 250px;
    box-shadow: var(--shadow);
}

.about-image.image-large {
    grid-row: 1 / 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
}

/* =========================================================
   WHY WE ARE UNIQUE
========================================================= */
.unique-section {
    padding: 110px 6%;
    background: #fff;
}

.unique-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.unique-image {
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.unique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unique-content h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    margin-bottom: 22px;
}

.unique-content > p {
    line-height: 1.9;
}

.unique-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.feature > i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    border-radius: 50%;
    font-size: 19px;
}

.feature h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================================
   SERVICES / EXPERIENCES
========================================================= */
.experiences-section {
    padding: 110px 6%;
    background: var(--cream);
}

.experience-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experience-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.experience-card > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.experience-content {
    padding: 25px;
}

.experience-content h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.experience-content p {
    font-size: 14px;
    line-height: 1.75;
}

.experience-content a {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   DESTINATIONS
========================================================= */
.destinations-section {
    padding: 110px 6%;
    background: #fff;
}

.destination-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--dark);
    box-shadow: var(--shadow);
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.08) 65%,
        transparent
    );
    z-index: 1;
}

.destination-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.07);
}

.destination-card > div {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
}

.destination-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.destination-card p {
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
}

/* =========================================================
   ITINERARIES CTA
========================================================= */
.itineraries-cta {
    padding: 100px 6%;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(11, 93, 59, 0.90), rgba(23, 51, 29, 0.94)),
        url("amboseli-serengeti.jpg") center / cover no-repeat;
}

.itineraries-cta-content {
    max-width: 850px;
    margin: auto;
}

.itineraries-cta .small-title {
    color: var(--gold);
}

.itineraries-cta h2 {
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin-bottom: 20px;
}

.itineraries-cta p {
    color: #f2f2f2;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-section {
    padding: 110px 6%;
    background: var(--cream);
}

.gallery-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.025);
    filter: brightness(0.9);
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.reviews {
    padding: 110px 6%;
    background: #fff;
}

.review-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    min-height: 340px;
    margin: auto;
}

#firebaseReviews {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.review-slide {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    text-align: center;
    box-shadow: var(--shadow);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.review-stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.review-message {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.review-name {
    color: var(--green);
    font-weight: 700;
}

.review-country {
    color: var(--light-text);
    margin-top: 5px;
}

.review-loading {
    text-align: center;
    padding: 70px 20px;
    color: #777;
}

.review-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.review-arrow:hover {
    background: var(--gold);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.review-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.review-dot.active {
    background: var(--green);
}

/* =========================================================
   REVIEW FORM
========================================================= */
.review-form-section {
    padding: 110px 6%;
    background: var(--cream);
}

#reviewForm {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 45px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

#reviewForm input,
#reviewForm select,
#reviewForm textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    outline: none;
    background: #fff;
    color: #333;
}

#reviewForm input:focus,
#reviewForm select:focus,
#reviewForm textarea:focus {
    border-color: var(--gold);
}

/* =========================================================
   REQUEST A QUOTE
========================================================= */
.quote-section {
    padding: 110px 6%;
    background: #fff;
}

.quote-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.quote-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    margin-bottom: 20px;
}

.quote-text > p {
    line-height: 1.9;
}

.quote-contact {
    margin-top: 35px;
}

.quote-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.quote-contact i {
    width: 25px;
    color: var(--gold);
}

.quote-form {
    padding: 40px;
    background: var(--cream);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.quote-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #ddd7c8;
    border-radius: 10px;
    padding: 13px 15px;
    margin-bottom: 20px;
    background: #fff;
    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--gold);
}

.quote-form textarea {
    resize: vertical;
}

/* =========================================================
   CONTACT
========================================================= */
.contact-section {
    padding: 100px 6%;
    text-align: center;
    background: var(--dark);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-section .small-title {
    color: var(--gold);
}

.contact-section h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
}

.contact-section > .contact-container > p {
    color: #ddd;
}

.contact-section .contact-container > p i {
    color: var(--gold);
    margin-right: 8px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #102617;
    color: #fff;
}

.footer-content {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding: 70px 6%;
}

.footer-content h3,
.footer-content h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-content h3 {
    font-size: 25px;
}

.footer-content p,
.footer-content a {
    color: #ddd;
    margin-bottom: 10px;
    display: block;
}

.footer-content a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    color: #bbb;
    margin: 0;
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 2000;
    transition: .3s;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
}

/* =========================================================
   BACK TO TOP
========================================================= */
#topBtn {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: .3s;
}

#topBtn:hover {
    background: #000;
}

/* =========================================================
   GOOGLE TRANSLATE
========================================================= */
.language-switcher {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 9999;
    background: rgba(255,255,255,.95);
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
}

.goog-te-gadget {
    font-family: "Poppins", sans-serif !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    color: #333 !important;
    font-size: 13px !important;
    padding: 4px;
    border: 0;
    background: transparent;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

.goog-tooltip {
    display: none !important;
}

body {
    top: 0 !important;
}

/* =========================================================
   SUCCESS MESSAGE
========================================================= */
.review-success {
    background: #fff;
    border-left: 6px solid #0b8a3c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.review-success i {
    font-size: 60px;
    color: #0b8a3c;
    margin-bottom: 20px;
}

.review-success h3 {
    color: var(--green);
    margin-bottom: 10px;
}

/* =========================================================
   ITINERARIES PAGE SUPPORT
========================================================= */
.itineraries-hero {
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("amboseli-serengeti.jpg") center / cover no-repeat;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1100px) {
    .navbar {
        padding-left: 3%;
        padding-right: 3%;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

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

    .about-container,
    .unique-container,
    .quote-container {
        grid-template-columns: 1fr;
    }

    .unique-image {
        height: 500px;
    }

    .about-gallery {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .nav-button {
        display: none;
    }

    .nav-links {
        gap: 12px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {
    header {
        position: fixed;
    }

    .navbar {
        min-height: 75px;
        padding: 10px 5%;
    }

    .logo img {
        width: 150px;
        max-height: 75px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 25px;
        background: var(--dark);
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #fff;
        font-size: 15px;
    }

    .hero {
        min-height: 760px;
        padding-top: 75px;
        background-position: center;
    }

    .hero-overlay {
        min-height: 685px;
    }

    .hero-content {
        padding: 100px 7% 60px;
    }

    .hero-content .welcome {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
    }

    .hero-text {
        font-size: 14px;
    }

    .about-section,
    .unique-section,
    .experiences-section,
    .destinations-section,
    .gallery-section,
    .reviews,
    .quote-section,
    .review-form-section,
    .contact-section {
        padding: 80px 5%;
    }

    .about-container,
    .unique-container,
    .quote-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-gallery {
        min-height: 450px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }

    .about-image.image-large {
        grid-row: 1 / 3;
    }

    .unique-image {
        height: 430px;
    }

    .unique-features {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }

    .review-wrapper {
        gap: 8px;
    }

    .review-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .review-container {
        min-height: 390px;
    }

    .review-slide {
        padding: 30px 20px;
    }

    .review-message {
        font-size: 16px;
    }

    #reviewForm,
    .quote-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 55px 7%;
    }

    .language-switcher {
        top: 8px;
        right: 8px;
        transform: scale(.88);
        transform-origin: top right;
    }
}

/* =========================================================
   SMALL PHONES
========================================================= */
@media (max-width: 480px) {
    .logo img {
        width: 125px;
    }

    .hero-content {
        padding: 85px 6% 45px;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .hero-text {
        font-size: 13px;
    }

    .gold-button {
        padding: 13px 24px;
        font-size: 14px;
    }

    .about-gallery {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 250px 190px 190px;
    }

    .about-image.image-large {
        grid-row: auto;
    }

    .unique-image {
        height: 350px;
    }

    .destination-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .destination-card,
    .destination-card img {
        min-height: 330px;
        height: 330px;
    }

    .gallery-grid img {
        height: 260px;
    }

    .review-wrapper {
        flex-direction: column;
    }

    .review-container {
        min-height: 420px;
        order: 1;
    }

    .review-arrow {
        position: absolute;
        z-index: 5;
        top: 50%;
        transform: translateY(-50%);
    }

    #prevReview {
        left: 8px;
    }

    #nextReview {
        right: 8px;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        right: 18px;
        bottom: 18px;
        font-size: 26px;
    }

    #topBtn {
        right: 18px;
        bottom: 88px;
    }

    .quote-text h2,
    .contact-section h2 {
        font-size: 2.4rem;
    }
}

/* =========================================================
   END
========================================================= */