@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap"); /* Added for handwritten font */

:root {
    --routas-dark-bg: #090321;
    --routas-card-dark: #090321;
    --routas-nav-bg: #090321;
    /* --routas-neon: #D4FF00; The yellow/green from the screenshot */
    --routas-neon: #c0fe00; /* The yellow/green from the screenshot */
    --routas-purple: #5a5dfc;
    --section-bg: #ffffff;
    --text-color: #090321;
}

body {
    font-family: "Outfit", sans-serif;
    transition: background-color 0.3s, color 0.3s;
    background-color: #f4f3fb;
    overflow-x: hidden;
}

.text-color {
    color: var(--text-color);
}

.bg-color {
    background-color: var(--text-color);
}
/* =========================================
   DARK MODE OVERRIDES
   ========================================= */
[data-bs-theme="dark"] body {
    background-color: var(--routas-dark-bg) !important;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .bg-white,
[data-bs-theme="dark"] .bg-light {
    background-color: var(--routas-dark-bg) !important;
    color: #fff;
}

[data-bs-theme="dark"] .text-muted,
[data-bs-theme="dark"] .text-secondary {
    color: #a0a0a0 !important;
}

/* Headings in Dark Mode */
[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] .fw-bold {
    color: #ffffff !important;
}

/* Components in Dark Mode */
[data-bs-theme="dark"] .service-row-card,
[data-bs-theme="dark"] .stat-box,
[data-bs-theme="dark"] .blog-card,
[data-bs-theme="dark"] .footer-box {
    background-color: var(--routas-card-dark) !important;
    border-color: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
}

[data-bs-theme="dark"] .service-row-card:hover {
    background-color: #1a1e38 !important;
}

[data-bs-theme="dark"] .mad-input {
    color: #888afc;
    border-bottom-color: #555;
}

[data-bs-theme="dark"] .mad-select {
    color: #888afc;
    background-color: var(--routas-dark-bg);
}

/* =========================================
   TOP BAR (Yellow Strip)
   ========================================= */
.top-bar {
    background-color: var(--routas-neon);
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 0;
}

/* =========================================
   FLOATING NAVBAR
   ========================================= */
.navbar-container-wrapper {
    /* We want this to overlap slightly or sit nicely below the topbar */
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.floating-navbar {
    background-color: #090321; /* Very Dark Navy */
    border-radius: 12px; /* Rounded corners as per image */
    padding: 0.8rem 2rem;
    width: fit-content; /* Shrink to content */
    margin: 0 auto; /* Center horizontally */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 3rem;
}

.brand-line {
    border-left: 2px solid #fff;
    border-right: 2px solid var(--routas-neon);
    height: 20px;
    width: 6px;
    display: inline-block;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
    padding: 0 !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.btn-lang {
    background: rgba(255, 255, 255, 0.1);
    color: var(--routas-neon);
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 2rem;
    margin-right: 0.5rem;
}

.btn-nav-contact {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-nav-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Mobile Toggler override for dark bg */
.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   HERO & GENERAL SECTIONS
   ========================================= */
.hero-title {
    color: #0b0e23;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: title;
    margin-top: 1rem;
}
.hero-subtitle {
    margin-bottom: 2rem;
}

.seamless-route {
    font-weight: 500;
    font-style: medium;
}

.end-to-end {
    font-size: 70px;
}

.btn-plan {
    background-color: var(--text-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
}

.btn:hover {
    background-color: var(--routas-neon);
    color: #090321;
}

/* Stat Box */
.stat-box {
    background-color: #f0f2f5;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
}

/* Images */
.img-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about {
    color: white;
}

/* Services */
.services-header h2 {
    font-weight: 800;
    font-size: 2.5rem;
}
.service-row-card {
    background-color: #e5e9f3;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s;
}
.service-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 2px;
}
.service-category {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

/* Form */
.mad-input {
    border: none;
    border-bottom: 1px solid #ccc;
    color: var(--routas-purple);
    font-weight: 700;
    text-align: center;
    background: transparent;
    width: auto;
}
.mad-input:focus {
    outline: none;
    border-bottom: 2px solid var(--routas-purple);
}
.mad-select {
    border: none;
    color: var(--routas-purple);
    font-weight: 700;
    background: transparent;
}
.form-sentence {
    font-size: 1.25rem;
    line-height: 2.2;
    font-weight: 500;
}

/* Footer */
.footer-section {
    padding-bottom: 2rem;
}
.footer-box {
    color: #000000;
    border: 1px solid #000;
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
}

/* =========================================
   NEW COLLAGE GRID STYLES
   ========================================= */
.collage-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 200px; /* Ensure boxes have height on mobile */
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.collage-box:hover .collage-img {
    transform: scale(1.05); /* Zoom effect hover */
}

.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    /* background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); */
    color: white;
    text-align: left;
}

.md-24 {
    font-size: 24px;
}

.md-letter-2 {
    letter-spacing: 2px;
}

.md-gap-4rem {
    gap: 4rem;
}

.md-f-size-35 {
    font-size: 35px;
}

.handwritten-highlight {
    font-family: "Caveat", cursive;
    color: var(--routas-neon);
    font-size: 2rem;
    line-height: 1;
    display: block;
    margin-top: 5px;
}

.stat-card-custom {
    background-color: #e9ebf0;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    height: 100%;
    border-radius: 12px;
}

[data-bs-theme="dark"] .stat-card-custom {
    background-color: var(--routas-card-dark);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Certifications Slider */
.cert-section-wrapper {
    overflow: hidden;
}

.cert-slider {
    width: 100%;
    max-width: 600px; /* Increased max-width for better spacing of 3 items */
    padding: 20px 0;
    /* margin: 0 auto; */
}

.cert-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-slider .swiper-slide img {
    /* height: 35px; */
    width: auto;
    object-fit: contain;
    transition: filter 0.3s;
}

[data-bs-theme="dark"] .cert-slider .swiper-slide img {
    filter: invert(1) brightness(100);
}
.doc-type-box {
    border: 1px solid #000;
    padding: 5px 12px;
    text-align: center;
    display: inline-block;
}
[data-bs-theme="dark"] .doc-type-box {
    border-color: #fff;
    color: #fff;
}

/* Custom Line Divider - Fading Out at Ends */
.line {
    width: 60%;
    height: 1px;
    margin: auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.line-2 {
    width: 70%;
    height: 1px;
    margin: auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
}

[data-bs-theme="dark"] .line {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
}

/* SERVICE ROW CARD STYLING */
.service-row-card {
    background-color: #e5e9f3; /* Light grayish blue match */
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.2s;
    border: none;
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Vertical center */
    text-decoration: none;
}

/* Define columns within the card */
.service-icon-col {
    flex: 0 0 15%; /* Width for icon */
    max-width: 15%;
    display: flex;
    justify-content: center;
}

.service-title-col {
    flex: 0 0 35%; /* Width for title */
    max-width: 35%;
    padding-left: 2rem;
}

.service-desc-col {
    flex: 0 0 50%; /* Width for description */
    max-width: 50%;
    padding-left: 2rem;
    border-left: 1px solid rgba(0, 0, 0, 0.05); /* Subtle divider if needed, purely optional */
}

/* Icon Styling */
.service-icon-img {
    width: 100%;
    max-height: 138px;
    height: auto;
    opacity: 0.8;
}

/* Typography */
.service-title {
    font-weight: 900;
    margin-bottom: 0px;
    color: #04010d;
    line-height: 1.2;
}

.md-44 {
    font-size: 44px !important;
}

.md-30 {
    font-size: 30px !important;
}

.service-category {
    font-weight: 300;
    color: #090321;
    margin-top: 0;
    line-height: 1.2;
}

.service-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .service-row-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .service-icon-col,
    .service-title-col,
    .service-desc-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        margin-bottom: 1rem;
    }
    .service-desc-col {
        border-left: none;
    }
}

.blog-image > img {
    max-height: 150px;
}

@media (min-width: 992px) {
    .blog-image {
        width: 20%;
    }

    .blog-text {
        width: 75%;
    }
}

/* Dark Mode */
[data-bs-theme="dark"] .service-row-card {
    background-color: var(--routas-card-dark);
}
[data-bs-theme="dark"] .service-title,
[data-bs-theme="dark"] .service-category {
    color: #fff;
}
[data-bs-theme="dark"] .service-desc {
    color: #aaa;
}
[data-bs-theme="dark"] .service-icon-img {
    filter: invert(1);
}

/* MAD LIBS FORM REFACTOR */

.mad-libs-title {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #090321;
}

.mad-libs-line {
    font-size: 1.25rem;
    line-height: 2.5;
    color: #090321;
    font-weight: 700;
    margin: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

[data-bs-theme="dark"] .mad-libs-line {
    color: #fff;
}

.mad-libs-input {
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    width: auto;
    /* min-width: 150px; */
    /* padding: 0 5px; */
    /* text-align: center; */
    display: inline-block;
}

.mad-libs-input::placeholder {
    color: #9aa0a6;
}

.mad-libs-input:focus {
    outline: none;
    color: #4b4efc;
}

.btn-submit-form {
    background-color: #090321;
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

[data-bs-theme="dark"] .btn-submit-form {
    background-color: #fff;
    color: #090321;
}

.privacy-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

.text-BLOG {
    color: #07021a;
    font-size: 24px;
}

/* =========================================
   BLOG PAGE STYLES - REFACTORED
   ========================================= */

/* =========================================
   BLOG PAGE STYLES - REFACTORED
   ========================================= */

.blog-row-card {
    background-color: #e5e9f3; /* Light Grayish Blue */
    border-radius: 20px;
    overflow: hidden;
    /* min-height removed to let content dictate height, but strictly equal columns */
    transition: transform 0.3s ease;
}

[data-bs-theme="dark"] .blog-row-card {
    background-color: var(--routas-card-dark);
}

.blog-content-inner {
    padding: 40px; /* Matches image wrapper padding for alignment */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.2;
    color: #090321;
    margin-top: 0; /* Align with top of image */
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .blog-title {
    color: #fff;
}

.blog-text {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

[data-bs-theme="dark"] .blog-text {
    color: #ccc;
}

.btn-read-all {
    background-color: #090321;
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    width: fit-content;
}

.btn-read-all:hover {
    transform: translateY(-2px);
}

[data-bs-theme="dark"] .btn-read-all {
    background-color: #fff;
    color: #090321;
}

.blog-img-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 40px; /* MATCHES CONTENT PADDING */
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.btn-see-more {
    background-color: #090321;
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-see-more:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

[data-bs-theme="dark"] .btn-see-more {
    background-color: #fff;
    color: #090321;
}

/* Responsive adjustments for Blog Page */
@media (max-width: 992px) {
    .blog-row-card {
        text-align: left;
        min-height: auto;
    }
    .blog-content-col {
        order: 2; /* Text below image on mobile usually, or keep 1 if preferred */
    }
    .blog-img-wrapper {
        padding: 0;
        height: 250px;
    }
    .blog-img {
        border-radius: 0;
    }
}

.blog-text > h5 {
    color: var(--text-color);
    font-weight: bold;
}

.blog-text > p {
    color: var(--text-color);
}

.blog_view_all {
    color: #929292;
    font-size: 20px;
}
/* =========================================
   ABOUT PAGE STYLES
   ========================================= */
.about-sketch-icon {
    width: 180px;
    height: auto;
    opacity: 0.8;
    margin: 0 auto 2rem;
    display: block;
}

.about-headline {
    font-weight: 800;
    font-size: 1.5rem;
    color: #090321;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-text p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
    white-space: pre-line;
}

.about-content h2,
.about-content h3,
.about-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-content ul,
.about-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.about-content a {
    color: var(--routas-purple);
    text-decoration: underline;
}

.about-content blockquote {
    border-left: 4px solid var(--routas-neon);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.image-composition-wrapper {
    position: relative;
    padding: 2rem;
    min-height: 600px; /* Ensure space for overlapping images */
}

.fw-900 {
    font-weight: 900;
}

.reach_all_routas {
    font-size: 44px;
}

/* Dark Background Shapes */
.bg-shape-large {
    position: absolute;
    top: 50px;
    right: 170px;
    width: 250px;
    height: 480px;
    background-color: #020412; /* Dark Navy/Black */
    border-radius: 8px;
    z-index: 1;
}

.bg-shape-small {
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 320px;
    height: 200px;
    background-color: #020412;
    border-radius: 8px;
    z-index: 2;
}

/* Images */
.img-large {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 520px;
    object-fit: cover;
    z-index: 2;
    border-radius: 4px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
}

.img-small {
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 330px;
    height: 190px;
    object-fit: cover;
    z-index: 3;
    border-radius: 4px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .image-composition-wrapper {
        min-height: 350px;
        max-width: 500px;
        margin: 0 auto 3rem;
        padding: 0;
    }
    .bg-shape-large,
    .bg-shape-small {
        display: block; /* Preserve some desktop-like depth on mobile */
        opacity: 0.1;
    }
    .bg-shape-large {
        width: 150px;
        height: 300px;
        right: 10px;
        top: 20px;
    }
    .img-large {
        position: relative;
        width: 85%;
        height: 250px;
        right: 0;
        top: 0;
        z-index: 5;
    }
    .img-small {
        position: absolute;
        width: 60%;
        height: 140px;
        left: 0;
        bottom: 0;
        margin-top: 0;
        margin-left: 0;
        z-index: 6;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    /* Centering titles on mobile */
    .about-headline {
        text-align: center;
        font-size: 1.3rem;
    }
    .about-text p {
        text-align: justify;
    }
    .about-text .btn {
        display: block;
        width: fit-content;
        margin: 2rem auto 0;
    }
}

/* Dark Mode Overrides for About */
[data-bs-theme="dark"] .about-headline {
    color: #fff;
}
[data-bs-theme="dark"] .about-text p {
    color: #bbb;
}

[data-bs-theme="dark"] .about-content {
    color: #bbb;
}

[data-bs-theme="dark"] .about-content h2,
[data-bs-theme="dark"] .about-content h3,
[data-bs-theme="dark"] .about-content h4 {
    color: #fff;
}

[data-bs-theme="dark"] .about-content a {
    color: var(--routas-neon);
}
[data-bs-theme="dark"] .about-sketch-icon {
    filter: invert(1);
}

.rounded-10 {
    border-radius: 10px;
}

@media (min-width: 992px) {
    .blog img {
        height: 484px;
    }

    .blog-left {
        height: 484px;
    }

    .double-footer {
        padding: 5rem 0rem;
        margin: 2rem 0rem;
    }
}

/* =========================================
   BLOG DETAIL PAGE STYLES
   ========================================= */

.btn-share-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e0e2e7; /* Light gray circle */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090321;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.btn-share-icon:hover {
    background-color: #d0d2d7;
    transform: scale(1.05);
}

[data-bs-theme="dark"] .btn-share-icon {
    background-color: #333;
    color: #fff;
}

.blog-detail-content {
    background-color: #e5e9f3;
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-detail-content h2 {
    margin-top: 2rem;
    font-size: 1.75rem;
    color: #090321;
}

[data-bs-theme="dark"] .blog-detail-content h2 {
    color: #fff;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-left: 1rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.f-33 {
    font-size: 33px;
}

/* =========================================
   ADDITIONAL RESPONSIVE FIXES
   ========================================= */

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* Container padding on mobile */
@media (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Navbar improvements */
.floating-navbar {
    max-width: 100%;
}

/* Ensure collage images display properly */
.collage-img {
    display: block;
}

/* =========================================
   RESPONSIVE UTILITY CLASSES
   ========================================= */

/* Text alignment utilities */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: inherit;
    }
}

/* Spacing utilities for mobile */
.mb-mobile-3 {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .mb-mobile-3 {
        margin-bottom: 0;
    }
}

/* Full width on mobile */
.w-mobile-100 {
    width: 100%;
}

@media (min-width: 768px) {
    .w-mobile-100 {
        width: auto;
    }
}

/* Hide on mobile */
.d-mobile-none {
    display: none;
}

@media (min-width: 768px) {
    .d-mobile-none {
        display: block;
    }
}

/* Show only on mobile */
.d-mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .d-mobile-only {
        display: none;
    }
}

/* =========================================
   HELLO ROUTAS FORM - BASE STYLES
   ========================================= */

/* .hello-routas-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row-wrapper {
    margin-bottom: 0.5rem;
}

.mad-libs-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mad-libs-line-split {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.input-group-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label-inline {
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.mad-libs-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888AFC' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 32px;
}

.mad-libs-select option {
    background: #fff;
    color: #333;
    padding: 8px;
}

[data-bs-theme="dark"] .mad-libs-select option {
    background: #1a1a1a;
    color: #fff;
}

.mad-libs-textarea {
    font-family: "Outfit", sans-serif;
    resize: vertical;
    min-height: 60px;
    line-height: 1.5;
} */

/* Desktop styles (992px+) remain unchanged */
/* @media (min-width: 992px) {
    .mad-libs-input {
        border: none;
        border-bottom: 1px solid #ccc;
        color: var(--routas-purple);
        font-weight: 700;
        text-align: center;
        background: transparent;
        width: auto;
    }

    .mad-libs-input:focus {
        outline: none;
        border-bottom: 2px solid var(--routas-purple);
    }

    .mad-libs-select {
        border: none;
        color: var(--routas-purple);
        font-weight: 700;
        background: transparent;
    }

    .mad-libs-textarea {
        border: none;
        border-bottom: 1px solid #ccc;
        color: var(--routas-purple);
        font-weight: 700;
        text-align: center;
        background: transparent;
    }

    .mad-libs-textarea:focus {
        outline: none;
        border-bottom: 2px solid var(--routas-purple);
    }
} */

.swiper {
    margin: 0px !important;
}
