:root {
    --brand-orange: #ff7a00;
    --brand-orange-light: #ff9a2f;
    --brand-blue: #1e90ff;
    --brand-red: #ff2d2d;
    --text-dark: #222;
    --text-light: #555;
    --white: #fff;
    --bg-light: #f9fafc;
}

/* =================== RESET / BASE =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

section {
    padding: 70px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

/* =================== BANNER =================== */
.banner {
    background: var(--brand-orange);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-weight: 700;
    font-size: 1rem;
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #333;
    overflow: hidden;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.58);
    padding: 2rem;
    border-radius: 20px;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 20px;
    backdrop-filter: blur(3px);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn {
    margin: 0;
}

/* =================== BUTTONS =================== */
.btn,
.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn {
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 1rem;
}

.btn.primary,
.book-btn {
    background: var(--brand-orange);
    color: #fff;
}

.btn.primary:hover,
.book-btn:hover {
    background: #e56b00;
}

.btn.secondary {
    background: var(--brand-blue);
    color: #fff;
}

.btn.secondary:hover {
    background: #1877d8;
}

.book-btn {
    margin-top: 12px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* =================== BOOKING FORM =================== */
.booking-form-box {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
}

.booking-form-box h2 {
    text-align: left;
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--brand-orange);
}

/* =================== TRUST HIGHLIGHTS =================== */
.trust-highlights {
    background: #fff8f2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.trust-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.trust-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* =================== COMMON CARD SECTIONS =================== */
.offer-cards,
.service-cards,
.steps-grid,
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.card,
.step-card,
.pricing-card {
    padding: 1.5rem;
    text-align: center;
    flex: 1 1 250px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.offer-cards .card img {
    height: auto;
    object-fit: unset;
}

.service-cards .card img {
    height: 220px;
    object-fit: cover;
}

/* =================== ABOUT SECTION =================== */
.about-us {
    background-color: #f9f9f9;
    padding: 55px 16px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 420px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-content {
    flex: 1 1 480px;
    text-align: left;
}

.about-content h2 {
    font-size: 2.3rem;
    color: #333;
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-content .highlight {
    color: var(--brand-orange);
    font-weight: bold;
}

.about-content .btn {
    margin-top: 6px;
}

/* =================== TABLET =================== */
@media (max-width: 992px) {
    .about-us {
        padding: 50px 18px;
    }

    .about-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .about-image {
        flex: unset;
        width: 100%;
    }

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

    .about-content {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 14px;
    }
}

/* =================== MOBILE =================== */
@media (max-width: 768px) {
    .about-us {
        padding: 42px 14px;
    }

    .about-container {
        gap: 18px;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        max-height: 210px;
        border-radius: 14px;
        object-fit: cover;
        object-position: center;
    }

    .about-content {
        width: 100%;
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 0.96rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .about-content .btn {
        width: 100%;
        min-height: 46px;
        justify-content: center;
    }
}

/* =================== SMALL MOBILE =================== */
@media (max-width: 480px) {
    .about-us {
        padding: 36px 12px;
    }

    .about-image img {
        max-height: 180px;
        border-radius: 12px;
    }

    .about-content h2 {
        font-size: 1.55rem;
    }

    .about-content p {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}

/* =================== FLEET =================== */
.fleet {
    background: #f9fbff;
    text-align: center;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.fleet-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.fleet-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.fleet-card p {
    margin: 6px 0;
    color: #444;
}

.fleet-card p strong {
    color: #000;
}

.fleet-card p:last-of-type {
    font-size: 16px;
    font-weight: 700;
    color: #ff6a00;
}

.fleet-card .btn {
    display: inline-block;
    margin-top: 14px;
}

/* =================== HOW IT WORKS =================== */
.how-it-works {
    background: #fff;
    text-align: center;
}

.step-card {
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

.how-it-works-cta {
    margin-top: 30px;
}

/* =================== PRICING =================== */
.pricing {
    background: linear-gradient(135deg, #fff7ef 0%, #fff1e3 100%);
    text-align: center;
}

.pricing-cards {
    gap: 24px;
}

.pricing-card {
    flex: 1 1 260px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 122, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(30, 144, 255, 0.10);
}

.pricing-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #ff7a00;
    margin-bottom: 5px;
}

.small {
    font-size: 14px;
    color: #6f7b8a;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin: 8px 0;
    color: #444;
}

.pricing-card .btn {
    width: 100%;
    background: linear-gradient(45deg, #ff7a00, #ff9a2f);
    border: none;
}

.pricing-card .btn:hover {
    background: linear-gradient(45deg, #e56700, #ff8a1c);
}

.pricing-card.highlight {
    border: 2px solid #ff7a00;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.12);
}

.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff2d2d, #ff5a36);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

.tag.popular {
    background: #ffd700;
    color: #000;
}

/* =================== WHY CHOOSE US =================== */
.why-choose-us {
    padding: 60px 20px;
    text-align: center;
    background: #f9fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.highlight {
    border: 2px solid #25D366;
}

/* =================== TESTIMONIALS =================== */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: #f9fafc;
}

.testimonial-slider {
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin: 15px 0;
    font-style: italic;
}

.testimonial-card span {
    font-weight: bold;
    color: #555;
}

.stars {
    color: gold;
    margin-bottom: 10px;
    font-size: 18px;
}

/* =================== POPULAR ROUTES =================== */
.popular-routes {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9fafc, #eef3ff);
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.route-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border-left: 4px solid #ff7a00;
    text-align: center;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.route-card h3 {
    margin-bottom: 10px;
}

.route-card p {
    color: #555;
    font-size: 14px;
}

/* =================== FAQ =================== */
.faq {
    padding: 60px 20px;
    background: #f9fafc;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s ease;
    text-align: left;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
}

.faq-item p {
    display: none;
    margin-top: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active p {
    display: block;
}

.arrow {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .arrow {
    transform: rotate(45deg);
}

/* =================== DESKTOP / TABLET RESPONSIVE =================== */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .booking-form-box h2 {
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .fleet-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* =================== MOBILE =================== */
@media (max-width: 768px) {
    section {
        padding: 55px 16px;
    }

    section h2,
    .fleet h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

    .banner {
        font-size: 0.9rem;
        padding: 0.55rem 0.8rem;
    }

    .hero {
        min-height: auto;
        padding: 18px 0 24px;
        align-items: flex-start;
    }

    .hero-overlay {
        width: calc(100% - 20px);
        margin: 10px;
        padding: 1rem;
        border-radius: 14px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.95rem;
        line-height: 1.28;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.96rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .booking-form-box {
        padding: 16px;
        border-radius: 14px;
        margin-top: 6px;
    }

    .booking-form-box h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .booking-form {
        gap: 10px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 0.95rem;
        min-height: 46px;
    }

    .offer-cards,
    .service-cards,
    .steps-grid,
    .pricing-cards {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid,
    .routes-grid,
    .fleet-cards,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card,
    .feature-card,
    .route-card,
    .step-card,
    .pricing-card,
    .fleet-card,
    .trust-card {
        padding: 20px 16px;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .service-cards .card img {
        height: 200px;
    }

    .testimonial-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.5;
    }

    .arrow {
        font-size: 20px;
    }
}

/* =================== SMALL MOBILE =================== */
@media (max-width: 480px) {
    .hero {
        padding: 12px 0 20px;
    }

    .hero-overlay {
        width: calc(100% - 16px);
        margin: 8px;
        padding: 0.9rem;
        border-radius: 12px;
    }

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

    .hero-content p {
        font-size: 0.92rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 12px 18px;
    }

    .booking-form-box {
        padding: 14px;
    }

    .booking-form-box h2 {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .route-card,
    .feature-card,
    .pricing-card,
    .fleet-card,
    .trust-card,
    .testimonial-card {
        border-radius: 12px;
    }
}

/* =================== FOOTER =================== */
.footer {
    background: linear-gradient(135deg, #0f0f11, #1a1a1d);
    color: #fff;
    padding: 50px 20px 18px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    gap: 35px;
    align-items: start;
}

.footer-about {
    text-align: left;
}

.footer-brand {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: #ff7a00;
    margin-bottom: 14px;
}

.footer-brand span {
    color: #1e90ff;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-size: 0.98rem;
    max-width: 360px;
}

.footer-links h4,
.footer-social-section h4 {
    color: #ff7a00;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease;
    font-size: 0.96rem;
}

.footer-links ul li a:hover {
    color: #ff7a00;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin: 0;
}

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    z-index: 999;
}

/* =================== TABLET =================== */
@media (max-width: 992px) {
    .footer {
        padding: 42px 18px 16px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-about p {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

/* =================== MOBILE =================== */
@media (max-width: 768px) {
    .footer {
        padding: 34px 14px 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-social-section {
        text-align: center;
    }

    .footer-brand {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .footer-about p {
        font-size: 0.92rem;
        line-height: 1.65;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-links h4,
    .footer-social-section h4 {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        font-size: 0.92rem;
    }

    .footer-social {
        justify-content: center;
        gap: 10px;
        margin-top: 4px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-social img {
        width: 17px;
        height: 17px;
    }

    .footer-bottom {
        margin-top: 16px;
        padding-top: 12px;
    }

    .footer-bottom p {
        font-size: 0.84rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 25px;
        right: 14px;
        bottom: 14px;
    }
}

/* =================== SMALL MOBILE =================== */
@media (max-width: 480px) {
    .footer {
        padding: 28px 12px 12px;
    }

    .footer-container {
        gap: 16px;
    }

    .footer-brand {
        font-size: 1.6rem;
    }

    .footer-about p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .footer-links h4,
    .footer-social-section h4 {
        font-size: 1rem;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}