
/* top section */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
}

:root {
    --brand-blue: #002b5c;
    --brand-red: #d41f2e;
    --brand-white: #ffffff;
    --brand-black: #050606;
    --surface: #08122a;
    --surface-soft: rgba(8, 18, 42, 0.92);
    --surface-strong: rgba(0, 0, 0, 0.8);
    --text-muted: #cbd6f1;
    --border-strong: rgba(212,31,46,0.16);
}

body {
    background: linear-gradient(180deg, var(--surface), #06080f);
}

.main {
    width: 100%;
    min-height: 130vh;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 50%), url("image/img (1).jpg");
    background-position: center;
    background-size: cover;
    padding-bottom: 200px;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative; /* keep navbar above hero carousel */
    z-index: 1000;
    background: rgba(243, 239, 242, 0.85);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Video carousel hero (site-wide) */
.video-hero {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0; /* sit behind the navbar and page content (navbar already z-index:1000) */
}

.video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-carousel video,
.video-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.video-carousel video.active,
.video-carousel img.active {
    opacity: 1;
}

/* Overlay to improve text contrast on top of video */
.video-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
    pointer-events: none;
}

/* Ensure site content and navbar are above the video */
.home-main,
.main,
.navbar,
.page-container,
.about-main {
    position: relative;
    z-index: 1000;
}

.navbar a {
    color: var(--white);
}

.navbar a:hover {
    color: var(--brand-red);
}

.logo .span,
.footer-logo .span {
    color: var(--brand-red);
}

.icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu {
    display: flex;
    justify-content: center;
    width: auto;
    flex: 1 1 360px;
    min-width: 220px;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
    transition: 0.4s ease-in-out;
    font-size: 16px;
}

ul li a:hover {
    color: var(--brand-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 0 1 auto;
    min-width: 220px;
}

.auth-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.search {           
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    background: transparent;
}

.srch {
    font-family: 'Times New Roman', Times, serif;
    min-width: 180px;
    width: 220px;
    max-width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #110f0f;
    font-size: 16px;
    padding: 0 12px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
}

.search .btn {
    min-width: 90px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-left: -1px;
}


.btn-primary-action {
    background-color: #ff9500;
    border-color: #ff9500;
}

.btn-logout {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.btn-primary-action:hover,
.btn-logout:hover {
    opacity: 0.92;
}

@media (max-width: 900px) {
    .navbar {
        justify-content: center;
    }
    .menu {
        width: 100%;
    }
    .nav-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
    }
    .menu ul {
        justify-content: center;
        gap: 12px;
    }
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .search,
    .auth-buttons {
        width: 100%;
        justify-content: stretch;
    }
    .search .btn,
    .btn-primary-action,
    .btn-logout {
        width: 100%;
    }
    .srch {
        width: 100%;
    }
}

.btn {
    min-width: 100px;
    height: 40px;
    background-color: var(--brand-red);
    border: 1px solid var(--brand-white);
    color: var(--brand-white);
    font-size: 15px;
    font-weight: 700;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--brand-blue);
    color: #fff;
}

/* Modal overlay for service request */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.modal-content {
    background: linear-gradient(180deg, #0a1b45 0%, #ffffff 100%);
    color: #111;
    width: 100%;
    max-width: 640px;
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    position: relative;
    border: 2px solid var(--brand-red);
}
.modal-close {
    position: absolute;
    right: 16px;
    top: 14px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.12);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: rgba(255,255,255,0.22);
}
.modal-content h3 {
    margin-top: 0;
    color: var(--brand-blue);
    font-size: 1.8rem;
    margin-bottom: 18px;
}
.modal-content .form-group {
    margin-bottom: 16px;
}
.modal-content .form-group label {
    display:block;
    margin-bottom:8px;
    color: var(--brand-blue);
    font-weight: 700;
}
.modal-content .form-group input,
.modal-content .form-group textarea {
    width:100%;
    padding:12px 14px;
    border:1px solid var(--brand-blue);
    border-radius:8px;
    background: #ffffff;
    color: #111111;
    caret-color: #111111;
    font-size: 0.95rem;
}
.modal-content .form-group input::placeholder,
.modal-content .form-group textarea::placeholder {
    color: #7c7c7c;
    opacity: 1;
}
.modal-content .form-group input:focus,
.modal-content .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(212,31,46,0.16);
}
.submit-btn {
    width: 100%;
    background-color: var(--brand-blue);
    color: var(--brand-white);
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.submit-btn:hover {
    background-color: var(--brand-red);
    transform: translateY(-1px);
}
.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,31,46,0.2);
}

.btn:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 8, 8, 0.25);
}
.srch {
    font-family: 'Times New Roman', Times, serif;
    min-width: 180px;
    width: 220px;
    max-width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid #ffffff;
    color: #000000;
    font-size: 16px;
    padding: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
}

..btn:focus {
    outline: none;
}
.srch:focus {
    outline: none;
}

.page-hero {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.page-hero .carousel-item {
    min-height: 500px;
    position: relative;
}

.page-hero .carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.8);
}

.page-hero .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    pointer-events: none;
}

.page-hero .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 760px;
    padding: 0 1rem;
    text-align: center;
}

.page-hero .carousel-caption h1,
.page-hero .carousel-caption p {
    color: #f5f5f5;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.page-hero .carousel-caption h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: 0.75rem;
    letter-spacing: 0.8px;
}

.page-hero .carousel-caption p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.page-hero .carousel-control-prev,
.page-hero .carousel-control-next {
    width: 6%;
}

.page-hero .carousel-control-prev-icon,
.page-hero .carousel-control-next-icon {
    filter: invert(1) drop-shadow(0 0 2px rgba(0,0,0,0.6));
}

.page-section {
    padding: 40px 20px 60px;
}

.page-section h1,
.page-section h2,
.page-section h3 {
    color: #ffffff;
}

.page-section p {
    color: #dcdcdc;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 360px);
    gap: 36px;
    align-items: start;
}

.content > h1,
.content > p,
.content > .cn {
    grid-column: 1 / 2;
}

.form {
    grid-column: 2 / 3;
    grid-row: 1 / span 4;
    margin-top: 0;
    align-self: start;
}

.content h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-top: 40px;
    max-width: 760px;
}

.content p {
    margin-top: 24px;
    max-width: 760px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.content .cn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--brand-blue);
    border: none;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.content .cn a {
    text-decoration: none;
    color: var(--brand-white);
}

.cn:hover {
    background-color: var(--brand-red);
}


.content .span {
    color: var(--brand-blue);
}

.form {
    position: static;
    width: 100%;
    max-width: 360px;
    background: rgba(4, 12, 28, 0.95);
    border: 1px solid rgba(0, 43, 92, 0.4);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
    margin-top: 20px;
}

.form h2 {
    width: 100%;
    text-align: center;
    color: var(--brand-white);
    font-size: 24px;
    margin: 0 0 10px;
}

.form .login-intro {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 22px;
    text-align: center;
}

.form label {
    display: block;
    font-size: 14px;
    margin-top: 16px;
    color: var(--text-muted);
}

.form input,
.form textarea {
    width: 100%;
    height: 42px;
    background: #ffffff;
    border: 1px solid rgba(0, 43, 92, 0.8);
    border-radius: 10px;
    color: #111111;
    caret-color: #111111;
    font-size: 15px;
    letter-spacing: 0.2px;
    margin-top: 8px;
    padding: 0 12px;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: #ffffff;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #7c7c7c;
    opacity: 1;
}

::placeholder {
    color: #ccc;
}

.btnn {
    width: 100%;
    height: 45px;
    background: var(--brand-blue);
    border: none;
    margin-top: 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--brand-white);
    transition: 0.4s ease;
}

.btnn:hover {
    background: var(--brand-red);
    color: var(--brand-white);
}

.btnn a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.form .link {
    font-size: 16px;
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

.form .link a {
    text-decoration: none;
    color: #da0f20;
}

.liw {
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
    color: #fff;
}

.service-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 20px;
    color: #fff;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 28px 20px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.content-wrapper h1,
.content-wrapper .service-intro {
    color: #fdfdfd;
}

.service-section h1 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.service-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.9;
    color: #f2f2f2;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(4, 10, 28, 0.96);
    border: 1px solid rgba(0, 43, 92, 0.8);
    border-radius: 18px;
    padding: 28px 22px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    border-color: var(--brand-red);
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card-link:hover .service-card {
    transform: translateY(-6px);
}

.service-card {
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card-icon {
    font-size: 32px;
    color: #f0f0f0;
}

.service-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.45rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.service-card p {
    margin: 0;
    line-height: 1.95;
    color: var(--text-muted);
}

.card-image {
    overflow: hidden;
    border-radius: 16px;
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .service-section {
        margin-top: 40px;
    }
}


.iconn {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.iconn a {
    color: #fff;
    font-size: 26px;
    transition: 0.4s ease;
}

.iconn a:hover {
    color: var(--brand-red);
}

/* hero page sections */
.home-main,
.about-main,
.service-main,
.contact-main {
    width: 100%;
    background-image: linear-gradient(to top, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 50%), url("image/img (1).jpg");
    background-position: center;
    background-size: cover;
    height: 150px;
}

.about-section {
    float: none;
    padding-left: 0;
}

/* Responsive breakpoints */
@media (max-width: 960px) {
    .navbar {
        padding: 16px;
    }

    .search {
        width: 100%;
        justify-content: flex-end;
    }

    .srch {
        width: 180px;
        flex: 1 1 180px;
    }

    .content {
        padding: 20px;
    }

    .form {
        margin-top: 32px;
    }
}

/* When screen is narrow, stack the form below content */
@media (max-width: 860px) {
    .form {
        position: static;
        max-height: none;
        width: 100%;
        margin-top: 22px;
        padding: 18px;
    }
}

@media (max-width: 720px) {
    .navbar {
        justify-content: center;
        gap: 12px;
    }

    .menu {
        width: 100%;
    }

    ul {
        gap: 16px;
        justify-content: center;
    }

    .search {
        width: 100%;
        justify-content: center;
    }

    .srch,
    .btn {
        width: 100%;
        max-width: 360px;
    }

    .content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-top: 60px;
    }

    .content p {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
    }

    .icon {
        justify-content: center;
    }

    .menu {
        order: 3;
    }

    ul {
        flex-direction: column;
        gap: 12px;
    }

    .search {
        justify-content: center;
    }

    .content {
        padding: 16px;
    }

    .form {
        padding: 20px;
    }

    .form h2 {
        font-size: 20px;
    }
}


/* this is the home section */
.page-container {
    position: relative;
    min-height: 1000px;
}

.about-img{
    position: absolute;
    top: 100px;
    right: 500px;
    border-radius: 30px;
    padding: 24;    

}
.about-img-h2{
    position: absolute;
    top: 350px;
    right: 600px;
    padding: 24;
    font-size: 30px;
}
.about-us{
    width: 800px;
    position: absolute;
    padding: 35px;
    font-size: 20px;
    top: 400px;
    left: 300px;
    color: var(--brand-black);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    line-height: 1.75;
}

.about-content {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px 50px;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.about-content.signup-page {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) minmax(320px, 420px);
    gap: 40px;
    align-items: start;
}

.about-content.signup-page .section-top {
    margin-bottom: 0;
    text-align: left;
}

.about-content.signup-page .section-top h1 {
    margin-bottom: 22px;
}

.about-content.signup-page .login-form {
    margin: 0;
}

@media (max-width: 860px) {
    .about-content.signup-page {
        grid-template-columns: 1fr;
    }

    .about-content.signup-page .section-top {
        text-align: center;
    }

    .about-content.signup-page .login-form {
        margin-top: 24px;
    }
}

.about-content .section-top {
    margin-bottom: 40px;
    text-align: center;
}

.about-content .section-top h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 16px;
    color: #fff;
}

.about-content .section-top p {
    color: #dcdcdc;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto;
}

.partners-carousel-wrapper,
.destinations-section {
    margin-top: 40px;
}

.partners-carousel .carousel-inner {
    border-radius: 24px;
    overflow: hidden;
}

.partners-carousel .carousel-item img {
    height: 420px;
    object-fit: cover;
}

.partners-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    padding: 18px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
}

.partners-carousel .carousel-caption h3,
.partners-carousel .carousel-caption p {
    color: #fff;
}

.destinations-section .section-header {
    text-align: center;
    margin-bottom: 28px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.destination-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.destination-card div {
    padding: 24px;
}

.destination-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.2rem;
}

.destination-card p {
    margin: 0;
    color: #dcdcdc;
    line-height: 1.7;
}

.testimonials-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 40px 20px 60px;
    color: #fff;
    background: rgba(5, 10, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.testimonials-section .section-header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.testimonials-section .section-header p {
    color: #dcdcdc;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
}

.testimonial-card p {
    margin: 0;
    color: #f4f4f4;
    line-height: 1.9;
}

.testimonial-card h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.testimonial-card span {
    color: #c8c8c8;
    font-size: 0.95rem;
}

/* this is the service section */

.service-main{    width: 100%;
    background-image: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%), url(image/img\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    height: 150px;}
    /* this is the contact */

    .contact-main{    width: 100%;
    background-image: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%), url(image/img\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    height: 150px;}

    /*  this is the Footer styles */
    .site-footer {
        background: linear-gradient(180deg, rgba(0,43,92,0.95), rgba(4, 10, 28, 0.95));
        color: var(--white);
        padding: 40px 0 18px;
        position: relative;
        z-index: 1;
        margin-top: 120px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
        padding: 0 20px;
    }

    .footer-col h4 {
        color: var(--brand-red);
        margin-bottom: 12px;
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: var(--text-muted);
    }

    .footer-col ul li a:hover {
        color: var(--brand-red);
    }

    .footer-logo {
        color: var(--white);
        font-size: 22px;
    }

    .footer-col .social-icons a {
        display: inline-block;
        margin-right: 12px;
        color: var(--brand-red);
        font-size: 20px;
        transition: color 0.2s ease, transform 0.15s ease;
    }

    .footer-col .social-icons a:hover {
        color: var(--brand-white);
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.12);
        color: var(--text-muted);
        font-size: 13px;
    }

    @media (max-width: 560px) {
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-col .social-icons a { margin-right: 8px; }
    }

    /* Signup page form (prevents overlap with footer) */
    .login-form {
        max-width: 520px;
        margin: 28px auto 80px;
        padding: 22px;
        background: rgba(0,0,0,0.55);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.06);
        color: #fff;
        position: relative;
        z-index: 0;
        display: block;
    }

    .login-form input {
        width: 100%;
        height: 44px;
        margin: 10px 0;
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.03);
        color: #461111;
    }


/* Media gallery styling */
.media-gallery {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    margin: 40px auto !important;
}

.media-gallery img {
    display: block;
    background: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-gallery img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.media-gallery .section-header h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.media-gallery .section-header p {
    color: #dcdcdc;
}