﻿:root {
    --navy: #06233d;
    --navy2: #031629;
    --gold: #c99a45;
    --gold2: #edc46c;
    --ink: #122033;
    --muted: #657080;
    --cream: #fbf7ef;
    --line: #e8ded0;
    --white: #fff;
    --shadow: 0 18px 45px rgba(4, 22, 39, .16);
    --radius: 8px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.topbar {
    height: 40px;
    background: var(--navy2);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0 7vw;
    font-size: 13px
}

.topbar span,
.eyebrow {
    color: var(--gold2);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    font-size: 12px
}

.social {
    margin-left: auto;
    display: flex;
    gap: 12px
}

.navbar {
    height: 86px;
    background: rgba(6, 35, 61, .96);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 7vw;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 28px;
    min-width: 210px
}

.brand-mark {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-family: Georgia, serif;
    font-weight: 800
}

.brand strong {
    font-family: Georgia, serif;
    text-transform: uppercase;
    line-height: 1.02;
    color: #f7df9b
}

.brand small {
    display: block;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase
}

.nav-links a {
    padding: 28px 0;
    border-bottom: 2px solid transparent
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--gold2);
    border-color: var(--gold2)
}

.book-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
	gap: 10px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    border: 1px solid transparent;
    cursor: pointer
}

.book-link,
.btn-gold {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    color: #102238;
    box-shadow: 0 10px 24px rgba(201, 154, 69, .22)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .45);
    color: #fff
}

.btn-dark {
    background: var(--navy);
    color: #fff
}

.menu-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px
}

.hero {
    min-height: 640px;
    position: relative;
    background: linear-gradient(90deg, rgba(3, 22, 41, .82), rgba(3, 22, 41, .2)), url('../images/hero/balighai-beach.png') center/cover;
    color: #fff
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .38))
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 130px 7vw 150px;
    max-width: 760px
}

.script {
    font-family: Georgia, serif;
    font-style: italic;
    color: var(--gold2);
    font-size: 24px
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 68px;
    line-height: .98;
    margin: 14px 0 22px;
    letter-spacing: 0
}

.hero p {
    font-size: 18px;
    max-width: 580px
}

.hero-booking {
    position: absolute;
    left: 10vw;
    right: 10vw;
    bottom: -38px;
    z-index: 2
}

.booking-form{
    background: var(--navy2);
    color:var(--gold2);
    border:1px solid rgba(237,196,108,.5);
    box-shadow:var(--shadow);
    border-radius:10px;

    display:grid;
    grid-template-columns:1fr 1fr 1.4fr auto;

    overflow:hidden;
    align-items:center;
}

/* Each column */
.booking-form label{
    height:100%;
    padding:18px 20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border-right:1px solid rgba(255,255,255,.18);
}

/* Label */
.booking-form label span{
    color:var(--gold2);
    text-transform:uppercase;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
    text-align:center;
}

/* Inputs */
.booking-form input,
.booking-form select{
    width:100%;
    max-width:220px;
    height:48px;

    padding:0 14px;

    border:1px solid rgba(255,255,255,.25);
    border-radius:6px;

    background:#fff;
    color:#333;

    font-size:15px;
    outline:none;
}

/* Dropdown options */
.booking-form select option{
    background:#194d9b;
    color:#fff;
}

/* Button */
.booking-form button{
    height:48px;
    padding:0 28px;
    margin:0 20px;

    align-self:center;
    justify-self:center;

    white-space:nowrap;
}
input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
    color: #333;
}


.stats {
    padding: 72px 7vw 28px;
    background: var(--cream);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.stat {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat b {
    font-family: Georgia, serif;
    font-size: 34px;
    color: var(--gold)
}

.stat span {
    display: block;
    font-size: 14px;
    color: #1b2a3d
}

.section {
    padding: 54px 7vw
}

.section-title {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.1;
    margin: 6px 0 28px
}

.center {
    text-align: center;
    display: block
}

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center
}

.intro img,
.feature-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 430px;
    width: 100%;
    object-fit: cover
}

.lead {
    font-size: 18px;
    color: #3f4d5e
}

.room-grid,
.card-grid,
.gallery-grid,
.blog-grid,
.tour-grid,
.review-grid,
.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.room-card,
.service-card,
.blog-card,
.place-card,
.review-grid article,
.policy-card,
.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(18, 32, 51, .08);
    overflow: hidden
}

.room-card img,
.service-card img,
.blog-card img {
    height: 190px;
    width: 100%;
    object-fit: cover
}

.room-body,
.service-card div,
.blog-card div,
.place-card,
.policy-card,
.admin-card {
    padding: 18px
}

.room-body h3,
.service-card h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.1;
    margin: 0 0 8px
}

.price strong {
    font-family: Georgia, serif;
    font-size: 24px
}

.text-link {
    color: #9d6d23;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px
}

.facility-strip {
    background: var(--navy2);
    color: #fff;
    padding: 28px 7vw
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    text-align: center
}

.facility-list div {
    border-right: 1px solid rgba(255, 255, 255, .2);
    min-height: 62px;
    display: grid;
    place-items: center;
    color: #fff
}

.facility-list span {
    display: block;
    color: var(--gold2);
    font-size: 26px
}

.service-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding: 30px 7vw;
    background: #fff
}

.service-card {
    text-align: center
}

.service-card img {
    height: 150px
}

.reviews {
    background: linear-gradient(180deg, #fff, #fbf7ef)
}

.review-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1040px;
    margin: 0 auto
}

.review-grid article {
    padding: 24px
}

.quote {
    font-family: Georgia, serif;
    color: var(--gold);
    font-size: 48px;
    line-height: 1
}

.review-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px
}

.page-hero {
    padding: 90px 7vw;
    color: #fff;
    background: linear-gradient(90deg, rgba(3, 22, 41, .84), rgba(3, 22, 41, .36)), url('../images/hero/balighai-beach.png') center/cover
}

.page-hero h1 {
    font-family: Georgia, serif;
    font-size: 52px;
    margin: 8px 0 10px
}

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: start
}

.list-check {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none
}

.list-check li {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff
}

.list-check li:before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    margin-right: 8px
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr)
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.gallery-item img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: .4s
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.gallery-item span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(3, 22, 41, .82);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px
}

.form-grid {
    display: grid;
    gap: 14px
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 13px 14px;
    font: inherit
}

.form-grid textarea {
    min-height: 130px
}

.map {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.contact-band{
    background:linear-gradient(135deg,#04192d,#0b3657);
    color:#fff;

    margin:60px 7vw;
    padding:45px 50px;

    border-radius:14px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;
    flex-wrap:wrap;

    box-shadow:0 18px 40px rgba(0,0,0,.2);
}

.contact-content{
    max-width:700px;
}

.contact-band h2{
    font-family:Georgia,serif;
    font-size:36px;
    margin:10px 0 16px;
    color:#fff;
}

.contact-band p{
    font-size:16px;
    line-height:1.8;
    color:#dbe7f3;
}

.cta-row{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cta-row .btn{
    min-width:170px;
    height:50px;
}
/* ==========================
   PREMIUM FOOTER
========================== */

.footer{
    background:linear-gradient(180deg,#04192d,#06233d);
    color:#dce7f2;
    padding:70px 7vw 25px;
}

/* Footer Layout */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.5fr;
    gap:45px;
    align-items:start;
}

/* Logo */

.footer-brand{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo-only{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#fff;
    padding:8px;
    border:3px solid #d4af37;
    object-fit:cover;
    transition:.3s;
}

.footer-logo-only:hover{
    transform:scale(1.05);
}

/* About */

.footer p{
    color:#d4dce5;
    line-height:1.9;
    font-size:15px;
    margin:0;
}

/* Heading */

.footer h3{
    color:#fff;
    font-size:16px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer h3::after{
    content:"";
    display:block;
    width:42px;
    height:3px;
    background:#d4af37;
    margin-top:8px;
    border-radius:50px;
}

/* Links */

.footer a{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#dce7f2;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#d4af37;
    transform:translateX(5px);
}

/* Icons */

.footer i{
    width:18px;
    color:#d4af37;
    text-align:center;
}

/* ==========================
   Reach Us Section
========================== */

/* Reach Us */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
}

.contact-item i{
    width:18px;
    min-width:18px;
    color:#d4af37;
    margin-top:6px;      /* aligns icon with first line */
    flex-shrink:0;
    text-align:center;
}

.contact-item span,
.contact-item a{
    display:block;
    line-height:1.8;
    color:#dce7f2;
    margin:0;
}

.contact-item a{
    text-decoration:none;
}

.contact-item a:hover{
    color:#d4af37;
}

.gstin-text{
    white-space:nowrap;
}
/* Hotel Name */
.footer .reach-title{
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
}
/* Copyright */

.copyright{
    margin-top:45px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.12);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.copyright p{
    margin:0;
}

/* Social Icons */

.footer-social-icons{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.footer-social-icons h4{
    margin:0;
    color:#fff;
    font-size:15px;
    font-weight:600;
}

.footer-social-icons a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    margin:0;
    transition:.3s;
}

.footer-social-icons a:hover{
    background:#d4af37;
    border-color:#d4af37;
    transform:translateY(-3px);
}

.footer-social-icons a:hover i{
    color:#06233d;
}

/* ==========================
   Tablet
========================== */

@media (max-width:1200px){

    .footer-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* ==========================
   Tablet Portrait
========================== */

@media (max-width:900px){

    .footer{
        padding:60px 30px 25px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    .footer{
        padding:50px 20px 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-brand{
        display:flex;
        justify-content:center;
    }

    .footer-logo-only{
        width:90px;
        height:90px;
    }

    .copyright{
        flex-direction:column;
        text-align:center;
    }

    .footer-social-icons{
        justify-content:center;
    }

    .footer-social-icons h4{
        width:100%;
        text-align:center;
        margin-bottom:10px;
    }

}

/* ==========================
   Small Mobile
========================== */

@media (max-width:480px){

    .footer{
        padding:40px 15px 20px;
    }

    .footer-logo-only{
        width:75px;
        height:75px;
    }

    .footer h3{
        font-size:15px;
    }

    .footer p,
    .footer a{
        font-size:14px;
    }

    .footer-social-icons a{
        width:34px;
        height:34px;
    }

}
/*====================================
 PREMIUM FLOATING CONTACT BUTTONS
=====================================*/

.floating-btn {
    position: fixed;
    right: 22px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 99999;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    background: rgba(255, 255, 255, .14);

    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 60px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .18);

    transition: .45s cubic-bezier(.22, 1, .36, 1);

    animation:
        floaty 4s ease-in-out infinite,
        slideIn .8s ease;
}


/* ICON */

.floating-icon {

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    flex-shrink: 0;

    position: relative;
}

.floating-text {

    max-width: 0;

    overflow: hidden;

    white-space: nowrap;

    font-weight: 700;

    font-size: 15px;

    color: #fff;

    transition: .45s;

    padding-right: 0;
}


/* Hover */

.floating-btn:hover {

    transform: translateY(-6px) scale(1.04);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .28);

}

.floating-btn:hover .floating-text {

    max-width: 180px;

    padding-right: 22px;

}



/*====================
WHATSAPP
=====================*/

.whatsapp {

    bottom: 110px;

    background: linear-gradient(135deg,
            rgba(37, 211, 102, .95),
            rgba(18, 167, 78, .95));

    color: #fff;

}


/*====================
CALL
=====================*/

.call {

    bottom: 30px;

    background: linear-gradient(135deg,
            #e3bc63,
            #c89a44);

    color: #08233d;

}

.call .floating-text {

    color: #08233d;

}


/*=========================
Notification Pulse
==========================*/

.floating-btn::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    width: 100%;

    height: 100%;

    border-radius: 80px;

    transform: translate(-50%, -50%);

    animation: pulseRing 2.5s infinite;

    opacity: .7;

    z-index: -1;

}

.whatsapp::before {

    background: #25D366;

}

.call::before {

    background: #c89a44;

}



/*=========================
Shine Effect
==========================*/

.floating-btn::after {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 60%;

    height: 100%;

    background:

        linear-gradient(120deg,

            transparent,

            rgba(255, 255, 255, .55),

            transparent);

    transform: skewX(-25deg);

    transition: 1s;

}

.floating-btn:hover::after {

    left: 170%;

}


/*=========================
Floating Animation
==========================*/

@keyframes floaty {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}



/*=========================
Pulse Ring
==========================*/

@keyframes pulseRing {

    0% {

        transform: translate(-50%, -50%) scale(1);

        opacity: .6;

    }

    70% {

        transform: translate(-50%, -50%) scale(1.55);

        opacity: 0;

    }

    100% {

        opacity: 0;

    }

}



/*=========================
Slide In
==========================*/

@keyframes slideIn {

    0% {

        opacity: 0;

        transform: translateX(100px);

    }

    100% {

        opacity: 1;

        transform: translateX(0);

    }

}



/*=========================
Icon Bounce
==========================*/

.floating-btn:hover i {

    animation: bounce .6s;

}

@keyframes bounce {

    0% {

        transform: scale(1);

    }

    40% {

        transform: scale(1.3);

    }

    60% {

        transform: scale(.9);

    }

    100% {

        transform: scale(1);

    }

}



/*=========================
Mobile
==========================*/

@media(max-width:768px) {

    .floating-btn {

        right: 14px;

    }

    .floating-icon {

        width: 54px;

        height: 54px;

        font-size: 24px;

    }

    .floating-btn:hover .floating-text {

        max-width: 0;

        padding-right: 0;

    }

}

.searchbar {
    max-width: 680px;
    margin: 0 auto 24px
}

.searchbar input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 999px
}

.notice {
    background: #eef8ef;
    border: 1px solid #b7dfbd;
    color: #24572d;
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 18px
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh
}

.admin-sidebar {
    background: var(--navy2);
    color: #fff;
    padding: 24px
}

.admin-sidebar a {
    display: block;
    padding: 10px 0;
    color: #fff
}

.admin-main {
    padding: 30px
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff
}

.table th,
.table td {
    padding: 12px;
    border: 1px solid var(--line);
    text-align: left
}

.site-header {
    position: relative;
    z-index: 50
}

/* ===========================
   HEADER TOP BAR
=========================== */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    background: #04192d;
    color: #fff;
    font-size: 14px;
    flex-wrap: wrap;
}

.social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social span {
    color: #fff;
    font-weight: 600;
}

.social a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social a:hover {
    background: #D4AF37;
    color: #04192d;
}

/* ===========================
   NAVBAR
=========================== */


.navbar {
    height: 92px;
    background: linear-gradient(90deg, rgba(3, 22, 41, .98), rgba(9, 45, 70, .98));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(237, 196, 108, .2);
    padding: 0 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 260px;
    height: 70px;

    padding: 8px 14px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(212, 175, 55, .22);

    backdrop-filter: blur(12px);

    transition: .35s;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18);
}

.brand:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
    transition: .35s;
}

.brand:hover .brand-logo {
    transform: scale(1.05);
}


.footer-logo-only {
    width: 120px;
    height: 120px;

    border-radius: 50%;
    overflow: hidden;

    object-fit: cover;

    border: 3px solid #D4AF37;

    background: #fff;

    padding: 8px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18),
        0 0 20px rgba(212, 175, 55, .25);

    transition: .35s ease;
}

.footer-logo-only:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25),
        0 0 28px rgba(212, 175, 55, .4);
}


.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4px;
}

.brand-copy strong {
    font-size: 22px;
    font-family: Georgia, serif;
    color: #fff;
    line-height: 1.05;
    letter-spacing: .5px;
}

.brand-copy small {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37;
}

.nav-links {
    gap: 6px
}

.nav-links>a,
.nav-item>a {
    display: inline-flex;
    align-items: center;
    min-height: 74px;
    padding: 0 10px;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: #fff;
    white-space: nowrap;
    letter-spacing: .2px
}

.nav-links>a.active,
.nav-links>a:hover,
.nav-item.active>a,
.nav-item:hover>a {
    color: var(--gold2);
    border-color: var(--gold2);
    background: rgba(255, 255, 255, .04)
}

.nav-item {
    position: relative
}

.chevron {
    font-size: 10px;
    margin-left: 6px;
    color: var(--gold2)
}

.dropdown-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    width: 300px;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(201, 154, 69, .32);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(3, 22, 41, .26);
    padding: 10px;
    transition: .2s ease
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid rgba(201, 154, 69, .32);
    border-top: 1px solid rgba(201, 154, 69, .32);
    transform: translateX(-50%) rotate(45deg)
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0)
}

.dropdown-menu a {
    display: block;
    padding: 12px 12px;
    border-radius: 6px;
    border: 0;
    text-transform: none;
    min-height: auto;
    color: var(--ink)
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #fff7e4, #f8fbfb);
    color: var(--navy);
    border: 0
}

.dropdown-menu strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 16px;
    color: var(--navy)
}

.dropdown-menu span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px
}

/* Premium Call Button */
.quick-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 44px !important;
    min-height: 44px !important;
    padding: 0 22px;

    margin-left: 12px;

    border: 1.5px solid #D4AF37;
    border-radius: 50px;

    background: rgba(255, 255, 255, .04);

    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;

    transition: all .35s ease;

    position: relative;
    overflow: hidden;
}

/* Phone Icon */
.quick-call i {
    font-size: 14px;
    transition: .35s;
}

/* Hover */
.quick-call:hover {
    background: linear-gradient(135deg, #E9C76B, #C89A45);
    color: #08233d;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, .35);
}

.quick-call:hover i {
    transform: rotate(-18deg) scale(1.15);
}

/* Shine Effect */
.quick-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    transform: skewX(-25deg);
}

.quick-call:hover::before {
    animation: callShine .8s linear;
}

@keyframes callShine {
    from {
        left: -120%;
    }

    to {
        left: 180%;
    }
}

.book-link {

    height: 44px !important;
    min-height: 44px !important;

    padding: 0 22px;

    border-radius: 999px;

    margin-left: 12px;

    background: linear-gradient(135deg, #E9C76B, #C89A45);

    color: #06233d;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(201, 154, 69, .35);

    transition: .35s;

    animation: none;
}

.book-link:hover {

    transform: translateY(-5px);

    box-shadow:

        0 20px 40px rgba(212, 175, 55, .45);

}

.book-link:hover {

    transform: translateY(-2px);

    background: linear-gradient(135deg, #f5d983, #d4af37);

}

.book-link:hover::before {

    animation: shine .9s linear;

}

@keyframes shine {

    0% {

        left: -130%;

    }

    100% {

        left: 180%;

    }

}

.book-link {

    animation: goldGlow 3s infinite;
}

@keyframes goldGlow {

    0% {

        box-shadow: 0 0 18px rgba(212, 175, 55, .25);

    }

    50% {

        box-shadow:

            0 0 35px rgba(212, 175, 55, .65);

    }

    100% {

        box-shadow: 0 0 18px rgba(212, 175, 55, .25);

    }

}
.image-section {
    background: #f8fbfb;
}

.image-slot-grid,
.bank-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.image-slot,
.bank-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(18, 32, 51, .08);
    overflow: hidden;
    margin: 0;
}

.image-slot img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.image-slot figcaption,
.bank-card {
    padding: 18px;
}

.image-slot figcaption {
    font-weight: 800;
    color: var(--navy);
}

.payment-section {
    background: #f8fbfb;
}

.bank-grid {
    grid-template-columns: repeat(3, 1fr);
}

.bank-card h3 {
    font-family: Georgia, serif;
    color: var(--navy);
    margin-top: 0;
}

.bank-card p {
    margin: 8px 0;
}

@media (max-width:1180px) {
    .image-slot-grid,
    .bank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:760px) {
    .image-slot-grid,
    .bank-grid {
        grid-template-columns: 1fr;
    }
}


.enquiry-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enquiry-form label span,
.checkbox-group legend {
    display: block;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 6px;
}

.form-section-title {
    grid-column: 1 / -1;
    font-family: Georgia, serif;
    font-size: 22px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-top: 8px;
}

.checkbox-group {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 16px;
}

.checkbox-group legend {
    padding: 0 8px;
}

.checkbox-group label,
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input,
.consent-check input {
    width: auto;
    margin-top: 4px;
}

.full-span,
.submit-enquiry,
.enquiry-confirmation,
.error-notice {
    grid-column: 1 / -1;
}

.enquiry-confirmation pre {
    white-space: pre-wrap;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    color: var(--ink);
    font: inherit;
}

.error-notice {
    background: #fff1f1;
    border-color: #e9b4b4;
    color: #7b2525;
}

@media (max-width:760px) {
    .enquiry-form,
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media(max-width:1200px){

.footer-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
gap:35px;
}

.contact-band{
padding:35px 25px;
text-align:center;
justify-content:center;
}

.contact-content{
max-width:100%;
}

.contact-band h2{
font-size:28px;
}

.cta-row{
justify-content:center;
}

.copyright{
flex-direction:column;
text-align:center;
}
}

.upi-payment-card{
    margin-top:50px;
    background:#fff;
    border-radius:14px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.upi-payment-card h3{
    text-align:center;
    margin-bottom:10px;
    color:#0b2c4d;
}

.upi-payment-card>p{
    text-align:center;
    color:#666;
    margin-bottom:30px;
}

.upi-details{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.upi-qr img{
    width:250px;
    max-width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:10px;
    background:#fff;
}

.upi-info{
    min-width:260px;
}

.upi-info p{
    margin-bottom:18px;
    font-size:17px;
}

.upi-info strong{
    color:#0b2c4d;
}

.upi-info .btn{
    margin-top:15px;
}

.guest-box{
    margin:18px 0;
}

.guest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.guest-grid label{
    display:flex;
    flex-direction:column;
}

.guest-grid small{
    margin-bottom:6px;
    font-size:13px;
    color:#777;
}

.guest-grid select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-size:15px;
}

@media(max-width:768px){
    .guest-grid{
        grid-template-columns:1fr;
    }
}

/* ===========================
   Booking Form Mobile
=========================== */
@media (max-width:768px){

    .hero-booking{
        position:relative;
        margin:25px 15px 0;
    }

    .booking-form{
        display:flex;
        flex-direction:column;
        width:100%;
        border-radius:10px;
    }

    .booking-form label,
    .guest-box{
        width:100%;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.15);
        padding:18px;
    }

    .guest-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .guest-grid label{
        border:0;
        padding:0;
    }

    .booking-form button{
        width:calc(100% - 30px);
        margin:15px;
        height:52px;
    }
}