/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f8f5ef;
    overflow-x:hidden;
    color:#222;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2ede3;
}

::-webkit-scrollbar-thumb{
    background:#c8a03c;
    border-radius:20px;
}

/* =========================
   NAVBAR
========================= */

.navbar{

    position:fixed;

    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:95%;
    max-width:1400px;

    padding:16px 35px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:999;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

}

/* =========================
   LOGO
========================= */

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    height:65px;
    width:auto;

}

.logo span{

    font-family:'Cormorant Garamond',serif;

    font-size:32px;
    font-weight:700;

    color:#c8a03c;

    letter-spacing:1px;

}

/* =========================
   NAV LINKS
========================= */

.nav-links{

    display:flex;
    align-items:center;
    gap:55px;

}

.nav-links a{

    position:relative;

    color:#222;

    font-size:16px;
    font-weight:500;

    transition:.3s;

}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:#c8a03c;

    transition:.4s;

}

.nav-links a:hover{

    color:#c8a03c;

}

.nav-links a:hover::after{

    width:100%;

}

/* =========================
   NAV ACTIONS
========================= */

.nav-actions{

    display:flex;
    align-items:center;
    gap:15px;

}

.icon-btn{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:18px;

    transition:.4s ease;

}

.icon-btn:hover{

    transform:translateY(-5px) scale(1.05);

}

.whatsapp{

    background:#25D366;

    box-shadow:
    0 10px 20px rgba(37,211,102,.3);

}

.call{

    background:#c8a03c;

    box-shadow:
    0 10px 20px rgba(200,160,60,.3);

}

/* =========================
   MENU BUTTON
========================= */

.menu-btn{

    display:none;

    font-size:26px;

    color:#111;

    cursor:pointer;

}

/* =========================
   HERO SECTION
========================= */

.hero{

    position:relative;

    width:100%;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url("hero.webp");

    background-size:110%;
    background-position:center;

    animation:heroZoom 18s ease-in-out infinite alternate;

}

/* HERO ZOOM EFFECT */

@keyframes heroZoom{

    0%{

        background-size:110%;
        background-position:center;

    }

    100%{

        background-size:125%;
        background-position:top;

    }

}

/* HERO OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    );

}

/* HERO CONTENT */

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

    color:white;

}

/* HERO TAG */

.hero-tag{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    font-size:14px;
    letter-spacing:1px;

    margin-bottom:25px;

    border:1px solid rgba(255,255,255,.2);

}

/* HERO HEADING */

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:85px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

}

/* GOLDEN TEXT */

.hero h1 span{

    color:#d4af37;

}

/* HERO TEXT */

.hero p{

    font-size:18px;

    line-height:1.9;

    max-width:750px;

    margin:auto;

    margin-bottom:40px;

    color:rgba(255,255,255,.9);

}

/* HERO BUTTONS */

.hero-buttons{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

/* PRIMARY BUTTON */

.btn-primary{

    background:#c8a03c;

    color:white;

    padding:17px 38px;

    border-radius:60px;

    font-weight:600;

    transition:.4s ease;

    box-shadow:
    0 10px 25px rgba(200,160,60,.3);

}

.btn-primary:hover{

    transform:translateY(-5px);

    background:#b9912d;

}

/* SECONDARY BUTTON */

.btn-secondary{

    border:1px solid rgba(255,255,255,.5);

    color:white;

    padding:17px 38px;

    border-radius:60px;

    backdrop-filter:blur(10px);

    transition:.4s ease;

}

.btn-secondary:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.12);

}

/* =========================
   ABOUT PREVIEW
========================= */

.about-preview{

    padding:130px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    background:white;

}

/* IMAGE */

.about-image{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

}

.about-image img{

    transition:1s ease;

}

.about-image:hover img{

    transform:scale(1.08);

}

/* CONTENT */

.about-content{

    position:relative;

}

.section-tag{

    color:#c8a03c;

    font-weight:600;

    letter-spacing:2px;

    font-size:14px;

}

.about-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:65px;

    line-height:1.1;

    margin:20px 0 30px;

    color:#111;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

    font-size:16px;

}

/* OWNER BOX */

.owner-box{

    margin-top:35px;

    padding:35px;

    border-left:5px solid #c8a03c;

    background:#faf7ef;

    border-radius:25px;

}

.owner-box h4{

    font-size:24px;

    margin-bottom:15px;

    color:#111;

}

/* ABOUT BUTTON */

.about-btn{

    display:inline-block;

    margin-top:35px;

    padding:16px 35px;

    background:#c8a03c;

    color:white;

    border-radius:60px;

    font-weight:600;

    transition:.4s;

}

.about-btn:hover{

    transform:translateY(-5px);

    background:#b9912d;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

.hero h1{

    font-size:70px;

}

.about-content h2{

    font-size:52px;

}

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

/* NAVBAR */

.navbar{

    padding:16px 22px;

}

/* MOBILE MENU */

.nav-links{

    position:fixed;

    top:0;
    left:-100%;

    width:280px;
    height:100vh;

    background:white;

    flex-direction:column;

    justify-content:center;
    align-items:flex-start;

    gap:40px;

    padding-left:40px;

    transition:.5s ease;

    z-index:999;

    box-shadow:
    10px 0 40px rgba(0,0,0,.08);

}

.nav-links.active{

    left:0;

}

.nav-links a{

    font-size:22px;

}

/* SHOW MENU BUTTON */

.menu-btn{

    display:block;

}

/* HIDE DESKTOP MENU */

.hero h1{

    font-size:58px;

}

/* ABOUT SECTION */

.about-preview{

    grid-template-columns:1fr;

    gap:50px;

}

.about-content h2{

    font-size:50px;

}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.logo span{

    font-size:24px;

}

.logo img{

    height:38px;

}

.navbar{

    top:15px;

    width:94%;

    border-radius:80px;

}

.nav-actions{

    gap:10px;

}

.icon-btn{

    width:45px;
    height:45px;

    font-size:16px;

}

.hero{

    background-size:cover;

}

.hero h1{

    font-size:45px;

}

.hero p{

    font-size:15px;

}

.hero-buttons{

    gap:15px;

}

.btn-primary,
.btn-secondary{

    width:100%;

    max-width:280px;

}

.about-preview{

    padding:100px 6%;

}

.about-content h2{

    font-size:42px;

}

.owner-box{

    padding:25px;

}

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

.hero h1{

    font-size:36px;

}

.hero-tag{

    font-size:12px;

    padding:10px 20px;

}

.hero p{

    line-height:1.7;

}

.about-content h2{

    font-size:34px;

}

.nav-links{

    width:240px;

}

}

/* =========================
   NEW SECTION STYLES
========================= */

/* Shared Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: #111;
    margin-top: 10px;
}

/* =========================
   LUXURY STATS
========================= */
.luxury-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #111;
    color: #c8a03c;
    padding: 60px 8%;
    text-align: center;
}

.stat-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    margin-bottom: 5px;
}

.stat-box p {
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   BANQUET SHOWCASE
========================= */
.banquet-showcase {
    padding: 100px 8%;
    background: #f8f5ef;
}

.banquet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.banquet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.banquet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.banquet-card img {
    height: 350px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #111;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.features {
    display: flex;
    gap: 20px;
    color: #c8a03c;
    font-weight: 500;
}

.features i {
    margin-right: 5px;
}

/* =========================
   PREMIUM ROOMS
========================= */
.premium-rooms {
    padding: 100px 8%;
    background: white;
}

.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.room-card {
    display: flex;
    flex-direction: column;
}

.room-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.room-img img {
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}

.room-img:hover img {
    transform: scale(1.05);
}

.room-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-bottom: 15px;
}

.room-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.dark-btn {
    border: 1px solid #111;
    color: #111;
    display: inline-block;
}
.dark-btn:hover {
    background: #111;
    color: white;
}

/* =========================
   ULTRA-LUXURY GALLERY CSS
========================= */

.ultra-gallery-section {
    padding: 120px 8%;
    background-color: #050505; /* Deepest black for image pop */
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.ultra-gallery-grid {
    display: grid;
    /* 4 columns on large screens */
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px; 
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Base Item Style */
.ultra-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Grid Layout Spans (The Secret to Editorial Look) */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-portrait {
    grid-row: span 2;
}

.item-landscape {
    grid-column: span 2;
}

.item-square {
    grid-column: span 1;
    grid-row: span 1;
}

/* Image Cinematic Effect */
.ultra-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.ultra-gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.1);
}

/* Gold Gradient Overlay */
.ultra-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(212,175,55,0.1) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    transition: opacity 0.6s ease;
}

.ultra-gallery-item:hover .ultra-gallery-overlay {
    opacity: 1;
}

/* Text Animation Inside Overlay */
.overlay-text {
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ultra-gallery-item:hover .overlay-text {
    transform: translateY(0);
}

.overlay-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--ultra-gold, #d4af37);
    margin-bottom: 5px;
}

.overlay-text p {
    font-size: 14px;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* =========================
   RESPONSIVE GRID FOR GALLERY
========================= */
@media(max-width: 1024px) {
    .ultra-gallery-grid {
        gap: 15px;
        grid-auto-rows: 220px;
    }
}

@media(max-width: 992px) {
    /* Switch to 2 columns on tablets */
    .ultra-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
    
    .item-large { grid-column: span 2; grid-row: span 2; }
    .item-portrait { grid-column: span 1; grid-row: span 1; }
    .item-landscape { grid-column: span 2; grid-row: span 1; }
    .item-square { grid-column: span 1; grid-row: span 1; }
}

@media(max-width: 768px) {
    /* Switch to 1 column on mobile phones */
    .ultra-gallery-section {
        padding: 80px 5%;
    }
    
    .ultra-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    /* Reset all spans so they just stack naturally */
    .item-large, .item-portrait, .item-landscape, .item-square {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .overlay-text h4 { font-size: 26px; }
}
/* =========================
   ULTRA LIGHTBOX STYLES
========================= */
.ultra-lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999; /* Above everything */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 5, 5, 0.95); /* Deep black transparent */
    backdrop-filter: blur(15px); /* Glassmorphism blur */
}

/* Modal Content (Image) */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    
    /* Animation */
    animation-name: zoomIn;
    animation-duration: 0.6s;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #d4af37; /* Matte Gold */
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Caption (Image Title) */
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #d4af37;
    padding: 20px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Disable body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Mobile Adjustments */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
        max-width: none;
    }
    .lightbox-close {
        top: 15px;
        right: 25px;
        font-size: 40px;
    }
}

/* =========================
   ULTRA-LUXURY TESTIMONIALS CSS
========================= */
.ultra-testimonials-section {
    padding: 120px 8%;
    background-color: var(--ultra-dark, #0a0a0a);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.ultra-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.ultra-testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 50px 40px;
    border-radius: 15px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.ultra-testimonial-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.05);
}

.ultra-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(212, 175, 55, 0.08);
    transition: 0.5s ease;
}

.ultra-testimonial-card:hover .ultra-quote-icon {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.ultra-stars {
    color: var(--ultra-gold, #d4af37);
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.ultra-review-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 35px;
    min-height: 120px;
}

.ultra-reviewer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 5px;
}

.ultra-reviewer span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ultra-gold, #d4af37);
}

/* =========================
   ULTRA-LUXURY CTA BANNER CSS
========================= */
.ultra-cta-section {
    position: relative;
    background-color: #000;
}

.ultra-cta-parallax {
    padding: 150px 8%;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)), 
                url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ultra-cta-glass-box {
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.ultra-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 45px;
}

.ultra-cta-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.ultra-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--ultra-gold, #d4af37);
    color: var(--ultra-gold, #d4af37);
    border-radius: 4px;
    transition: 0.4s ease;
}

.ultra-btn-outline:hover {
    background: var(--ultra-gold, #d4af37);
    color: var(--ultra-dark, #0a0a0a);
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media(max-width: 1024px) {
    .ultra-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .ultra-testimonial-grid {
        grid-template-columns: 1fr;
    }
    .ultra-cta-glass-box {
        padding: 50px 30px;
    }
    .ultra-cta-actions {
        flex-direction: column;
    }
    .ultra-cta-actions a {
        width: 100%;
        justify-content: center;
    }
    .ultra-cta-parallax {
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }
}

/* =========================
   ULTRA-LUXURY FOOTER CSS
========================= */
.ultra-footer {
    background-color: #050505;
    color: #f5f5f5;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-family: 'Poppins', sans-serif;
}

/* Background subtle glow */
.ultra-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 1px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 100%);
}

.ultra-footer-top {
    padding: 100px 8% 60px;
}

.ultra-footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1fr;
    gap: 60px;
}

/* Brand Section */
.ultra-footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--ultra-gold, #d4af37);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.ultra-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
    font-weight: 300;
}

/* VIP Newsletter */
.ultra-newsletter {
    margin-top: 30px;
}

.newsletter-title {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ultra-gold, #d4af37);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    max-width: 350px;
    transition: border-color 0.4s ease;
}

.newsletter-form:focus-within {
    border-color: var(--ultra-gold, #d4af37);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--ultra-gold, #d4af37);
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

/* Common Headings */
.ultra-footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
}

/* Links Section */
.ultra-footer-links ul li {
    margin-bottom: 15px;
}

.ultra-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.ultra-footer-links a i {
    font-size: 10px;
    color: var(--ultra-gold, #d4af37);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.ultra-footer-links a:hover {
    color: var(--ultra-gold, #d4af37);
    transform: translateX(5px);
}

.ultra-footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.ultra-footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

.ultra-footer-contact .contact-icon {
    color: var(--ultra-gold, #d4af37);
    font-size: 18px;
    margin-top: 2px;
}

.ultra-footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.ultra-footer-contact a:hover {
    color: var(--ultra-gold, #d4af37);
}

/* Social Icons */
.ultra-footer-social p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.ultra-social-icons {
    display: flex;
    gap: 15px;
}

.ultra-social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
    background: transparent;
}

.ultra-social-icons a:hover {
    background: var(--ultra-gold, #d4af37);
    border-color: var(--ultra-gold, #d4af37);
    color: #050505;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Footer Bottom Bar */
.ultra-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
}

.ultra-footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 300;
}

.ultra-footer-legal {
    display: flex;
    gap: 20px;
}

.ultra-footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.ultra-footer-legal a:hover {
    color: var(--ultra-gold, #d4af37);
}

/* =========================
   RESPONSIVE DESIGN (FOOTER)
========================= */
@media(max-width: 1200px) {
    .ultra-footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
    .ultra-footer-social {
        grid-column: 1 / -1;
        margin-top: -20px;
    }
}

@media(max-width: 992px) {
    .ultra-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media(max-width: 768px) {
    .ultra-footer-top {
        padding: 80px 5% 40px;
    }
    .ultra-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ultra-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}




/* =========================
   NEW ABOUT & STATS SECTION CSS
========================= */

.new-about-wrapper {
    padding: 120px 8%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 80px;
    overflow: hidden;
}

.new-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image Hover Animation */
.new-about-image-wrapper {
    position: relative;
    border-radius: 30px;
    z-index: 1;
}

.new-about-img {
    border-radius: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.new-img-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #c8a03c;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.5s ease;
}

.new-about-image-wrapper:hover .new-about-img {
    transform: translateY(-10px) scale(1.02);
}

.new-about-image-wrapper:hover .new-img-border {
    top: 10px;
    left: -10px;
    border-color: #b9912d;
    box-shadow: 0 10px 30px rgba(200,160,60,0.3);
}

/* Content Styling */
.new-section-tag {
    display: inline-block;
    color: #c8a03c;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    background: #faf7ef;
    padding: 8px 15px;
    border-radius: 20px;
}

.new-about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
    min-height: 130px; /* Prevents layout shift during typing */
}

/* Typing Cursor Effect */
.typing-container::after {
    content: '|';
    color: #c8a03c;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.new-about-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

/* Owner Box Hover Effect */
.new-owner-box {
    margin-top: 30px;
    padding: 30px;
    background: #faf7ef;
    border-left: 4px solid #c8a03c;
    border-radius: 0 20px 20px 0;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.new-owner-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    background: #fff;
    border-left-width: 8px;
}

.quote-icon i {
    color: #c8a03c;
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.new-owner-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.new-owner-box p {
    font-style: italic;
    color: #666;
}

/* Button Animation */
.new-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    padding: 16px 35px;
    background: #c8a03c;
    color: white;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(200,160,60,0.2);
}

.new-about-btn i {
    transition: transform 0.3s ease;
}

.new-about-btn:hover {
    background: #111;
    box-shadow: 0 10px 25px rgba(17,17,17,0.2);
    transform: translateY(-3px);
}

.new-about-btn:hover i {
    transform: translateX(5px);
}

/* Stats Container with Hover Animation */
.new-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #111;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.new-stat-box {
    text-align: center;
    color: white;
    transition: transform 0.4s ease;
    padding: 20px;
    border-radius: 20px;
}

.new-stat-box:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.05);
}

.stat-icon {
    font-size: 35px;
    color: #c8a03c;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.new-stat-box:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.new-stat-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    margin-bottom: 5px;
    color: #c8a03c;
}

.new-stat-box p {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

/* Responsive Styles for New Section */
@media(max-width: 992px) {
    .new-about-container {
        grid-template-columns: 1fr;
    }
    .new-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .new-img-border {
        display: none;
    }
}

@media(max-width: 768px) {
    .new-about-wrapper {
        padding: 80px 5%;
    }
    .new-about-content h2 {
        font-size: 40px;
        min-height: 90px;
    }
    .new-stats-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}






/* =========================
   ULTRA-LUXURY BANQUET & ROOMS CSS
========================= */
:root {
    --ultra-gold: #d4af37;
    --ultra-dark: #0a0a0a;
    --ultra-glass: rgba(255, 255, 255, 0.05);
}

.ultra-banquet-section, .ultra-rooms-section {
    padding: 120px 8%;
    background-color: var(--ultra-dark);
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* Background Texture */
.ultra-banquet-section::before, .ultra-rooms-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.ultra-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.ultra-tagline {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 13px;
    color: var(--ultra-gold);
    display: block;
    margin-bottom: 20px;
}

.ultra-typing-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 65px;
    font-weight: 300;
    color: #fff;
    min-height: 80px;
}

.ultra-typing-text::after {
    content: '|';
    color: var(--ultra-gold);
    animation: blink 0.7s infinite;
}

.ultra-divider {
    width: 60px;
    height: 2px;
    background: var(--ultra-gold);
    margin: 25px auto;
}

.ultra-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- CINEMATIC TILED VENUES --- */
.ultra-tiled-container {
    display: flex;
    gap: 20px;
    height: 550px;
    position: relative;
    z-index: 1;
}

.ultra-venue-tile {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Magic Hover Effect */
.ultra-venue-tile:hover {
    flex: 2.5; /* Image expands automatically */
}

.ultra-venue-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(20%);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ultra-venue-tile:hover img {
    filter: brightness(0.9) grayscale(0%);
    transform: scale(1.05);
}

.ultra-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.ultra-tile-content {
    transform: translateY(30px);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.ultra-venue-tile:hover .ultra-tile-content {
    transform: translateY(0);
    opacity: 1;
}

.ultra-tile-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: var(--ultra-gold);
    margin-bottom: 15px;
}

.ultra-tile-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    max-width: 500px;
}

.ultra-btn {
    color: var(--ultra-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: 0.3s;
}

.ultra-btn:hover {
    border-color: var(--ultra-gold);
    letter-spacing: 3px;
}

/* --- EDITORIAL BLEED LAYOUT (ROOMS) --- */
.ultra-bleed-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ultra-bleed-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--ultra-gold);
    margin-bottom: 25px;
}

.ultra-bleed-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-weight: 300;
}

.ultra-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.ultra-amenities li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 300;
}

.amenity-icon {
    width: 45px;
    height: 45px;
    background: var(--ultra-glass);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ultra-gold);
    transition: 0.4s;
}

.ultra-amenities li:hover .amenity-icon {
    background: var(--ultra-gold);
    color: var(--ultra-dark);
    transform: rotate(10deg) scale(1.1);
}

.ultra-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.ultra-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--ultra-gold);
}

.ultra-btn-solid {
    background: var(--ultra-gold);
    color: var(--ultra-dark);
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.4s;
}

.ultra-btn-solid:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.ultra-bleed-image {
    position: relative;
    height: 600px;
}

.ultra-bleed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.ultra-image-frame {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--ultra-gold);
    border-radius: 10px;
    z-index: 1;
    transition: 0.5s ease;
}

.ultra-bleed-image:hover .ultra-image-frame {
    top: 15px;
    right: -15px;
}

/* --- RESPONSIVE --- */
@media(max-width: 992px) {
    .ultra-tiled-container {
        flex-direction: column;
        height: 800px;
    }
    .ultra-bleed-layout {
        grid-template-columns: 1fr;
    }
    .ultra-image-frame {
        display: none;
    }
}
@media(max-width: 768px) {
    .ultra-typing-text { font-size: 45px; }
    .ultra-amenities { grid-template-columns: 1fr; }
    .ultra-action-row { flex-direction: column; align-items: flex-start; }
}