html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 0px;
    padding-top: 100px;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.home-BG {
    background: url('/img/BG.jpg') center center/cover no-repeat;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    filter: brightness(75%);
}

.text-custom {
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.65); 
}

.activity-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.custom-navbar {
    background: linear-gradient( to bottom, rgba(26, 26, 26, 1) 0%, /* very dark at top */
    rgba(26, 26, 26, 0.85) 30%, /* still dark near top-third */
    rgba(26, 26, 26, 0.6) 60%, /* mid darkness at center */
    rgba(0, 0, 0, 0) 100% /* fade out at bottom */
    );
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    border: none;
}

.choice-card {
    max-width: 350px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.choice-card .card-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover .card-img {
    transform: scale(1.1);
}

.choice-card .card-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

.choice-card .card-hover {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.choice-card:hover .card-hover {
    opacity: 1;
    max-height: 200px;
}

.reservation-header {
    padding-top: 120px;
    padding-bottom: 40px;
    color: #f5f5f5; 
}

.reservation-header h2 {
    font-weight: bold;
}

.reservation-header p {
    margin-top: 15px;
    font-size: 1.1rem;
}

.reservation-bg {
    background: linear-gradient( to bottom, #b1a99e 0%,
    #b1a99e 50%,
    #1a1a1a 85%,
    #1a1a1a 100% );
}

.table {
    border-radius: 1rem !important;
    overflow: hidden;
}

.table-bordered {
    border: 2px solid #dee2e6;
}

.custom-badge {
    font-size: 0.95rem;
    padding: 0.6em 1em;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    transition: 0.2s ease-in-out;
}

.hero-section {
    position: relative;
    background: url('/img/AboutUS_BG.jpg')center center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-section .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .custom-shape-divider-bottom svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 100px;
    }

    .custom-shape-divider-bottom .shape-fill {
        fill: #fff;
    }

.text-justify {
    text-align: justify;
}

.red-shadow {
    box-shadow: -25px 30px 0px 0px #ff7f1a;
}

.blue-shadow {
    box-shadow: 25px 30px 0px 0px #008ff0f1;
}

.card {
    position: relative;
}

.flip-card {
    perspective: 1000px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.vmg-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #dce8ff;
    position: relative;
    height: 550px;
}

    /* Red-themed card */
    .vmg-card.red {
        border-color: #ff7f1a;
        background: linear-gradient(145deg, #fff6f0, #ffe5d4);
    }

        .vmg-card.red .vmg-icon i,
        .vmg-card.red .vmg-title {
            color: #ff7f1a;
        }

    /* Blue-themed card */
    .vmg-card.blue {
        border-color: #008ff0f1;
        background: linear-gradient(145deg, #f0f8ff, #d4e9ff);
    }

        .vmg-card.blue .vmg-icon i,
        .vmg-card.blue .vmg-title {
            color: #008ff0f1;
        }

    /* Green-themed card */
    .vmg-card.green {
        border-color: #00c853;
        background: linear-gradient(145deg, #f0fff6, #d4ffe2);
    }

        .vmg-card.green .vmg-icon i,
        .vmg-card.green .vmg-title {
            color: #00c853;
        }

    /* Hover effects */
    .vmg-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

.vmg-icon i {
    font-size: 5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .vmg-icon i:hover {
        transform: scale(1.1);
    }

.vmg-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vmg-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Subtle shine overlay */
.vmg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
    z-index: 0;
    pointer-events: none;
}

.vmg-card:hover::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
}

.vmg-card h3, .vmg-card p, .vmg-icon {
    position: relative;
    z-index: 1;
}

.nunito-sans {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: lighter;
    font-style: normal;
    color: black;
}

.text-header {
    font-size: 8rem;
    font-weight: 450;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.65);
}

.login-container {
    background-color: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    max-width: 420px;
    width: 100%;
    margin-left: 5rem;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

    .login-container .form-control {
        background-color: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 12px;
        padding: 14px 18px;
        font-size: 1.1rem;
        color: #fff;
        transition: all 0.3s ease;
    }

        .login-container .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .login-container .form-control:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        }

    .login-container .btn {
        width: 100%;
        padding: 14px 0;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        background-color: #008ff0f1;
        border: none;
    }

        .login-container .btn:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
        }

.login-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header.bg-dark {
    background: linear-gradient(90deg, #000000, #333333);
    border-bottom: 3px solid rgba(0,0,0,0.65);
}

span {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

form .form-control,
form .form-select {
    border-radius: 4px;
}

form input,
from select,
form textarea {
    border: 1px solid #ccc;
    padding: 0.5rem; 
    transition: all 0.2s ease; /* Smooth transition for hover/focus */
}

    form input:hover,
    form select:hover,
    form textarea:hover,
    form input:focus,
    form textarea:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 5px rgba(13, 110, 253, 0.5); /* subtle glow */
        outline: none;
    }

.required::after {
    content: ' *';
    color: orangered;
}

.contact-page-wrapper {
    background: url('/img/Contact_BG.jpg') center center/cover no-repeat;
    position: relative;
}

    .contact-page-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.45); 
        z-index: 0;
    }

    .contact-page-wrapper > .container {
        position: relative;
        z-index: 1;
    }

.contact-info-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

    .contact-info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
    }

.contact-icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(13, 110, 253, 0.1); /* Using Lux primary color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: rgba(13, 110, 253, 0.15);
    transform: scale(1.05);
}

.contact-cta-section {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .contact-cta-section:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
    }

.contact-info-card a:hover {
    text-decoration: underline !important;
    color: #0b5ed7 !important;
}

.contact-cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
    .contact-page-wrapper h1 {
        font-size: 2.5rem;
    }

    .contact-icon-wrapper {
        width: 65px;
        height: 65px;
    }
}

.about-content-wrapper {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.story-img {
    max-width: 85%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .story-img:hover {
        transform: translateY(-10px) rotate(-2deg);
        box-shadow: -20px 25px 0px 0px #008ff0f1 !important;
    }

.story-img-alt {
    max-width: 85%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .story-img-alt:hover {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 20px 25px 0px 0px #ff7f1a !important;
    }

.motto-box {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #0d6efd;
}

.story-content p {
    color: #555;
}

.values-section {
    background: rgba(248, 249, 250, 0.5);
    border-radius: 20px;
}

.flip-card {
    perspective: 1000px;
    height: 420px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.team-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid #e9ecef;
    transition: transform 0.3s ease;
}

.flip-card:hover .team-img {
    transform: scale(1.05);
}

.quote-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 3px solid #ff7f1a;
}

@media (max-width: 768px) {
    .text-header {
        font-size: 4rem !important;
    }

    .hero-section {
        height: 60vh;
    }

    .story-img,
    .story-img-alt {
        max-width: 100%;
        margin: 20px 0;
    }

        .story-img:hover,
        .story-img-alt:hover {
            transform: translateY(-5px);
            box-shadow: -10px 15px 0px 0px #008ff0f1 !important;
        }

        .story-img-alt:hover {
            box-shadow: 10px 15px 0px 0px #ff7f1a !important;
        }

    .flip-card {
        height: 380px;
    }

    .team-img {
        width: 150px;
        height: 150px;
    }

    .vmg-card {
        height: auto;
        min-height: 400px;
    }

    .motto-box {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .text-header {
        font-size: 3rem !important;
    }

    .flip-card {
        height: 360px;
    }

    .team-img {
        width: 130px;
        height: 130px;
    }

    .flip-card-back p {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .flip-card {
        height: 400px;
        max-width: 450px;
    }
}

.reservation-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    margin-top: -100px;
    padding-top: 180px;
    position: relative;
    overflow: hidden;
}

    .reservation-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.4;
    }

    .reservation-hero h1 {
        color: #ffffff;
        position: relative;
        z-index: 1;
    }

    .reservation-hero .lead {
        color: rgba(255, 255, 255, 0.9);
        position: relative;
        z-index: 1;
    }

.reservation-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .reservation-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.reservation-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .reservation-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.reservation-card:hover .reservation-card-image img {
    transform: scale(1.1);
}

.reservation-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.reservation-card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

    .icon-badge i {
        font-size: 28px;
        color: #ffffff;
    }

.reservation-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.reservation-card-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.reservation-card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-action {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-width: 2px;
    white-space: nowrap;
}

    .btn-action i {
        font-size: 0.85rem;
    }

    .btn-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

/* Responsive Design */
@media (max-width: 991px) {
    .reservation-card-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reservation-hero {
        padding: 60px 0 40px;
        padding-top: 160px;
    }

        .reservation-hero h1 {
            font-size: 2rem;
        }

    .reservation-card-image {
        height: 180px;
    }

    .reservation-card-body {
        padding: 25px 20px;
    }

    .icon-badge {
        width: 56px;
        height: 56px;
        margin: -45px auto 15px;
    }

        .icon-badge i {
            font-size: 24px;
        }

    .reservation-card-title {
        font-size: 1.3rem;
    }
}

.container.py-5 {
    max-width: 1200px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 0px;
    padding-top: 100px;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.home-BG {
    background: url('/img/BG.jpg') center center/cover no-repeat;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    filter: brightness(75%);
}

.text-custom {
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.65); 
}

.activity-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.custom-navbar {
    background: linear-gradient( to bottom, rgba(26, 26, 26, 1) 0%, /* very dark at top */
    rgba(26, 26, 26, 0.85) 30%, /* still dark near top-third */
    rgba(26, 26, 26, 0.6) 60%, /* mid darkness at center */
    rgba(0, 0, 0, 0) 100% /* fade out at bottom */
    );
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    border: none;
}

.choice-card {
    max-width: 350px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.choice-card .card-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover .card-img {
    transform: scale(1.1);
}

.choice-card .card-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

.choice-card .card-hover {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.choice-card:hover .card-hover {
    opacity: 1;
    max-height: 200px;
}

.reservation-header {
    padding-top: 120px;
    padding-bottom: 40px;
    color: #f5f5f5; 
}

.reservation-header h2 {
    font-weight: bold;
}

.reservation-header p {
    margin-top: 15px;
    font-size: 1.1rem;
}

.reservation-bg {
    background: linear-gradient( to bottom, #b1a99e 0%,
    #b1a99e 50%,
    #1a1a1a 85%,
    #1a1a1a 100% );
}

.table {
    border-radius: 1rem !important;
    overflow: hidden;
}

.table-bordered {
    border: 2px solid #dee2e6;
}

.custom-badge {
    font-size: 0.95rem;
    padding: 0.6em 1em;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    transition: 0.2s ease-in-out;
}

.hero-section {
    position: relative;
    background: url('/img/AboutUS_BG.jpg')center center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-section .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .custom-shape-divider-bottom svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 100px;
    }

    .custom-shape-divider-bottom .shape-fill {
        fill: #fff;
    }

.text-justify {
    text-align: justify;
}

.red-shadow {
    box-shadow: -25px 30px 0px 0px #ff7f1a;
}

.blue-shadow {
    box-shadow: 25px 30px 0px 0px #008ff0f1;
}

.card {
    position: relative;
}

.flip-card {
    perspective: 1000px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.vmg-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #dce8ff;
    position: relative;
    height: 550px;
}

    /* Red-themed card */
    .vmg-card.red {
        border-color: #ff7f1a;
        background: linear-gradient(145deg, #fff6f0, #ffe5d4);
    }

        .vmg-card.red .vmg-icon i,
        .vmg-card.red .vmg-title {
            color: #ff7f1a;
        }

    /* Blue-themed card */
    .vmg-card.blue {
        border-color: #008ff0f1;
        background: linear-gradient(145deg, #f0f8ff, #d4e9ff);
    }

        .vmg-card.blue .vmg-icon i,
        .vmg-card.blue .vmg-title {
            color: #008ff0f1;
        }

    /* Green-themed card */
    .vmg-card.green {
        border-color: #00c853;
        background: linear-gradient(145deg, #f0fff6, #d4ffe2);
    }

        .vmg-card.green .vmg-icon i,
        .vmg-card.green .vmg-title {
            color: #00c853;
        }

    /* Hover effects */
    .vmg-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

.vmg-icon i {
    font-size: 5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .vmg-icon i:hover {
        transform: scale(1.1);
    }

.vmg-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vmg-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Subtle shine overlay */
.vmg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
    z-index: 0;
    pointer-events: none;
}

.vmg-card:hover::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
}

.vmg-card h3, .vmg-card p, .vmg-icon {
    position: relative;
    z-index: 1;
}

.nunito-sans {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: lighter;
    font-style: normal;
    color: black;
}

.text-header {
    font-size: 8rem;
    font-weight: 450;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.65);
}

.login-container {
    background-color: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    max-width: 420px;
    width: 100%;
    margin-left: 5rem;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

    .login-container .form-control {
        background-color: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 12px;
        padding: 14px 18px;
        font-size: 1.1rem;
        color: #fff;
        transition: all 0.3s ease;
    }

        .login-container .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .login-container .form-control:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        }

    .login-container .btn {
        width: 100%;
        padding: 14px 0;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        background-color: #008ff0f1;
        border: none;
    }

        .login-container .btn:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
        }

.login-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header.bg-dark {
    background: linear-gradient(90deg, #000000, #333333);
    border-bottom: 3px solid rgba(0,0,0,0.65);
}

span {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

form .form-control,
form .form-select {
    border-radius: 4px;
}

form input,
from select,
form textarea {
    border: 1px solid #ccc;
    padding: 0.5rem; 
    transition: all 0.2s ease; /* Smooth transition for hover/focus */
}

    form input:hover,
    form select:hover,
    form textarea:hover,
    form input:focus,
    form textarea:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 5px rgba(13, 110, 253, 0.5); /* subtle glow */
        outline: none;
    }

.required::after {
    content: ' *';
    color: orangered;
}

.contact-page-wrapper {
    background: url('/img/Contact_BG.jpg') center center/cover no-repeat;
    position: relative;
}

    .contact-page-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.45); 
        z-index: 0;
    }

    .contact-page-wrapper > .container {
        position: relative;
        z-index: 1;
    }

.contact-info-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

    .contact-info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
    }

.contact-icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(13, 110, 253, 0.1); /* Using Lux primary color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: rgba(13, 110, 253, 0.15);
    transform: scale(1.05);
}

.contact-cta-section {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .contact-cta-section:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
    }

.contact-info-card a:hover {
    text-decoration: underline !important;
    color: #0b5ed7 !important;
}

.contact-cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
    .contact-page-wrapper h1 {
        font-size: 2.5rem;
    }

    .contact-icon-wrapper {
        width: 65px;
        height: 65px;
    }
}

.about-content-wrapper {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.story-img {
    max-width: 85%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .story-img:hover {
        transform: translateY(-10px) rotate(-2deg);
        box-shadow: -20px 25px 0px 0px #008ff0f1 !important;
    }

.story-img-alt {
    max-width: 85%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .story-img-alt:hover {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 20px 25px 0px 0px #ff7f1a !important;
    }

.motto-box {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #0d6efd;
}

.story-content p {
    color: #555;
}

.values-section {
    background: rgba(248, 249, 250, 0.5);
    border-radius: 20px;
}

.flip-card {
    perspective: 1000px;
    height: 420px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.team-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid #e9ecef;
    transition: transform 0.3s ease;
}

.flip-card:hover .team-img {
    transform: scale(1.05);
}

.quote-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 3px solid #ff7f1a;
}

@media (max-width: 768px) {
    .text-header {
        font-size: 4rem !important;
    }

    .hero-section {
        height: 60vh;
    }

    .story-img,
    .story-img-alt {
        max-width: 100%;
        margin: 20px 0;
    }

        .story-img:hover,
        .story-img-alt:hover {
            transform: translateY(-5px);
            box-shadow: -10px 15px 0px 0px #008ff0f1 !important;
        }

        .story-img-alt:hover {
            box-shadow: 10px 15px 0px 0px #ff7f1a !important;
        }

    .flip-card {
        height: 380px;
    }

    .team-img {
        width: 150px;
        height: 150px;
    }

    .vmg-card {
        height: auto;
        min-height: 400px;
    }

    .motto-box {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .text-header {
        font-size: 3rem !important;
    }

    .flip-card {
        height: 360px;
    }

    .team-img {
        width: 130px;
        height: 130px;
    }

    .flip-card-back p {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .flip-card {
        height: 400px;
        max-width: 450px;
    }
}

.reservation-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    margin-top: -100px;
    padding-top: 180px;
    position: relative;
    overflow: hidden;
}

    .reservation-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.4;
    }

    .reservation-hero h1 {
        color: #ffffff;
        position: relative;
        z-index: 1;
    }

    .reservation-hero .lead {
        color: rgba(255, 255, 255, 0.9);
        position: relative;
        z-index: 1;
    }

.reservation-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .reservation-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.reservation-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .reservation-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.reservation-card:hover .reservation-card-image img {
    transform: scale(1.1);
}

.reservation-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.reservation-card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

    .icon-badge i {
        font-size: 28px;
        color: #ffffff;
    }

.reservation-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.reservation-card-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.reservation-card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-action {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-width: 2px;
    white-space: nowrap;
}

    .btn-action i {
        font-size: 0.85rem;
    }

    .btn-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

/* Responsive Design */
@media (max-width: 991px) {
    .reservation-card-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reservation-hero {
        padding: 60px 0 40px;
        padding-top: 160px;
    }

        .reservation-hero h1 {
            font-size: 2rem;
        }

    .reservation-card-image {
        height: 180px;
    }

    .reservation-card-body {
        padding: 25px 20px;
    }

    .icon-badge {
        width: 56px;
        height: 56px;
        margin: -45px auto 15px;
    }

        .icon-badge i {
            font-size: 24px;
        }

    .reservation-card-title {
        font-size: 1.3rem;
    }
}

.container.py-5 {
    max-width: 1200px;
}


