﻿/* --- COMPONENT CONFIGURATION SYSTEM VARIABLES VARIABLES --- */
:root {
    --bg: #050505;
    --card: #0c0c0e;
    --card-hover: #121215;
    --border: rgba(255, 255, 255, 0.05);
    --accent: #ff4500;
    --accent-glow: rgba(255, 69, 0, 0.55);
    --text-muted: #a1a1aa;
    --font-h: 'Anton', sans-serif;
    --font-b: 'Inter', sans-serif;
}

/* --- MASTER CORE RESET MODULES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg);
    color: #ffffff;
    font-family: var(--font-b);
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 200px;
}

.max-width-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.alternative-bg {
    background: radial-gradient(circle at 50% 0%, #0c0c0e 0%, #050505 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.text-center {
    text-align: center;
}

.overflow-hidden {
    overflow: hidden;
}

/* --- MASTER UTILITY BLOCK TYPOGRAPHY --- */
h2 {
    font-family: var(--font-h);
    font-size: clamp(3.2rem, 8vw, 5.2rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    margin-bottom: 18px;
}

.section-sub {
    color: var(--text-muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 620px;
    margin: 0 auto 64px;
    line-height: 1.5;
}

.accent-text {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}

/* --- GLASSMORPHISM NAVBAR FRAME --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 135px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #ffffff;
        }

.nav-btn {
    background: var(--accent);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
}

    .nav-btn:hover {
        background: #ff5e1a;
        transform: translateY(-1px);
        box-shadow: 0 0 30px var(--accent-glow);
    }

.mobile-toggle {
    display: none !important;
}

.plan-dots-container {
    display: none;
}

/* --- PREMIUM HIGH-IMPACT HERO VIEW LAYOUT --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 220px;
    padding-bottom: 120px;
}

.noise-bg {
    background-image: radial-gradient(rgba(255, 69, 0, 0.02) 1px, transparent 0);
    background-size: 24px 24px;
}

.radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(400px, 80vw, 750px);
    height: clamp(400px, 80vw, 750px);
    background: radial-gradient(circle, rgba(255, 69, 0, 0.07) 0%, transparent 75%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulsePill 2s infinite;
}

@keyframes pulsePill {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 transparent;
    }
}

.status-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

h1 {
    font-family: var(--font-h);
    font-size: clamp(3.5rem, 11vw, 7.2rem);
    line-height: 0.85;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-sub {
    color: var(--text-muted);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 48px;
}

.vsl-container {
    width: 95%;
    margin: 0 auto 48px;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    clip-path: polygon(20% 10%, 20% 90%, 90% 50%);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse-frame {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: wheelScrollMove 1.6s infinite;
}

@keyframes wheelScrollMove {
    0% {
        opacity: 0;
        transform: translateY(-2px);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 0;
    }
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-family: var(--font-h);
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: #ff5e1a;
        box-shadow: 0 0 25px var(--accent-glow);
    }

.glass, .step-card, .testimonial-card, .contact-box {
    transition: all 0.3s ease-out;
    border: 1px solid var(--border);
    transform: translateY(0);
    will-change: transform, box-shadow, border-color, background-color;
}

    .glass:hover, .step-card:hover, .testimonial-card:hover, .contact-box:hover {
        border: 1px solid var(--accent) !important;
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
        background-color: var(--card-hover) !important;
        z-index: 5;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.square {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: clamp(16px, 2vw, 28px);
    border-radius: 24px;
    background: var(--card);
}

.icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.square h3 {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.square p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.1vw, 0.88rem);
    line-height: 1.45;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--card);
    padding: 32px;
    border-radius: 16px;
}

.step-num {
    font-family: var(--font-h);
    font-size: 3.2rem;
    color: var(--accent);
    opacity: 0.25;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.step-card h3 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.about-container {
    display: flex;
    gap: 56px;
    align-items: center;
    padding: 56px;
    border-radius: 24px;
    background: var(--card);
}

.desktop-reverse {
    flex-direction: row-reverse;
}

.about-img-box {
    position: relative;
    flex: 0 0 350px;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
    align-self: center;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: zoom-in;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.about-img-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.5) 0%, transparent 60%);
    z-index: 1;
}

.img-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 6px 14px;
    font-family: var(--font-h);
    font-size: 0.78rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 2;
}

.about-text {
    flex: 1.5;
}

.section-tag-upper {
    display: block;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.coach-biography-paragraphs p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.highlighted-span {
    color: #ffffff;
    font-weight: 700;
}

.coach-slider-container {
    position: relative;
    min-height: 180px;
}

.coach-slide {
    display: none;
    animation: slideFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .coach-slide.active {
        display: block;
    }

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.coach-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.slide-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slide-indicator {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.slide-btn {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slide-btn:hover {
        background: var(--accent);
        color: #fff;
        box-shadow: 0 0 15px var(--accent-glow);
    }

    .slide-btn#prev-coach {
        transform: rotate(180deg);
    }

.auto-arrow-btn {
    animation: autoArrowPulse 2s infinite;
}

@keyframes autoArrowPulse {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.header-central {
    text-align: center;
    margin-bottom: 12px;
}

.slider-container {
    overflow-x: auto;
    position: relative;
    width: 100%;
    padding: 16px 0;
    display: flex;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .slider-container::-webkit-scrollbar {
        display: none;
    }

.slider-track {
    display: flex;
    width: max-content;
}

.testimonial-card {
    width: 350px;
    margin: 0 14px;
    background: var(--card);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
}

.client-img {
    width: 130px;
    height: 130px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid var(--accent);
    margin-bottom: 16px;
    cursor: zoom-in;
}

.result-badge {
    display: block;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 88px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 44px;
    border-radius: 24px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-h);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* --- ADDED PADDING TOP TO PREVENT HOVER CLIPPING --- */
.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px; /* Shifted the visual spacing */
    padding-top: 20px; /* Built-in headroom so hover pop isn't cut off */
    padding-bottom: 20px;
}

.contact-box {
    padding: 56px 40px;
    border-radius: 24px;
    background: var(--card);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.box-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-box h3 {
    font-family: var(--font-h);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-box p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 32px;
}

.urgency-banner {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.urgency-wrapper-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 69, 0, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.15);
    padding: 12px 28px;
    border-radius: 100px;
}

.live-pulse-indicator {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseCorePipelined 1.8s infinite;
}

@keyframes pulseCorePipelined {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.urgency-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.whatsapp-float {
    position: fixed;
    bottom: clamp(12px, 3vw, 24px);
    left: clamp(12px, 3vw, 24px);
    width: clamp(55px, 6vw, 65px);
    height: clamp(55px, 6vw, 65px);
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 900;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: translateY(-4px);
        background-color: #20b858;
        box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.5);
    }

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 5, 0.96);
    z-index: 9999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border: 1px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.close-lightbox {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 52px;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

footer {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #111113;
    background: #020203;
}

.footer-logo-img {
    margin: 0 auto 16px;
    height: 125px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.footer-motto {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.copyright-notice {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

.reveal-bubble {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
    transition: opacity 0.35s ease-out, transform 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    will-change: transform, opacity;
}

    .reveal-bubble.active {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
    }

.avatar-container {
    position: fixed;
    bottom: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    width: clamp(85px, 15vw, 150px);
    height: auto;
    pointer-events: none;
    z-index: 900;
}

#workout-avatar {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    will-change: transform;
}

.eating-arm {
    transform-origin: 68px 55px;
    animation: eatIceCream 2.2s ease-in-out infinite;
}

@keyframes eatIceCream {
    0%, 40%, 100% {
        transform: rotate(0deg);
    }

    55% {
        transform: rotate(-55deg);
    }

    70% {
        transform: rotate(-40deg);
    }

    85% {
        transform: rotate(-55deg);
    }
}

@media (max-width: 992px) {
    .desktop-reverse {
        flex-direction: column !important;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 44px 24px;
    }

    .about-img-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === MOBILE-SPECIFIC ADJUSTMENTS === */
@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 150px;
    }

    .navbar {
        padding: 4px 0;
    }

    .logo-img {
        height: 105px;
    }

    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 22px;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        padding: 0;
        margin: 0;
        z-index: 1001;
    }

        .mobile-toggle .bar {
            width: 100%;
            height: 3px;
            background-color: #ffffff;
            border-radius: 3px;
            transition: transform 0.4s ease, opacity 0.4s ease;
            transform-origin: center;
        }

        .mobile-toggle.is-active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .mobile-toggle.is-active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.is-active .bar:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        padding: 130px 24px 40px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        z-index: 998;
        border-left: 1px solid var(--border);
        border-bottom: none;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .mobile-menu.is-active {
            transform: translateX(0);
        }

        .mobile-menu a:not(.mobile-menu-btn) {
            color: #ffffff;
            text-decoration: none;
            font-family: var(--font-h);
            font-size: 2.2rem;
            text-transform: uppercase;
            border: none;
            text-align: center;
            width: 100%;
        }

    .mobile-menu-btn {
        background: var(--accent) !important;
        padding: 14px !important;
        border-radius: 6px !important;
        font-family: var(--font-b) !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-top: 10px !important;
        text-decoration: none !important;
        color: #ffffff !important;
        border: none !important;
        display: block;
        width: 100%;
    }

    .section-padding {
        padding: 80px 0;
    }

    #app-mockup-box {
        width: 100% !important;
        max-width: 380px;
        margin: 0 auto 32px;
        height: auto;
        aspect-ratio: auto;
    }

        #app-mockup-box img {
            width: 100%;
            height: auto;
            display: block;
        }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .square {
        padding: 18px 16px;
        border-radius: 12px;
        aspect-ratio: auto;
        min-height: 140px;
    }

    .icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .square h3 {
        font-size: 0.95rem;
    }

    .square p {
        font-size: 0.8rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 20px;
        border-radius: 12px;
    }

    .step-num {
        font-size: 2.6rem;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 20px;
    }

    /* --- ADDED PADDING TOP HERE TOO TO FIX MOBILE HOVER CLIPPING --- */
    .action-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 24px;
        padding-top: 20px; /* Built-in headroom for mobile hover */
        gap: 16px;
        margin-top: 10px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

        .action-grid::-webkit-scrollbar {
            display: none;
        }

    .contact-box {
        min-width: 82vw;
        max-width: 82vw;
        scroll-snap-align: center;
        padding: 20px 16px;
        min-height: auto;
        flex-shrink: 0;
    }

    .plan-dots-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .plan-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #333;
        transition: background-color 0.3s ease;
    }

        .plan-dot.active {
            background-color: var(--accent);
        }

    .box-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .contact-box h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .contact-box p,
    .contact-box div p {
        font-size: 0.85rem;
    }
}
