body {
    font-family: system-ui, sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}

.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 130px;
    left: 27px;
    cursor: pointer;
    z-index: 2;
}

.call {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 58px;
    left: 27px;
    cursor: pointer;
    z-index: 2;
}

.call img {
    width: 100%;
    max-width: 68px;
}

.call img,
.whatsapp img {
    width: 100%;
    background: white;
    border-radius: 50%;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
    background: #2e6979;
}

.top-bar a {
    color: #ffffff;
    transition: 0.3s;
    text-decoration: none;
}

.top-bar a:hover {
    color: #fff;
}

/* Navbar */
.navbar {
    padding: 0px;
}

img.logo-main {
    width: 100%;
    max-width: 140px;
}

.nav-link {
    font-weight: 500;
    color: #333;
}

.nav-link:hover,
.nav-link.active {
    color: #2e6979 !important;
}

.btn {
    background: #2e6979;
}

/* dropdown-menu */
.dropdown-toggle {
    white-space: nowrap;
}

.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Dropdown links */
.dropdown-menu .nav-link {
    padding: 10px 20px;
    color: #0b3c5d;
    display: block;
    font-size: 14px;
}

.dropdown-menu .nav-link:hover {
    background: #f5f8fc;
    color: #c9a24d;
}

/* DESKTOP: Hover to open */
@media (min-width: 992px) {
    .has-dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .has-dropdown.open>.dropdown-menu {
        display: block;
    }

    .dropdown-toggle i {
        float: right;
    }
}

/* Chevron animation */
.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.btn-appointment {
    background-color: #2e6979;
    color: #fff;
    border-radius: 50px;
    padding: 10px 22px;
}

.btn-appointment:hover {
    background-color: var(--bs-btn-hover-bg);
    color: #000;
    border: 1px solid #2e6979;
}

/* hero-section */
/* Hero base */
.hero-slider .carousel-item {
    height: 700px;
    min-height: 650px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    height: 700px;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .35));
    display: flex;
    align-items: center;
}

/* Glass card */
.hero-card {
    max-width: 620px;
    padding: 2.5rem;
    border-radius: 20px;
    color: #fff;
}

/* Typography */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 520px;
    margin: 1rem 0 1.8rem;
}

/* Indicators */
.hero-indicators {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
}

.hero-indicators button.active {
    background: #28a745;
    height: 28px;
    border-radius: 8px;
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, .2);
    z-index: 10;
}

.hero-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: #28a745;
    animation: progress 3s linear infinite;
}

/* Animations */
.animate-item {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item.active .animate-item {
    animation: heroFadeUp .9s ease forwards;
}

.delay-1 {
    animation-delay: .3s;
}

.delay-2 {
    animation-delay: .6s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-card {
        padding: 1.8rem;
        text-align: center;
    }

    .hero-indicators {
        right: 15px;
    }
}


/* about section */
.about-hotel {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

/* IMAGE LAYOUT */
.about-images {
    position: relative;
    max-width: 520px;
    margin: auto;
}

.image-main img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-floating {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
}

.image-floating img {
    width: 100%;
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.section-tag {
    background: #cfa45a5c;
    color: #2e6979;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 12px;
}

.about-content h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    font-weight: 500;
}

.feature-item i {
    color: #cfa45a;
    font-size: 1.2rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 991px) {
    .image-floating {
        bottom: -30px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .about-hotel {
        padding: 3.5rem 0;
    }

    .image-floating {
        position: relative;
        width: 100%;
        bottom: 0;
        right: 0;
        margin-top: 1.2rem;
    }

    .about-content {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
}

/* ==========================
   ROOM SHOWCASE SECTION
   ========================== */

.room-showcase {
    background: #f8f9fa;
}

.room-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.room-desc {
    max-width: 620px;
    margin: auto;
    color: #666;
    font-size: 15px;
}

/* Room Card */
.deluxe-room-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 25px;
}

.deluxe-room-card {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.deluxe-room-card img {
    transform: scale(1.08);
    width: 100%;
    height: 271px;
    object-fit: cover;
}

/* Overlay */
.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.2),
            transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deluxe-room-card:hover .room-overlay {
    opacity: 1;
}

.room-overlay h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Button */
.room-btn {
    background: #2e6979;
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.room-btn:hover {
    background: #dba241;
    color: #fff;
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 992px) {
    .room-card img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .room-title {
        font-size: 32px;
    }

    .room-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .room-title {
        font-size: 28px;
    }

    .room-card img {
        height: 200px;
    }
}


/* services section */
/* SERVICES SECTION */
.services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc, #eef3f8);
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
}

.about-title span {
    color: #2e6979;
}

.section-title p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 30px;
}

/* CARD */
.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 25px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Gradient Glow */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2e6979;
    opacity: 0;
    z-index: -1;
    transition: 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    color: #fff;
}

/* ICON */
.service-icon {
    width: 75px;
    height: 75px;
    background: #2e6979;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: 0.4s ease;
}

.service-card:hover .service-icon {
    background: #fff;
    color: #2e6979;
}

/* TEXT */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.service-card:hover p,
.service-card:hover h3 {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-title {
        font-size: 30px;
    }
}


/* our rooms */
.rooms-modern {
    background: linear-gradient(to bottom, #dba24129, #f8fbf4);
}

.room-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-tab {
    background: #fff;
    border: none;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    align-items: center;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

.room-tab span {
    font-size: 28px;
    font-weight: 700;
    color: #ccc;
}

.room-tab h5 {
    margin: 0;
    font-size: 18px;
}

.room-tab small {
    color: #777;
}

.room-tab.active,
.room-tab:hover {
    background: #2e6979;
    color: #fff;
}

.room-tab.active span,
.room-tab:hover span,
.room-tab.active small,
.room-tab:hover small {
    color: #fff;
}

/* RIGHT IMAGE */
.room-display {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.room-display img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* FLOATING CARD */
.room-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    max-width: 360px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-info h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.room-price {
    font-weight: 600;
    color: #dba241;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .room-display img {
        height: 320px;
    }

    .room-info {
        position: static;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .room-tab span {
        display: none;
    }
}

/* =========================
   HOTEL GALLERY SECTION
   ========================= */


/* testimonial sectuon */
.testimonial-section {
    background-image: url('../images/banner/index-banner-2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-overlay {
    background: #00000082;
    padding: 5rem 0;
}

.testimonial-section .about-title {
    color: white;
}

.testimonial-section .section-tag {
    color: white;
}

/* CARD */
.testimonial-card {
    max-width: 720px;
    margin: auto;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #00000052;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2rem;
    font-style: italic;
}

/* GUEST INFO */
.guest-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guest-info img {
    width: 100%;
    max-width: 50px;
    background: white;
    border-radius: 50%;
    object-fit: cover;
}

.guest-info h5 {
    margin: 0;
    font-weight: 600;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card p {
        font-size: 1rem;
    }
}

/* ==contact page== */

.hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 1.5rem;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 58%);
}

.hero__content {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #eaeaea;
}

.hero__breadcrumb {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #cfa45a4f;
    padding: 10px 27px;
    border-radius: 26px;
}

.hero__breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.hero__breadcrumb a:hover {
    text-decoration: underline;
}

.hero__breadcrumb span {
    margin: 0 0.4rem;
    opacity: 0.7;
}

.contact-section {
    padding: 90px 6%;
    background: #fff;
}

.contact-info {
    align-content: center;
    margin-left: 4rem;
}

/* Left */
.contact-badge {
    display: inline-block;
    background: #dba24166;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.contact-info p {
    color: #666;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Info Items */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 100%;
    max-width: 42px;
    height: 42px;
    background: #2e6979;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.info-icon:hover {
    background: #dba241;
    color: white;
    transform: rotateY(180deg);
}

.info-item a {
    color: black;
    text-decoration: none;
}

.info-item a:hover {
    color: #2e6979;
}

.info-item small {
    display: block;
    color: #2e6979;
    font-size: 14px;
    font-weight: 500;
}

.info-item strong {
    font-size: 15px;
}

/* Right Form */
.contact-form {
    background: whitesmoke;
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.form-desc {
    color: #000000;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    font-size: 13px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: white;
    border: 1px solid #2e6979a1;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 0px;
    color: #000;
}

.contact-form textarea {
    resize: none;
}

/* Button */
.contact-form button {
    background: #2e6979;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
}

/* ===footer=== */
.site-footer {
    position: relative;
    background: url("../images/banner//index-banner-2.jpg") center/cover no-repeat;
    color: #eee;
    font-size: 15px;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
    z-index: 1;
}

.footer-logo {
    width: 100%;
    max-width: 150px;
    margin-bottom: 1rem;
    background: white;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 63px;
    height: 2px;
    background: #cfa45a;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li a.active {
    color: #cfa45a;
}

.footer-social a {
    display: inline-flex;
    width: 100%;
    max-width: 40px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #cfa45a;
    color: #000;
}

.footer-social a:hover i {
    color: white;
}

.footer-col i {
    color: #cfa45a;
}

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    z-index: 1;
}

.footer-bottom span {
    color: #cfa45a;
}

img.gt-logo {
    width: 100%;
    max-width: 105px;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .footer-container {
        text-align: center;
    }

    .footer-col h4::after {
        left: 9%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}

/* ===contact responsive=== */
/* ===========================
   RESPONSIVE CONTACT SECTION
   =========================== */

/* Tablets & small laptops */
@media (max-width: 992px) {

    .contact-section {
        padding: 70px 4%;
    }

    .contact-info {
        margin-left: 0;
        margin-top: 40px;
    }

    .contact-info h1 {
        font-size: 38px;
    }

    .contact-form {
        padding: 40px;
    }
}

/* Tablets & large mobiles */
@media (max-width: 768px) {

    .contact-section {
        padding: 60px 4%;
    }

    .contact-info h1 {
        font-size: 34px;
    }

    .contact-info p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .info-item {
        align-items: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-form h3 {
        text-align: center;
    }

    .form-desc {
        text-align: center;
    }

    .contact-form button {
        width: 100%;
        text-align: center;
    }

    .footer-col {
        text-align: left;
    }
}

/* Small mobiles */
@media (max-width: 576px) {

    .contact-section {
        padding: 50px 3%;
    }

    .contact-info h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .info-item {
        gap: 12px;
    }

    .info-icon {
        width: 100%;
        max-width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .contact-form {
        padding: 25px;
        border-radius: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }
}

/* popup form */
.booking-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.booking-modal.active {
    display: block;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
}

.booking-box {
    position: relative;
    background: #fff;
    max-width: 420px;
    margin: auto;
    margin-top: 8vh;
    padding: 2rem;
    border-radius: 18px;
    animation: scaleIn .4s ease;
}

.booking-box h3 {
    font-weight: 700;
    margin-bottom: .3rem;
}

.booking-box .subtitle {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 14px;
    font-size: .95rem;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: #2e6979;
    border: none;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    transition: .3s;
}

.submit-btn:hover {
    background: #2e6979;
}

/* Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .booking-box {
        margin: 5vh 15px;
        padding: 1.6rem;
    }

    .form-row {
        flex-direction: column;
    }
}