/* =========================================
   Global Variables & Design System
   ========================================= */
:root {
    /* Main Brand Colors */
    --primary-color: #004BEB;
    --primary-hover: #0036B8;

    /* Neutrals */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;

    /* Typography */
    --font-primary: 'Ubuntu', sans-serif;

    /* Border Radius (Specific Requirement) */
    --radius-default: 24px;
    --radius-sm: 12px;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Elevation / Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-header: 0 4px 20px rgba(0, 75, 235, 0.08);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Typography Global Styles
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

/* Fluid Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-xs);
}

/* =========================================
   Layout & Utility Classes
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
}

/* =========================================
   Buttons (Global Component)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: var(--radius-default);
    /* 24px requirement */
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
}


.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 75, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(0, 75, 235, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 75, 235, 0.2);
}

.btn-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   Header & Navigation Base (Sticky)
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-header);
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
    padding: 12px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.main-nav {
    background-color: var(--bg-white);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 0;
    /* Remove gap natively on mobile */
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 8px 4px;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* =========================================
   Mobile-First Responsive Navigation
   ========================================= */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
    gap: var(--spacing-lg);
    transition: right 0.3s ease;
    z-index: 1005;
    /* Above overlay */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .top-actions .btn {
        display: none;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid var(--border-color);
    }
}

@media (min-width: 768px) {
    .mobile-menu-actions {
        display: none !important;
    }
}

.mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1006;
    /* Must sit above overlay */
    position: relative;
    /* ensure z-index applies over absolute/fixed overlaps */
}

body.drawer-open {
    overflow: hidden;
}

/* Desktop Breakpoint */
@media (min-width: 992px) {
    .top-actions .mobile-toggle {
        display: none;
    }

    .nav-inner {
        height: 60px;
    }

    .nav-menu {
        position: static;
        width: 100%;
        height: auto;
        max-width: 100%;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        justify-content: center;
        gap: var(--spacing-md);
        box-shadow: none;
    }

    .menu-overlay {
        display: none;
    }
}

/* Layout spacing for fixed header */
.site-main {
    padding-top: 50px;
}

@media (min-width: 992px) {
    .site-main {
        padding-top: 100px;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 555px;
    /* Fixed height requirement */
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Slow movement effect */
    animation: slowPan 25s ease-in-out infinite alternate;
}

@keyframes slowPan {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1) translate(1%, 1%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
}

.hero-content h1 {
    color: var(--bg-white);
    max-width: 600px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    font-size: 1.125rem;
}

/* =========================================
   2-Column Enquiry Section
   ========================================= */
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.enquiry-usp {
    order: 1;
}

.enquiry-form {
    order: 2;
}

.enquiry-image {
    order: 3;
}

.usp-list {
    margin-top: var(--spacing-md);
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    font-weight: 500;
}

.usp-list .icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Card Style for Form */
.card {
    background-color: var(--bg-white);
    border-radius: var(--radius-default);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.card h3 {
    margin-bottom: var(--spacing-md);
}

/* Form Controls */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 75, 235, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.w-100 {
    width: 100%;
}

.rounded-img {
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

/* Desktop Breakpoint */
@media (min-width: 992px) {
    .enquiry-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "usp form"
            "img form";
        align-items: start;
        row-gap: var(--spacing-md);
        column-gap: var(--spacing-xl);
    }

    .enquiry-usp {
        grid-area: usp;
    }

    .enquiry-form {
        grid-area: form;
    }

    .enquiry-image {
        grid-area: img;
    }
}

/* =========================================
   About Us Section
   ========================================= */
.bg-white {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.about-image {
    position: relative;
}

/* Trust-building overlapping badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content h2 {
    margin-bottom: var(--spacing-sm);
}

.about-features {
    margin: var(--spacing-md) 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

.about-features .material-symbols-outlined {
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
    }
}

/* =========================================
   Services Section
   ========================================= */
.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-default);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-header);
    border-color: var(--primary-color);
}

.service-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card-content {
    padding: var(--spacing-md);
    flex-grow: 1;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================================
   How It Works Section
   ========================================= */
.steps-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.steps-carousel::-webkit-scrollbar {
    display: none;
}

.step-card {
    flex: 0 0 85%;
    /* peek next card on mobile */
    scroll-snap-align: center;
    background: var(--bg-white);
    border-radius: var(--radius-default);
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-light);
}

.step-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .step-card {
        flex: 0 0 45%;
    }
}

@media (min-width: 1024px) {
    .steps-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 24px;
    }

    .step-card {
        flex: auto;
    }
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-slider-mobile {
    width: 100%;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    width: 100%;
    gap: 24px;
    animation: mobileAutoSlide 20s infinite ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--bg-light);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: #FACC15;
    /* gold */
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.testimonial-card .review {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.7;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-info .avatar-icon {
    font-size: 40px;
    color: var(--primary-color);
    background-color: rgba(0, 75, 235, 0.1);
    border-radius: 50%;
}

.customer-info h4 {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.customer-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

@keyframes mobileAutoSlide {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(calc(-100% - 24px));
    }

    50%,
    70% {
        transform: translateX(calc(-200% - 48px));
    }

    75%,
    95% {
        transform: translateX(calc(-300% - 72px));
    }

    100% {
        transform: translateX(0);
    }
}

@media (min-width: 1024px) {
    .testimonials-slider-mobile {
        overflow: visible;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        animation: none;
    }

    .testimonial-card {
        width: auto;
        flex: auto;
    }
}

/* =========================================
   Brands Section
   ========================================= */
.brand-slider-container {
    padding: var(--spacing-md) 0;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brand-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    white-space: nowrap;
    align-items: center;
    gap: 60px;
    /* explicit smooth space */
    padding: 0 var(--spacing-xl);
    cursor: grab;
}

.brand-track::-webkit-scrollbar {
    display: none;
}

.brand-track:active {
    cursor: grabbing;
}

.brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: var(--spacing-xs) 0;
}

.brand-item h3 {
    color: var(--text-light);
    /* Grayscale/neutral brand presentation */
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-item:hover h3 {
    color: var(--primary-color);
}

/* =========================================
   Footer Section
   ========================================= */
.footer {
    background-color: #0F172A;
    color: #F8FAFC;
    padding-top: var(--spacing-xl);
    font-family: var(--font-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo {
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #60A5FA;
    /* Accessible light blue for dark background */
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact .material-symbols-outlined {
    color: #60A5FA;
    font-size: 20px;
    margin-top: 2px;
}

.footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #60A5FA;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #020617;
    padding: 1.5rem 0;
    border-top: 1px solid #1E293B;
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom-flex p {
    margin: 0;
    color: #64748B;
    font-size: 0.875rem;
}

/* Responsive Layouts */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* =========================================
   Contact Us Page Specific Styles
   ========================================= */
.page-hero {
    background-color: var(--primary-color);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--bg-white);
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-xs);
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.section-contact-cards {
    margin-top: calc(-1 * var(--spacing-xl)); /* Negative margin to overlap hero slightly */
    padding-top: 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.contact-info-card {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 75, 235, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 75, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.card-icon .material-symbols-outlined {
    font-size: 32px;
}

.contact-link, .contact-detail {
    display: block;
    margin-top: var(--spacing-xs);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-color);
}

/* Interaction Section (Map + Form) */
.interaction-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .interaction-grid {
        flex-direction: row-reverse; /* Form on left-ish, Map on right but swapped for variety */
        align-items: stretch;
    }
    
    .interaction-grid > div {
        flex: 1;
    }
    
    .map-container {
        display: flex;
    }
    
    .map-container iframe {
        flex: 1;
        min-height: 100%;
    }
}

/* Navigation Active State Fix */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}