* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}
a
{
    text-decoration:none;
}
.footer p,
.footer li
{
    font-size:17px;
    margin-bottom:10px;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h2 {
    font-size: 56px;
    margin-bottom: 16px;
    color: #1a2b3c;
}

.section-heading p {
    font-size: 18px;
    color: #5a6e7c;
    max-width: 800px;
    margin: 0 auto;
    line-height: 26px;
}

/* =========================
   NAVBAR
========================= */

.top-navbar{
    width:100%;
    background:#570c5dd9;
    color:white;
    padding:0px 0;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.logo img{
    height:150px;
    width:100%;
}

/* =========================
   MENU
========================= */

.top-menu{
    display:flex;
    align-items:center;
    gap:18px;
    list-style:none;
}

.top-menu li{
    list-style:none;
}

.top-menu li a{
    text-decoration:none;
    color:white;
    font-size:17px;
    font-weight:600;
    transition:0.3s ease;
}

.top-menu li a:hover{
    color:#D2AA56;
}

/* =========================
   RIGHT AREA
========================= */

.right-area{
    display:flex;
    align-items:center;
    gap:18px;
}

/* =========================
   PHONE NUMBER
========================= */

.nav-phone{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:white;
    font-size:20px;
    font-weight:600;
    transition:0.3s ease;
}

.nav-phone i{
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    border-radius:50%;
    background:#f3e8ff;
    color:#7B2CBF;
    font-size:16px;
    transition:0.3s ease;
}

.nav-phone:hover{
    color:#D2AA56;
}

.nav-phone:hover i{
    background:#D2AA56;
    color:#fff;
}

/* =========================
   BUTTON
========================= */

.book-btn{
    background:white;
    color:#570c5dd9;
    border:none;
    padding:14px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.book-btn:hover{
    background:#D2AA56;
    transform:translateY(-2px);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
    display:none;
    font-size:24px;
    cursor:pointer;
    color:#222;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .top-menu{
        gap:18px;
    }

    .nav-phone{
        font-size:14px;
    }
}

@media(max-width:992px){

    .top-navbar{
        position:relative;
    }

    .top-menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:15px 0;
        margin:0;
        list-style:none;
        z-index:9999;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
    }

    .top-menu.show{
        display:flex;
    }

    .top-menu li{
        width:100%;
        text-align:center;
    }

    .top-menu li a{
        display:block;
        padding:12px 20px;
        color:#333;
        text-decoration:none;
    }

    .top-menu li a:hover{
        background:#f5f5f5;
    }
}


@media(max-width:576px){

    .logo img{
        height:50px;
    }

    .book-btn{
        padding:12px 20px;
        font-size:13px;
    }

    .mobile-menu{
        font-size:22px;
    }
}
/* Hero */
section.hero {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.75);
    transition: transform 8s ease;
}

.hero:hover img {
    transform: scale(1.03);
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Dark banner overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
}

/* Text background overlay box */
.hero-overlay h1,
.hero-overlay p {
    background: rgb(0 0 0 / 13%);
    backdrop-filter: blur(4px);
    padding: 12px 25px;
    border-radius: 12px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    max-width: 1100px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-top: 0;
}

/* Sections */
section {
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.two-col {
    display: flex;
    align-items: center;
    gap: 50px;
}

.two-col.reverse {
    flex-direction: row-reverse;
}

.col-content {
    flex: 1;
}

.col-content h3 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 42px;
    color: #1a2b3c;
}

.col-content p {
    color: #5a6e7c;
    line-height: 34px;
    margin-bottom: 20px;
    font-size: 18px;
}

.col-media {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

.col-media img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Slider arrows */
.slider-arrow, .business-arrow, .venue-arrow, .origin2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
    color: #1a2b3c;
}

.slider-arrow:hover, .business-arrow:hover, .venue-arrow:hover, .origin2-arrow:hover {
    background: #7B2CBF;
    color: white;
}

.left, .left2, .prev3, .prev4 { left: 15px; }
.right, .right2, .next3, .next4 { right: 15px; }

/* =====================================
   PREMIUM SECTION ENHANCEMENTS
===================================== */

/* SECTION SPACING */

.wedding-events,
.business-meeting{
    position: relative;
    overflow: hidden;
}

/* Purple ambient glow */

.wedding-events::before,
.business-meeting::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(123,44,191,0.08);
    filter:blur(90px);
    z-index:0;
}

.wedding-events::before{
    top:-120px;
    right:-100px;
}

.business-meeting::before{
    bottom:-120px;
    left:-100px;
}

/* Keep content above glow */

.two-col{
    position:relative;
    z-index:2;
}

/* =====================================
   IMAGE PREMIUM EFFECT
===================================== */

.col-media{
    transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;

    animation:floating 5s ease-in-out infinite;

    border-radius:28px;
    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.10),
    0 5px 15px rgba(123,44,191,0.10);
}

/* Floating animation */

@keyframes floating{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* Hover lift */

.col-media:hover{
    transform:translateY(-10px) scale(1.01);

    box-shadow:
    0 25px 45px rgba(0,0,0,0.18),
    0 10px 25px rgba(123,44,191,0.20);
}

/* Image zoom */

.col-media img{
    transition:transform 0.8s ease;
}

.col-media:hover img{
    transform:scale(1.08);
}

/* Overlay gradient */

.col-media::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.30),
        rgba(0,0,0,0.02)
    );

    pointer-events:none;
}

/* Purple border glow */

.col-media::before{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid rgba(123,44,191,0.25);
    border-radius:28px;
    z-index:2;
    pointer-events:none;
}

/* =====================================
   CONTENT EFFECTS
===================================== */

.col-content{
    position:relative;
}

/* Animated accent line */

.col-content::before{
    content:"";
    position:absolute;
    top:-10px;
    left:0;
    width:75px;
    height:4px;
    border-radius:50px;
   background: linear-gradient(
    90deg,
    #570c5d,
    #570c5dd9
);

    animation:lineMove 3s linear infinite;
}

@keyframes lineMove{
    0%{
        width:40px;
    }

    50%{
        width:90px;
    }

    100%{
        width:40px;
    }
}

/* Heading animation */

.col-content h3{
    transition:0.4s ease;
}

.two-col:hover .col-content h3{
    color:#570c5dd9;
    transform:translateX(5px);
}

/* Paragraph smooth */

.col-content p{
    transition:0.4s ease;
}

.two-col:hover .col-content p{
    color:#4c5665;
}

/* =====================================
   PREMIUM SLIDER BUTTONS
===================================== */

.slider-arrow,
.business-arrow{
    backdrop-filter:blur(12px);

    background:rgba(255,255,255,0.22);

    border:1px solid rgba(255,255,255,0.25);

    transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover animation */

.slider-arrow:hover,
.business-arrow:hover{
    background:#7B2CBF;

    transform:
    translateY(-50%)
    scale(1.12);

    box-shadow:
    0 10px 25px rgba(123,44,191,0.45);
}

/* Button click effect */

.slider-arrow:active,
.business-arrow:active{
    transform:
    translateY(-50%)
    scale(0.95);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

    .col-media{
        animation:none;
    }

    .col-media:hover{
        transform:none;
    }

    .col-media img{
        height:350px;
    }

    .col-content::before{
        top:-5px;
    }
}
/* =========================
   AMENITIES SECTION
========================= */

.amenities-section{
    padding:90px 7%;
    background:#fafafa;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}
/* =========================
   GRID
========================= */

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr); /* 5 CARDS IN ONE ROW */
    gap:25px;
}

/* =========================
   CARD
========================= */

.amenity-card{
    background:#ffffff;
    padding:35px 18px;
    text-align:center;
    border-radius:22px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.4s ease;
    border:1px solid #f1f1f1;
    position:relative;
    overflow:hidden;
}

/* HOVER EFFECT */

.amenity-card:hover{
    transform:translateY(-8px);
    border-color:#b88a44;
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}


.amenity-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#f3e8ff; 
    font-size:34px;
    color:#570c5dd9; 
    margin-bottom:20px;
    transition:0.4s ease;
}



.amenity-card:hover i{
    background:#570c5dd9; 
    color:#fff;
    transform:rotateY(180deg);
}

/* CARD HOVER */

.amenity-card:hover{
    transform:translateY(-8px);
    border-color:#7B2CBF;
    box-shadow:0 18px 35px rgba(123,44,191,0.18);
}
/* TITLE */

.amenity-card h4{
    font-size:20px;
    line-height:1.5;
    font-weight:600;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */

/* LAPTOP */

@media(max-width:1200px){

    .amenities-grid{
        grid-template-columns:repeat(4, 1fr);
    }

}

/* TABLET */

@media(max-width:992px){

    .amenities-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

/* MOBILE TABLET */

@media(max-width:768px){

    .amenities-section{
        padding:70px 5%;
    }

    .amenities-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .amenity-card{
        padding:30px 15px;
    }

    .amenity-card i{
        width:70px;
        height:70px;
        line-height:70px;
        font-size:28px;
    }

    .amenity-card h4{
        font-size:16px;
    }

}

/* MOBILE */

@media(max-width:480px){

    .amenities-grid{
        grid-template-columns:1fr;
    }

}
/* =========================
   VENUES SECTION
========================= */

.venues-section{
    width:100%;
    padding:70px 5%;
    background:#fafafa;
    overflow:hidden;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading h2{
    font-size:42px;
    color:#570c5dd9;
    font-weight:700;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-heading p{
    font-size:16px;
    color:#666;
    line-height:1.7;
    max-width:700px;
    margin:auto;
}

/* =========================
   TABLE WRAPPER
========================= */

.table-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    overflow-x:auto;
}

/* =========================
   TABLE
========================= */

.venue-table{
    width:100%;
    max-width:700px;
    border-collapse:collapse;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* =========================
   TABLE HEADER
========================= */

.venue-table thead{
    background:#570c5dd9;
}

.venue-table th{
    color:#fff;
    padding:20px 18px;
    font-size:18px;
    font-weight:600;
    text-align:center;
    border:none;
    letter-spacing:0.5px;
}

/* =========================
   TABLE BODY
========================= */

.venue-table td{
    padding:18px 16px;
    text-align:center;
    border-bottom:1px solid #eee;
    font-size:16px;
    color:#444;
    transition:0.3s ease;
}

/* ROW HOVER */

.venue-table tbody tr{
    transition:0.3s ease;
}

.venue-table tbody tr:hover{
    background:#faf5ff;
}

/* LAST ROW */

.venue-table tbody tr:last-child td{
    border-bottom:none;
}

/* FIRST COLUMN */

.venue-table td:first-child{
    font-weight:600;
    color:#222;
}

/* SECOND COLUMN */

.venue-table td:last-child{
    color:#570c5dd9;
    font-weight:700;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:992px){

    .venues-section{
        padding:60px 5%;
    }

    .section-heading h2{
        font-size:36px;
    }

    .section-heading p{
        font-size:15px;
    }

    .venue-table{
        max-width:650px;
    }

    .venue-table th{
        font-size:16px;
        padding:18px 14px;
    }

    .venue-table td{
        font-size:15px;
        padding:16px 14px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .venues-section{
        padding:55px 4%;
    }

    .section-heading{
        margin-bottom:35px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:14px;
        line-height:1.6;
    }

    .table-wrapper{
        overflow-x:auto;
    }

    .venue-table{
        width:100%;
        max-width:100%;
        border-radius:18px;
    }

    .venue-table th{
        font-size:15px;
        padding:15px 12px;
    }

    .venue-table td{
        font-size:14px;
        padding:15px 12px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .venues-section{
        padding:50px 4%;
    }

    .section-heading h2{
        font-size:26px;
    }

    .section-heading p{
        font-size:13px;
    }

    .venue-table{
        border-radius:16px;
    }

    .venue-table th{
        font-size:14px;
        padding:14px 10px;
    }

    .venue-table td{
        font-size:13px;
        padding:14px 10px;
    }
}
/* ============================================
   CONTACT SECTION
============================================ */

.query-section {
    padding: 20px 0;
    background: #fafafa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}

/* FORM BOX */

.query-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* MAP */

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FORM */

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c59d5f;
    box-shadow: 0 0 8px rgba(197,157,95,0.25);
}

.form-group textarea {
    resize: none;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* CHECKBOX */

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-row label {
    font-size: 15px;
    line-height: 1.5;
}
/* =========================
   BUTTON
========================= */

.submit-area{
    text-align:center;
    margin-top:30px;
}

.submit-btn{
    background:#570c5dd9;
    color:#fff;
    border:none;
    padding:16px 45px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.submit-btn:hover{
    background:#D2AA56;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 576px) {

    .query-form-wrapper {
        padding: 25px;
    }

    .query-section {
        padding: 70px 0;
    }
}

.floating {
    position: relative;
}

.floating input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: transparent;
}

/* label inside input */
.floating label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    background: white;
    padding: 0 5px;
    transition: 0.3s;
    pointer-events: none;
}

/* when focus or value selected */
.floating input:focus + label,
.floating input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #c59d5f;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    display:none;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:2000;
}

.gallery-modal.active{
    display:flex;
}
.modal-image{
    width:auto;
    height:auto;
    max-width:90vw;
    max-height:90vh;
    object-fit:contain;
    border-radius:12px;
    display:block;
    margin:auto;
}
.close-gallery {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 28px;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}
.modal-prev { left: 20px; }
.modal-next { right: 20px; }


/* Footer */
.footer {
    background: #570c5dd9;
    color: #ddd;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.footer-column h3 {
    margin-bottom: 18px;
    color: white;
}
.footer-column ul { list-style: none; }
.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.footer-column ul li a:hover { color: #D2AA56; }
.social-icons a {
    background: #2c3e4e;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    color: white;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #D2AA56;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    h2 { font-size: 45px; }
    .hero-overlay h1 { font-size: 48px; }
}

@media (max-width: 768px) {

    /* Base font size for all mobile text */
    body {
        font-size: 14px;
    }

    p, a, li, td, th, label, input, select, textarea, span, button {
        font-size: 14px;
    }

    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }


    .col-content h3 { font-size: 22px; line-height: 30px; }
    .col-content p { font-size: 14px; line-height: 22px; }

    /* ── Navbar: logo + hamburger + book btn all on ONE line ── */
    .nav-wrapper {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* right-area: book btn + hamburger side by side, never wrap */
    .right-area {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .book-btn {
        padding: 7px 12px;
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    /* Dropdown menu */
    .top-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 15px;
        text-align: center;
        z-index: 999;
    }

    .top-menu.show {
        display: flex;
    }

    .top-menu a {
        font-size: 14px;
    }

    /* Layout */
    .two-col, .two-col.reverse { flex-direction: column; text-align: center; gap: 30px; }
    .hero { height: 320px; }
    .hero-overlay h1 { font-size: 26px; }
    .hero-overlay p { font-size: 14px; margin-top: 8px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .query-form-wrapper { padding: 25px 20px; }
    section { padding: 60px 0; }
    .container { padding: 0 20px; }
    .col-media img { max-height: 300px; }

    .popup-content h3 { font-size: 22px; }
    .submit-btn { font-size: 14px; }
    .error { font-size: 12px; }
}

@media (max-width: 480px) {
    h2 { font-size: 20px;font-weight:500; }
    .hero-overlay h1 { font-size: 30px;font-weight:600; }
    .logo-text { font-size: 13px; }
    .logo img { width: 60px; height: 60px; }
    .book-btn { padding: 15px 15px; font-size: 14px; }
    .container { padding: 0 16px; }
    .right-area { gap: 20px; }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    width:100%;
    padding:100px 8%;
    background:#fff;
    overflow:hidden;
}

.about-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* =========================
   LEFT CONTENT
========================= */

.about-content{
    flex:0 0 47%;
}

.about-subtitle{
    display:inline-block;
    font-size:36px;
    font-weight:700;
    letter-spacing:1px;
    color:#570c5dd9;
    margin-bottom:15px;
    /*text-transform:uppercase;*/
}

.about-content h2{
    font-size:48px;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:15px 35px;
    background:#b88a44;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.about-btn:hover{
    background:#111;
    transform:translateY(-3px);
}

/* =========================
   RIGHT IMAGE
========================= */

.about-image{
    flex:0 0 53%;
    position:relative;
}

/* IMAGE WRAPPER */

.image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    height:720px; /* BIG IMAGE HEIGHT */
}

/* IMAGE */

.image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:25px;
    transition:0.6s ease;
}

/* IMAGE HOVER EFFECT */

.image-wrapper:hover img{
    transform:scale(1.08);
}

/* =========================
   FLOATING BOX
========================= */

.floating-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:20px 28px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    animation:floatBox 3s ease-in-out infinite;
}

.floating-box h3{
    font-size:32px;
    color:#b88a44;
    margin-bottom:5px;
}

.floating-box span{
    font-size:15px;
    color:#444;
    font-weight:500;
}

/* FLOAT ANIMATION */

@keyframes floatBox{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================
   RESPONSIVE
========================= */

/* LARGE TABLETS */

@media(max-width:1200px){

    .about-content h2{
        font-size:42px;
    }

    .image-wrapper{
        height:650px;
    }
}

/* TABLETS */

@media(max-width:992px){

    .about-section{
        padding:80px 6%;
    }

    .about-container{
        flex-direction:column-reverse;
        gap:50px;
    }

    .about-content{
        flex:100%;
        text-align:center;
    }

    .about-image{
        flex:100%;
        width:100%;
    }

    .image-wrapper{
        height:600px;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-content p{
        font-size:16px;
    }

    .floating-box{
        left:50%;
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .about-section{
        padding:70px 5%;
    }

    .image-wrapper{
        height:500px;
    }

    .about-content h2{
        font-size:30px;
        line-height:1.3;
    }

    .about-content p{
        font-size:15px;
        line-height:1.8;
    }

    .about-btn{
        padding:14px 30px;
        font-size:15px;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){

    .about-section{
        padding:60px 5%;
    }

    .image-wrapper{
        height:420px;
        border-radius:20px;
    }

    .image-wrapper img{
        border-radius:20px;
    }

    .about-content h2{
        font-size:26px;
    }

    .about-content p{
        font-size:14px;
    }

    .floating-box{
        width:80%;
        text-align:center;
        padding:16px;
        bottom:20px;
        left:50%;
        transform:translateX(-50%);
    }

    .floating-box h3{
        font-size:24px;
    }

    .floating-box span{
        font-size:14px;
    }
}

.popup-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2001;
    justify-content: center;
    align-items: center;
}
.popup-modal.show {
    display: flex;
}
 
.popup-content {
    background: white;
    max-width: 520px;
    width: 100%;
    padding: 30px 44px;
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    animation: fadeInUp 0.4s ease;
}
 
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
.popup-close {
    position: absolute;
    top: 12px; right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.popup-close:hover { color: #333; }
 
/* Tighter heading & sub-text */
.popup-content h3 {
    font-size: 25px;
    margin: 0 0 4px 0;
    color: #570c5dd9;
    font-weight:600;
    text-align:center;
}
.popup-content p {
    font-size: 13px;
    margin: 0 0 12px 0;
    color: #666;
}
 
/* Tighter form groups */
.form-group {
    margin-bottom: 10px;
}
 
/* Smaller input height */
#popupForm input,
#popupForm select,
#popupForm textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
#popupForm input:focus,
#popupForm select:focus,
#popupForm textarea:focus {
    border-color: #c59d5f;
    box-shadow: 0 0 6px rgba(197,157,95,0.3);
}
 
/* Shorter textarea — no resize */
#popupForm textarea {
    rows: 2;
    height: 70px;
    resize: none;
}
 
/* Submit button */
.popup-submit {
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
 

    /* CALL BUTTON - LEFT */
    .float-call {
      position: fixed;
      bottom: 25%;
      left: 20px;
      background: #e53935;
      color: #fff;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(229,57,53,0.5);
      animation: pulse-red 2s infinite;
      z-index: 9999;
      transition: transform 0.2s;
    }
    .float-call:hover { transform: scale(1.12); }
    @keyframes pulse-red {
      0%   { box-shadow: 0 0 0 0 rgba(229,57,53,0.6); }
      70%  { box-shadow: 0 0 0 12px rgba(229,57,53,0); }
      100% { box-shadow: 0 0 0 0 rgba(229,57,53,0); }
    }
 
    /* WHATSAPP BUTTON - RIGHT */
    .float-whatsapp {
      position: fixed;
      bottom: 25%;
      right: 20px;
      background: #25d366;
      color: #fff;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(37,211,102,0.5);
      animation: pulse-green 2s infinite;
      z-index: 9999;
      transition: transform 0.2s;
    }
    .float-whatsapp:hover { transform: scale(1.12); }
    @keyframes pulse-green {
      0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
      70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }
    
 .thank-you-box{
            background:#fff;
            padding:50px 40px;
            border-radius:20px;
            text-align:center;
            width:100%;
            box-shadow:0 10px 40px rgba(0,0,0,0.08);
        }

        .thank-you-box i{
            font-size:70px;
            color:#28a745;
            margin-bottom:25px;
        }

        .thank-you-box h1{
            font-size:42px;
            margin-bottom:15px;
            color:#222;
        }

        .thank-you-box p{
            font-size:18px;
            color:#666;
            line-height:1.7;
            margin-bottom:30px;
        }

        .thank-you-btn{
            display:inline-block;
            padding:14px 30px;
            background:#7B2CBF;
            color:#fff;
            text-decoration:none;
            border-radius:10px;
            font-size:16px;
            font-weight:600;
            transition:0.3s;
        }

        .thank-you-btn:hover{
            background:#551B8C;
        }

        @media(max-width:576px){

            .thank-you-box{
                padding:40px 25px;
            }

            .thank-you-box h1{
                font-size:32px;
            }

            .thank-you-box p{
                font-size:16px;
            }
        }
