:root {
    --primary: #0664cf;
    --success: #28a745;
    --secondary: #d4af37;
    --accent: #88d498;
    --light: #f8f9fa;
    --dark: #0f3b8d;
    --text: #333333;
    --text-muted: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 10px;
    flex-shrink: 0;
}

.logo img {
    max-width: 50px;
    align-items: center;
}

.logo h1 {
    font-size: 1em;
    font-weight: 700;
    color: var(--primary);
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.6vw, 26px);
    margin-left: auto;
}

.nav-menu li {
    margin-left: 0;
    flex-shrink: 0;
}

.nav-menu a {
    display: block;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: clamp(0.88rem, 0.9vw, 1rem);
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-overflow {
    position: relative;
}

.nav-overflow-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    font-family: inherit;
    color: var(--text);
    font-weight: 500;
    font-size: clamp(0.88rem, 0.9vw, 1rem);
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    padding: 0;
}

.nav-overflow-toggle:hover {
    color: var(--primary);
}

.nav-overflow-toggle i {
    font-size: 11px;
}

.nav-overflow-list {
    list-style: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 210px;
    background: #fff;
    border: 1px solid #d6e4fb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8, 35, 74, 0.14);
    padding: 8px 0;
    display: none;
    z-index: 1010;
}

.nav-overflow-list li {
    margin: 0;
}

.nav-overflow-list a {
    display: block;
    padding: 10px 14px;
    font-size: 0.92rem;
    line-height: 1.25;
    white-space: nowrap;
}

.nav-overflow-list a:hover {
    background: #f2f7ff;
}

.nav-overflow:hover .nav-overflow-list,
.nav-overflow:focus-within .nav-overflow-list,
.nav-overflow.open .nav-overflow-list {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Header Slider - MODIFIED */
.header-slider {
    margin-top: 70px;
    position: relative;
    height: 80vh;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.781), rgba(0, 0, 0, 0.753)),
        url("https://images.unsplash.com/photo-1588875988832-66fb9b12c20b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
            no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.slide-content {
    max-width: 800px;
    padding: 0 50px;
    text-align: center;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: block;
    justify-content: center;
    gap: 15px;
}

.hero-social {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-social a {
    padding: 2em;
    border: rgba(255, 255, 255, 0.089) 1px solid;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-success {
    background-color: var(--success);
    color: #fff;
    border: 2px solid var(--success);
}

.btn-success:hover {
    background-color: transparent;
    color: var(--success);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 20px;
    padding: 10px 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    margin-right: 20px;
    scroll-snap-align: start;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel-arrow {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-arrow:focus-visible {
    outline: 2px solid rgba(6, 100, 207, 0.35);
    outline-offset: 2px;
}

.carousel-arrow:hover {
    background-color: var(--dark);
}

/* Packages Section - MODIFIED: Changed to grid layout */
.packages {
    padding: 80px 0;
}

.packages-carousel-container {
    padding: 6px 0 2px;
}

.packages-carousel {
    margin-bottom: 8px;
}

.packages-carousel .carousel-item {
    width: calc(25% - 18px);
    margin-right: 24px;
}

.package-slide {
    height: auto;
}

.package-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.package-img {
    height: 200px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.package-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.package-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.package-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.package-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-features {
    margin-bottom: 20px;
    flex: 1;
}

.package-features li {
    margin-bottom: 8px;
    color: var(--text-muted);
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.package-content .btn {
    margin-top: auto;
}

/* Airlines Section */
.airlines {
    padding: 80px 0;
    background-color: var(--light);
}

.airline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.airline-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.airline-item:hover {
    transform: translateY(-5px);
}

.airline-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.airline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.airline-name {
    font-weight: 600;
    color: var(--dark);
}

/* Hotels Section - MODIFIED: Changed to grid layout and smaller size */
.hotels {
    padding: 80px 0;
    background-color: var(--light);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hotel-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-img {
    height: 160px;
    overflow: hidden;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-card:hover .hotel-img img {
    transform: scale(1.1);
}

.hotel-content {
    padding: 15px;
}

.hotel-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.hotel-location {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
    display: block;
}

/* Guides Section */
.guides {
    padding: 80px 0;
    background-color: var(--light);
}

.guide-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-10px);
}

.guide-img {
    height: 250px;
    overflow: hidden;
}

.guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.guide-card:hover .guide-img img {
    transform: scale(1.1);
}

.guide-content {
    padding: 20px;
    text-align: center;
}

.guide-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark);
}

.guide-content .title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.guide-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.guide-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.guide-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light);
    border-radius: 50%;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.guide-social a:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.fa-star {
    color: #ffd700; /* Gold color for stars */
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light);
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    color: var(--text-muted);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/48416cfb-5123-45d5-b4c7-67db53ea79dc.png")
            no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #fff;
    padding: 60px 0 30px;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-grid .contact {
    grid-column: 70%;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    margin-bottom: 20px;
    color: #b3b3b3;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3b3b3;
}

.btn-package {
    padding-inline: 3.5em;
}

a .address {
    color: var(--light);
}

.license {
    justify-content: center;
    text-align: center;
}

.license img {
    max-width: 45%;
}

.carousel-item video {
    width: 200px;
    border-radius: 10px;
}

/* Untuk memastikan konsistensi dengan gallery items */
.gallery-item,
.carousel-item video {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.164);
    border-radius: 30px;
    padding: 10px;
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 50%;
}

.social-btn i {
    font-size: 15px;
}

.social-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-btn:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
}

.social-btn:hover {
    transform: scale(1.1);
}

/* Social Media Colors */
.facebook {
    background: #3b5998;
}

.instagram {
    background: #e1306c;
}

.tiktok {
    background: #000000;
}

.whatsapp {
    background: #25d366;
}

@media (max-width: 1366px) {
    .hero-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    .slide-content h2 {
        font-size: 36px;
    }

    .carousel-item {
        width: calc(50% - 15px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .packages-carousel .carousel-item {
        width: calc(33.333% - 16px);
        margin-right: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    .slide-content h2 {
        font-size: 36px;
    }

    .carousel-item {
        width: calc(50% - 15px);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 0;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-overflow {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        margin-right: 1em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .packages-carousel .carousel-item {
        width: calc(50% - 12px);
        margin-right: 16px;
    }
}

@media (max-width: 768px) {
    .hero-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .slide-content h2 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .carousel-item {
        width: 100%;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .packages-carousel .carousel-item {
        width: calc(80% - 8px);
        margin-right: 12px;
    }

    .floating-social {
        right: 10px;
    }

    .social-btn {
        width: 30px;
        height: 30px;
    }

    .social-btn i {
        font-size: 18px;
    }

    .social-tooltip {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 576px) {
    .hero-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .header-slider {
        height: 70vh;
    }

    .logo h1 {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
        margin-left: 10px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .packages-carousel .carousel-item {
        width: calc(100% - 6px);
        margin-right: 10px;
    }
}

/* LAVAREL AUTH UI MINI BOOTSTRAP RESETS FOR KHAIRO CSS */
main {
    padding: 120px 0;
    background: #f8f9fa;
    min-height: 70vh;
}
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 2rem;
}
.card-header {
    background: var(--primary, #0f395b);
    color: #fff;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid var(--secondary, #d4a373);
}
.card-body {
    padding: 2rem;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
}
.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin: 0 auto;
}
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    text-align: right;
    padding-right: 15px;
    align-self: center;
}
.col-md-8 > .card .row {
    justify-content: center;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out;
}
.form-control:focus {
    border-color: var(--secondary, #d4a373);
    outline: 0;
}
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
.form-check {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}
.form-check-input {
    margin-right: 8px;
    width: 1.2rem;
    height: 1.2rem;
}
.form-check-label {
    margin-bottom: 0;
    font-weight: 400;
}
button.btn-primary {
    background-color: var(--secondary, #d4a373);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
button.btn-primary:hover {
    opacity: 0.9;
}
.btn-link {
    font-weight: 400;
    color: var(--primary, #0f395b);
    text-decoration: none;
    margin-left: 15px;
}
.btn-link:hover {
    text-decoration: underline;
}
.text-md-end {
    text-align: right;
    font-weight: 500;
    color: var(--dark, #333);
}
@media (max-width: 768px) {
    .col-md-8,
    .col-md-6,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }
    .col-md-4,
    .text-md-end {
        text-align: left;
        padding-bottom: 8px;
    }
}
/* END AUTH CSS */

.offset-md-4 {
    margin-left: 33.333333%;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.justify-content-center {
    justify-content: center !important;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
    width: auto; /* Fix overflow wrap */
}

@media (max-width: 768px) {
    .offset-md-4 {
        margin-left: 0 !important;
    }
}
