/* ===========================
   GLOBAL RESET & BASE
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #fff;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent all images from overflowing */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   FIXED HEADER
=========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
      background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.header-logo img {
    height: 40px;
    width: auto;
}

/* ===========================
   HERO - ASYMMETRIC LAYOUT
=========================== */
.hero-asymmetric {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-left-panel {
    background: #ffffff;
    padding: 6rem 4rem 4rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #f1c40f;
    color: #1a1a1a;
    padding: 0.6rem 1.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    width: fit-content;
    border-radius: 30px;
}

.hero-main-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    letter-spacing: -4px;
}

.highlight-text {
    color: #f1c40f;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 520px;
}

.cta-button {
    background: #f1c40f;
    color: #1a1a1a;
    padding: 1.3rem 3.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-button:hover {
    background: #f39c12;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.6);
}

.hero-right-image {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35)),
                      url('images/VINCITORE.png');
    background-size: cover;
    background-position: center;
    object-fit: contain;
    background-repeat: no-repeat;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.floating-stats {
    position: absolute;
    bottom: 8%;
    left: 20%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-bubble {
    background: rgba(241, 196, 15, 0.95);
    padding: 1.8rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.stat-bubble strong {
    display: block;
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.stat-bubble span {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* ===========================
   MARQUEE STRIP
=========================== */
.marquee-container {
   background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: #f1c40f;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-content i {
    font-size: 1.3rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT - DIAGONAL LAYOUT
=========================== */
.about-diagonal {
    position: relative;
    padding: 8rem 4rem;
    background: #f8f9fa;
    overflow: hidden;
    width: 100%;
}

.diagonal-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.diagonal-text-area {
    padding-right: 2rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gold {
    color: #f1c40f;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.feature-list-modern {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-list-modern li {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list-modern i {
    color: #f1c40f;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.diagonal-image-area {
    position: relative;
    width: 100%;
}

.image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.image-stack img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.image-stack img:hover {
    transform: translateY(-10px) scale(1.05);
}

.diagonal-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #f1c40f;
    opacity: 0.05;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* ===========================/* ============================
   AMENITIES - FULL WIDTH CARDS
   GOLD–PASTEL PREMIUM THEME
============================ */

.amenities-fullwidth {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf7e8 100%);
    overflow: hidden;
    width: 100%;
}

/* ---------- Section Headings ---------- */
.section-title-center {
    font-size: 3.8rem;
    font-weight: 900;
    text-align: center;
    color: #1b1b1b;
    letter-spacing: 1px;
    
    margin-bottom: 1rem;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.2rem;
    color: #6f7a82;
    margin-bottom: 5rem;
    letter-spacing: 0.5px;
}

/* ---------- GRID ---------- */
.amenity-grid-modern {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
/* ---------- CARD DESIGN ---------- */
.amenity-card-wide {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 3.5rem 2.8rem;
    border-radius: 22px;
    text-align: center;
    border: 2px solid rgba(241, 196, 15, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Light Sweep Overlay */
.amenity-card-wide:before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 180%;
    background: linear-gradient(
        135deg,
        rgba(241, 196, 15, 0.15) 0%,
        rgba(241, 196, 15, 0.3) 50%,
        rgba(243, 156, 18, 0.1) 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
}

/* ---------- HOVER EFFECT ---------- */
.amenity-card-wide:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: #f1c40f;
    background: linear-gradient(135deg, #000000 0%, #18222c 100%);
    box-shadow: 0 28px 55px rgba(241, 196, 15, 0.45);
}

.amenity-card-wide:hover:before {
    top: 0;
    opacity: 1;
}

/* ---------- ICON DESIGN ---------- */
.amenity-icon-modern {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.2rem;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.4);
}

.amenity-card-wide:hover .amenity-icon-modern {
    transform: rotateZ(360deg) scale(1.15);
    box-shadow: 0 15px 35px rgba(241, 196, 15, 0.65);
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.amenity-icon-modern i {
    font-size: 2.7rem;
    color: #1a1a1a;
    transition: 0.3s ease;
}

.amenity-card-wide:hover .amenity-icon-modern i {
    color: #000;
}

/* ---------- TEXT ---------- */
.amenity-card-wide h3 {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.amenity-card-wide:hover h3 {
    color: #f1c40f;
}

.amenity-card-wide p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
    transition: color 0.3s ease;
}

.amenity-card-wide:hover p {
    color: #ecf0f1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .amenity-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .amenity-grid-modern {
        grid-template-columns: 1fr;
    }

    .section-title-center {
        font-size: 2.5rem;
    }
    
    .amenity-card-wide {
        padding: 2.5rem 2rem;
    }
    
    .amenity-icon-modern {
        width: 80px;
        height: 80px;
    }
    
    .amenity-icon-modern i {
        font-size: 2.2rem;
    }
}


/* ===========================
   GALLERY - OVERLAPPING GRID
=========================== */
.gallery-overlap {
    padding: 8rem 4rem;
    background: #ffffff;
    overflow: hidden;
    width: 100%;
}

.gallery-overlap .section-title-center {
    color: #1a1a1a;
}

.gallery-overlap .section-subtitle-center {
    color: #7f8c8d;
}

.overlap-gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.gallery-item-overlap {
    position: relative;
    height: 350px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item-overlap:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(241, 196, 15, 0.4);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item-overlap:hover .gallery-label {
    transform: translateY(0);
}

/* ===========================
   FEATURES - SPLIT DESIGN
=========================== */
.features-split {
    background: #f8f9fa;
    overflow: hidden;
    width: 100%;
}

.feature-split-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    overflow: hidden;
}

.feature-split-item.reverse {
    direction: rtl;
}

.feature-split-item.reverse > * {
    direction: ltr;
}

.feature-split-content {
    background: #fff;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-split-content h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.feature-split-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.feature-split-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.feature-split-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(26, 26, 26, 0.2));
}

/* ===========================
   CONTACT - LUXURY REDESIGN
=========================== */
.contact-section-modern {
    position: relative;
    padding: 8rem 4rem;
    background: #d5cd678c;
    overflow: hidden;
    width: 100%;
}

/* Blurred background overlay for entire section */
.contact-section-modern::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    right: 0; 
    bottom: 0;
    background: inherit;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 0;
    pointer-events: none;
    border-radius: 0;
}

/* Decorative background elements */
.contact-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.03), transparent);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

.contact-content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Side - Information */
.contact-left-info {
    position: relative;
}

.contact-left-info h2 {
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-left-info h2 .text-gold {
    color: #f1c40f;
    display: block;
}

.contact-left-info p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-block:hover {
    border-color: #f1c40f;
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.15);
}

.info-block i {
    font-size: 1.8rem;
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-block div {
    flex: 1;
    min-width: 0;
}

.info-block strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.info-block a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

.info-block a:hover {
    color: #f1c40f;
}

.info-block span {
    color: #555;
    font-size: 1rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-mini {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    border-radius: 16px;
    border: 2px solid #1a1a1a;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f1c40f, #f39c12);
}

.stat-mini:hover {
    transform: translateY(-8px);
    border-color: #f1c40f;
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.3);
}

.stat-mini h4 {
    font-size: 2.5rem;
    color: #f1c40f;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-mini span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Right Side - Form */
.contact-right-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 3.5rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.contact-right-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f1c40f, #f39c12, #f1c40f);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-right-form:hover::before {
    opacity: 0.3;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(241, 196, 15, 0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
    color: #7f8c8d;
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #f1c40f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.15);
    transform: translateY(-2px);
}

.form-submit-button {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #1a1a1a;
    padding: 1.4rem;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.form-submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.form-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.5);
}

.form-submit-button i,  
.form-submit-button span {
    position: relative;
    z-index: 1;
}

.form-privacy-note {
    color: #bdc3c7;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
}


/* ===========================
   POPUP FORM - MATCHING THEME
=========================== */
.sidebar-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
}

.popup-content-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 40px 35px;
    width: 90%;
    max-width: 420px;
    border-radius: 24px;
    position: relative;
    text-align: center;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(241, 196, 15, 0.3);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #f1c40f;
    transition: all 0.3s ease;
}

.close-popup:hover {
    transform: rotate(90deg);
    color: #f39c12;
}

.popup-content-box h3 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.popup-content-box h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f1c40f, #f39c12);
    margin: 15px auto 0;
    border-radius: 2px;
}

.popup-content-box input {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: 2px solid rgba(241, 196, 15, 0.3);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.popup-content-box input:focus {
    outline: none;
    border-color: #f1c40f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.15);
}

.popup-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
}

.popup-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
}

.success-msg {
    display: none;
    color: #00c853;
    font-weight: 700;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

/* ===========================
   THANK YOU POPUP - ENHANCED
=========================== */
.thankyou-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.thankyou-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 90%;
    max-width: 480px;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    animation: scaleIn 0.25s ease-out;
    box-shadow: 0px 20px 60px rgba(0,0,0,0.2);
    border: 3px solid #f1c40f;
}

.close-thankyou {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.close-thankyou:hover {
    transform: rotate(90deg);
    color: #f1c40f;
}

.icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.icon-box i {
    font-size: 60px;
    color: #1a1a1a;
    margin-bottom: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.thankyou-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

@keyframes scaleIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ===========================
   LOCATION MAP
=========================== */
.location-map-section {
    padding: 8rem 4rem;
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.map-embed-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-embed-container iframe {
    width: 100%;
    display: block;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 45px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: #f8f8f8;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f1c40f;
}

.footer-copyright {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===========================
   SIDEBAR (DESKTOP)
=========================== */
.fixed-sidebar {
    position: fixed;
    top: 40%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.side-btn,
.side-btn-link {
    background: #f1c40f;
    padding: 14px 18px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    width: 170px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000 !important;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.side-btn:hover,
.side-btn-link:hover {
    background: #f39c12;
    padding-left: 24px;
}

/* ===========================
   MOBILE BOTTOM BAR
=========================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #1a1a1a;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    z-index: 99999;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.4);
}

.mobile-bottom-bar button,
.mobile-bottom-bar a {
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
}

.mobile-bottom-bar button:active,
.mobile-bottom-bar a:active {
    color: #f1c40f;
}

.mobile-bottom-bar i {
    font-size: 20px;
    display: block;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets */
@media (max-width: 1024px) {
    .header {
        padding: 1rem 2rem;
    }

    .hero-asymmetric {
        grid-template-columns: 1fr;
        margin-top: 70px;
    }

    .hero-left-panel {
        padding: 4rem 3rem;
    }

    .hero-right-image {
        min-height: 50vh;
        clip-path: none;
    }

    .hero-main-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .floating-stats {
        position: static;
        margin-top: 2rem;
        justify-content: flex-start;
        left: auto;
        bottom: auto;
    }

    .diagonal-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diagonal-text-area {
        padding-right: 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .image-stack {
        grid-template-columns: 1fr 1fr;
    }

    .amenity-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .overlap-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-item-overlap {
        height: 300px;
    }

    .feature-split-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-split-item.reverse {
        direction: ltr;
    }

    .feature-split-content {
        padding: 4rem 3rem;
    }

    .feature-split-content h3 {
        font-size: 2rem;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-left-info h2 {
        font-size: 3rem;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    .header {
        padding: 0.8rem 1.5rem;
    }

    .header-logo img {
        height: 35px;
    }

    .hero-asymmetric {
        margin-top: 60px;
    }

    .hero-left-panel {
        padding: 3rem 1.5rem;
    }

    .hero-right-image {
        min-height: 40vh;
        clip-path: none;
    }

    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 1rem;
        max-width: 100%;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .floating-stats {
        position: static;
        margin-top: 1.5rem;
        gap: 1rem;
        justify-content: center;
    }

    .stat-bubble {
        padding: 1.2rem 1.5rem;
        flex: 1;
        min-width: 120px;
    }

    .stat-bubble strong {
        font-size: 1.8rem;
    }

    .marquee-content span {
        font-size: 0.95rem;
        gap: 8px;
    }

    .section-title,
    .section-title-center {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .about-diagonal,
    .amenities-fullwidth,
    .gallery-overlap,
    .contact-section-modern,
    .location-map-section {
        padding: 4rem 1.5rem;
    }

    .features-split {
        padding: 0;
    }

    .feature-split-content {
        padding: 3rem 1.5rem;
    }

    .image-stack {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-stack img {
        height: 220px;
    }

    .amenity-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .amenity-card-wide {
        padding: 2rem 1.5rem;
    }

    .overlap-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item-overlap {
        height: 250px;
    }

    .contact-left-info h2 {
        font-size: 2.2rem;
    }

    .contact-left-info p {
        font-size: 1rem;
    }

    .info-block {
        gap: 1rem;
    }

    .info-block i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-mini {
        padding: 1.5rem 1rem;
    }

    .stat-mini h4 {
        font-size: 2rem;
    }

    .contact-right-form {
        padding: 2rem 1.5rem;
    }

    .modern-contact-form input,
    .modern-contact-form select,
    .modern-contact-form textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .map-embed-container {
        border-radius: 12px;
    }

    /* Show mobile bar, hide desktop sidebar */
    .fixed-sidebar {
        display: none !important;
    }

    .mobile-bottom-bar {
        display: flex !important;
    }

    /* Add padding to footer for mobile bar */
    .footer {
        padding-bottom: 5rem;
    }

    /* Feature split image safety on mobile */
    .feature-split-item {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
    }

    .feature-split-image {
        min-height: 200px;
        background-attachment: scroll !important;
        clip-path: none !important;
        display: block;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .hero-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .section-title,
    .section-title-center {
        font-size: 1.8rem;
    }

    .section-subtitle-center {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .amenity-card-wide h3 {
        font-size: 1.1rem;
    }

    .amenity-card-wide p {
        font-size: 0.9rem;
    }

    .amenity-icon-modern {
        width: 70px;
        height: 70px;
    }

    .amenity-icon-modern i {
        font-size: 2rem;
    }

    .feature-split-content h3 {
        font-size: 1.7rem;
    }

    .feature-split-content p {
        font-size: 0.95rem;
    }

    .feature-split-image {
        min-height: 150px;
    }

    .contact-left-info h2 {
        font-size: 1.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links a {
        margin: 0;
    }

    .mobile-bottom-bar {
        padding: 10px 0;
    }

    .mobile-bottom-bar button,
    .mobile-bottom-bar a {
        font-size: 11px;
        padding: 6px 8px;
    }

    .mobile-bottom-bar i {
        font-size: 18px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-main-title {
        font-size: 1.7rem;
    }

    .section-title,
    .section-title-center {
        font-size: 1.6rem;
    }

    .stat-bubble {
        padding: 1rem;
        min-width: 100px;
    }

    .stat-bubble strong {
        font-size: 1.5rem;
    }

    .about-diagonal,
    .amenities-fullwidth,
    .gallery-overlap,
    .contact-section-modern,
    .location-map-section {
        padding: 3rem 1rem;
    }
}
