/* THE ADDRESS PRIVÉ - Emerald Luxury Edition */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    /* Brand Palette - LOGO MATCHED */
    /* Modern Luxury Palette */
    --emerald-deep: #008080;
    /* User's Teal */
    --emerald-dark: #002222;
    --accent-pop: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;

    /* Clean & Crisp */
    --gold-luxury: #C5A059;

    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top center, var(--emerald-deep), var(--emerald-dark));
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white-pure);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.gold-accent {
    color: var(--gold-luxury);
    /* Updated to use gold variable */
    font-weight: 700;
    letter-spacing: 2px;
}

/* ---------------------------------
   HEADER
--------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(0, 30, 30, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 55px;
    /* Slightly larger for visibility */
    border: 2px solid var(--gold-luxury);
    /* Border to pop against green */
    border-radius: 4px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white-pure);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-primary);
    /* Fixed variable name from text-cream */
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold-luxury);
}

.btn-inquire {
    padding: 14px 35px;
    background: transparent;
    border: 1px solid var(--white-pure);
    color: var(--white-pure);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 50px;
    /* Pill Shape */
    transition: var(--transition);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-inquire:hover {
    background: var(--white-pure);
    color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------
   HERO SECTION
--------------------------------- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darkened image to let text pop */
    background: linear-gradient(rgba(0, 40, 40, 0.7), rgba(0, 40, 40, 0.7)), url('assets/images/project2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    max-width: 900px;
    border: 1px solid var(--glass-border);
    padding: 80px 60px;
    background: rgba(0, 40, 40, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: block;
    color: #fff;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-btn-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero-primary {
    padding: 15px 40px;
    background: var(--gold-luxury);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: #fff;
    color: var(--emerald-dark);
}

.btn-hero-outline {
    padding: 15px 40px;
    border: 1px solid var(--white-pure);
    /* Fallback if var missing, assuming white */
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--emerald-dark);
}

/* ---------------------------------
   STATS & CREDIBILITY
--------------------------------- */
.stats-section {
    padding: 80px 5%;
    background: rgba(0, 128, 128, 0.8);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #ccc;
    text-transform: uppercase;
}

/* ---------------------------------
   EXPERTISE / SERVICES
--------------------------------- */
.services-section {
    padding: 60px 4%;
    padding: 100px 5%;
    background: linear-gradient(to bottom, var(--emerald-deep), var(--emerald-dark));
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    padding: 50px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white-pure);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------------------------------
   FEATURED GRID (Classic)
--------------------------------- */
.featured-section {
    padding: 60px 4%;
    padding: 100px 5%;
    background: var(--emerald-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--gold-luxury);
    margin: 0 auto;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.property-card {
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--i, 1) * 0.5s);
}

.card-img-wrap {
    height: 250px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.property-card:hover img {
    transform: scale(1.1);
}

.card-info {
    padding: 30px;
    text-align: center;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fff;
}

.card-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.card-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.property-card:hover .card-link {
    border-bottom-color: var(--gold-luxury);
}

/* ---------------------------------
   NEWSLETTER
--------------------------------- */
.newsletter-section {
    padding: 100px 5%;
    background: transparent;
    /* Show body gradient */
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-box h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.btn-submit {
    padding: 15px 40px;
    background: var(--white-pure);
    color: var(--emerald-dark);
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-submit:hover {
    background: var(--emerald-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------
   FLOATING WHATSAPP
--------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 5000;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ---------------------------------
   FOOTER (Official)
--------------------------------- */
footer {
    background: #002222;
    /* Even darker green */
    padding: 80px 5%;
    text-align: center;
    border-top: 4px solid var(--gold-luxury);
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-brand .brand-text {
    color: var(--white-pure, #fff);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-luxury);
    border-color: var(--gold-luxury);
    color: var(--emerald-deep);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    /* Fixed undefined var */
    transition: 0.4s;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 30, 30, 0.98);
    /* Matching Teal Theme */
    backdrop-filter: blur(20px);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-overlay.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay a {
    font-family: 'Playfair Display', serif;
    /* Consistent Font */
    font-size: 2.5rem;
    color: var(--white-pure);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

/* Stagger animations for menu items */
.mobile-nav-overlay.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active a:nth-child(4) {
    transition-delay: 0.4s;
}


/* ---------------------------------
   AMENITIES
--------------------------------- */
.amenities-section {
    padding: 100px 5%;
    /* Consistent Spacing */
    background: transparent;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.amenities-grid {
    display: flex;
    /* Flex for better centering of icons */
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.amenity-item {
    width: 160px;
    /* Fixed width for uniformity */
    padding: 40px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.amenity-item:hover {
    background: var(--white-pure);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.amenity-item:hover i {
    color: var(--emerald-deep);
}

.amenity-item:hover span {
    color: var(--emerald-deep);
    font-weight: 600;
}

.amenity-item i {
    font-size: 2.2rem;
    color: var(--white-pure);
    margin-bottom: 0;
    /* Handled by flex gap */
    transition: color 0.3s;
}

.amenity-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}


/* RESPONSIVE QUERIES */
@media (max-width: 1024px) {
    header {
        padding: 20px 25px;
    }

    .nav-menu,
    .btn-inquire {
        display: none;
        /* Hide Desktop Nav */
    }

    .mobile-menu-btn {
        display: flex;
        /* Show Hamburger */
    }

    /* Hero Adjustments */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Bento Grid Mobile Stack */
    .bento-section {
        padding: 80px 5%;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .bento-card {
        height: 400px;
        margin-bottom: 20px;
        border: 1px solid #222;
        border-radius: 12px;
    }

    .span-2,
    .span-row-2 {
        grid-column: auto;
        grid-row: auto;
        height: 400px;
    }

    /* Filter Controls */
    .filter-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 25px;
        background: transparent;
        border: 1px solid var(--glass-border);
        color: var(--text-secondary);
        border-radius: 50px;
        cursor: pointer;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--gold-luxury);
        color: var(--emerald-dark);
        border-color: var(--gold-luxury);
    }

    /* Footer Stack */
    footer {
        padding: 60px 5%;
    }

    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

/* Animations active state for JS scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------
   NEWS & UPDATES PAGE
--------------------------------- */
.news-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 40, 40, 0.7), rgba(0, 40, 40, 0.7)), url('assets/images/project2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.news-container {
    padding: 100px 5%;
    background: var(--emerald-dark);
    min-height: 60vh;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold-luxury);
}

.news-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

/* News Category Tag */
.news-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-luxury);
    color: var(--emerald-dark);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--gold-luxury);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.news-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ---------------------------------
   ADMIN DASHBOARD UI
--------------------------------- */
.admin-container {
    padding-top: 15rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(197, 160, 89, 0.05), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 128, 128, 0.1), transparent 40%),
        linear-gradient(135deg, #001a1a 0%, #002b2b 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.share-form-box {
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Gold line top accent */
.share-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-luxury), transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-header p {
    color: var(--gold-luxury);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-luxury);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.01);
}

.file-upload-wrapper:hover {
    border-color: var(--gold-luxury);
    background: rgba(255, 255, 255, 0.03);
}

.upload-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    transition: var(--transition);
}

.file-upload-wrapper:hover .upload-icon {
    color: var(--gold-luxury);
    transform: translateY(-5px);
}

.btn-admin {
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, var(--gold-luxury), #d4b06a);
    color: #000;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.btn-admin::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-admin:hover::after {
    left: 100%;
}

.btn-admin:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
}

.success-message,
.error-message {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.success-message {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #4ade80;
}

.error-message {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.5);
    color: #ff8888;
}

.admin-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.admin-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-link:hover {
    color: var(--gold-luxury);
}

.admin-link.logout:hover {
    color: #ff6b6b;
}

/* ---------------------------------------------------------
   RESPONSIVE MOBILE SUITE (Phone Optimization)
--------------------------------------------------------- */
@media (max-width: 768px) {

    /* Global Container Fixes */
    body {
        overflow-x: hidden;
    }

    /* ---- HEADER FIXES ---- */
    header {
        padding: 15px 20px;
        justify-content: space-between;
        /* Ensure space between logo and burger */
    }

    .brand-container {
        gap: 10px;
        max-width: 80%;
        /* Prevent logo hitting menu button */
    }

    .logo-img {
        height: 35px;
        /* Smaller logo */
    }

    .brand-text {
        font-size: 0.9rem;
        /* Much smaller text to fit on one line if possible */
        white-space: nowrap;
        /* Try to keep on one line */
    }

    /* ---- HERO ---- */
    .hero-section {
        padding: 0 15px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        padding: 15px;
    }

    /* ---- INQUIRY FORM (Mobile Fix) ---- */
    .newsletter-section {
        padding: 60px 15px !important;
    }

    .newsletter-box {
        padding: 30px 20px !important;
        width: 100% !important;
    }

    /* Force Form to Vertical Stack */
    .newsletter-form {
        display: flex !important;
        /* Flex column is better than grid for pure vertical */
        flex-direction: column !important;
        gap: 20px !important;
    }

    .form-group {
        width: 100% !important;
        grid-column: auto !important;
        margin-bottom: 0 !important;
    }

    .form-input,
    input,
    select,
    textarea {
        width: 100% !important;
        font-size: 16px !important;
        /* Preventing zoom on iOS */
        padding: 15px !important;
    }

    /* ---- WHATSAPP BUTTON (Move to Left & Up) ---- */
    .whatsapp-float {
        right: auto !important;
        left: 20px !important;
        bottom: 90px !important;
        /* Higher up to avoid covering footer text */
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }

    /* ---- FOOTER ---- */
    footer {
        padding: 50px 20px 100px 20px;
        /* Extra bottom padding for scroll space */
    }

    .footer-brand h4 {
        font-size: 1.8rem !important;
        /* Fix title size */
    }

    .footer-bottom {
        font-size: 10px !important;
        line-height: 1.4;
        padding-bottom: 20px;
        letter-spacing: -0.5px;
        /* Tighten text to fit */
        white-space: nowrap;
        /* Force 1 line */
        overflow-x: scroll;
        /* Allow tiny scroll if screen is too small */
        scrollbar-width: none;
        /* Hide scrollbar */
    }
}