* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2D5A27;
            --gold: #D4A017;
            --light-bg: #f8f8f8;
            --dark-text: #1a1a1a;
            --light-text: #666;
            --white: #ffffff;
            --shadow: 0 8px 32px rgba(45, 90, 39, 0.1);
            --shadow-hover: 0 12px 48px rgba(45, 90, 39, 0.15);
            --footer-bg: #14241280;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, #3d6b35 100%);
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 2rem;
            background: rgba(45, 90, 39, 0.75);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.95);
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--dark-text);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(212, 160, 23, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* SECTIONS */
        section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .section-subtitle {
            text-align: center;
            color: var(--light-text);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* ABOUT SECTION */
        .about {
            background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(212, 160, 23, 0.05) 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--light-text);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* GALLERY SECTION */
        .gallery {
            background: var(--light-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all 0.3s ease;
            height: 300px;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 90, 39, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-text {
            color: var(--white);
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* FLOOR PLANS */
        .floor-plans {
            background: var(--white);
        }

        .floor-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0 3rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 0.8rem 1.5rem;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .tab-btn.active {
            background: var(--primary);
            color: var(--white);
        }

        .tab-btn:hover {
            background: var(--primary);
            color: var(--white);
        }

        .floor-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .floor-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .floor-item:hover {
            box-shadow: var(--shadow-hover);
        }

        .floor-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* AMENITIES */
        .amenities {
            background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(212, 160, 23, 0.05) 100%);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .amenity-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-top: 4px solid var(--gold);
        }

        .amenity-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .amenity-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            display: block;
        }

        .amenity-card h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .amenity-card p {
            color: var(--light-text);
            font-size: 0.95rem;
        }

        /* SPECIFICATIONS */
        .specifications {
            background: var(--white);
        }

        .spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .spec-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .spec-label::before {
            content: '✓';
            color: var(--gold);
            font-weight: 700;
        }

        .spec-text {
            color: var(--light-text);
            margin-top: 0.3rem;
            font-size: 0.95rem;
        }

        /* CONTACT SECTION */
        .contact {
            background: linear-gradient(135deg, var(--primary) 0%, #3d6b35 100%);
            color: var(--white);
        }

        .contact h2,
        .contact h3 {
            color: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-info h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            color: var(--gold);
        }

        .contact-item {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-label {
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 0.5rem;
            display: block;
        }

        .contact-value {
            color: rgba(255,255,255,0.95);
            font-size: 1.05rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.95);
            padding: 2rem;
            border-radius: 12px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-text);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background: var(--primary);
            color: var(--white);
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .form-submit:hover {
            background: var(--gold);
            color: var(--dark-text);
        }


        /* MAP SECTION */
        .map-section {
            background: var(--light-bg);
            padding: 5rem 2rem 0;
            max-width: 100%;
        }

        .map-section .section-subtitle {
            margin-bottom: 2rem;
        }

        .map-container {
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin: 0 auto;
            position: relative;
            height: 450px;
            max-width: 1400px;
        }

        .map-container iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FOOTER */
        /* ── FOOTER ── */
 footer {
  background: #060F09;
  padding: 52px 5% 28px;
  text-align: center;
}
.footer-powered { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-powered span { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-powered img { height: 38px; width: auto; object-fit: contain; vertical-align: middle; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sun); }
.footer-section-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a:nth-child(1):hover { background: #3b5999; border-color: #3b5999; color: #fff; }
.footer-social a:nth-child(2):hover { background: #1d9bf0; border-color: #1d9bf0; color: #fff; }
.footer-social a:nth-child(3):hover { background: #e4405f; border-color: #e4405f; color: #fff; }
.footer-social a:nth-child(4):hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social a.wa-icon { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25D366; }
.footer-social a.wa-icon:hover { background: #25D366; border-color: #25D366; color: #fff; }
.footer-share-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.fsr-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.fsr-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.fsr-wa  { background: #25D366; }
.fsr-fb  { background: #3b5999; }
.fsr-tw  { background: #1d9bf0; }
.fsr-li  { background: #0077b5; }
.fsr-em  { background: #e8593f; }
.fsr-sm  { background: #4c53ef; }
.footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,.28); border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; }


        /* FLOATING ACTION BUTTONS */
        .fab-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        /* Bottom-right stack: share toggle at base, scroll-top above it, share pills fan up when expanded */
        .fab-stack-right {
            position: fixed;
            right: 25px;
            bottom: 30px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .scroll-top {
            background: rgba(20, 8, 5, 0.7);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--white);
            display: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
        }

        .scroll-top.show {
            display: flex;
        }

        .scroll-top:hover {
            background: rgba(20, 8, 5, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
        }

        .share-fab-btn {
            background: var(--gold);
            color: #1b0b06;
            box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
        }

        .share-fab-btn:hover,
        .share-fab-btn.active {
            background: #f0b91d;
            transform: translateY(-3px);
            box-shadow: 0 12px 26px rgba(212, 160, 23, 0.5);
        }

        /* Share pills: collapsed to zero height by default, expand upward in sequence when toggled */
        .share-pill-wrap {
            width: 54px;
            max-height: 0;
            overflow: hidden;
            display: flex;
            justify-content: center;
            transition: max-height 0.3s ease;
        }

        .fab-stack-right.expanded .share-pill-wrap {
            max-height: 70px;
            margin-bottom: 1rem;
        }

        .share-pill {
            width: 54px;
            height: 54px;
            flex-shrink: 0;
            color: var(--white);
            opacity: 0;
            transform: scale(0.4);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .fab-stack-right.expanded .share-pill {
            opacity: 1;
            transform: scale(1);
        }

        .fab-stack-right.expanded .share-pill-email-wrap .share-pill { transition-delay: 0.02s; }
        .fab-stack-right.expanded .share-pill-sms-wrap .share-pill { transition-delay: 0.06s; }
        .fab-stack-right.expanded .share-pill-x-wrap .share-pill { transition-delay: 0.1s; }
        .fab-stack-right.expanded .share-pill-facebook-wrap .share-pill { transition-delay: 0.14s; }
        .fab-stack-right.expanded .share-pill-whatsapp-wrap .share-pill { transition-delay: 0.18s; }

        .share-pill-email {
            background: #e0263f;
            box-shadow: 0 8px 18px rgba(224, 38, 63, 0.4);
        }

        .share-pill-email:hover {
            background: #c91f36;
            transform: translateY(-3px) scale(1);
        }

        .share-pill-sms {
            background: #6f5ce0;
            box-shadow: 0 8px 18px rgba(111, 92, 224, 0.4);
        }

        .share-pill-sms:hover {
            background: #5d4cc4;
            transform: translateY(-3px) scale(1);
        }

        .share-pill-x {
            background: #1da1f2;
            box-shadow: 0 8px 18px rgba(29, 161, 242, 0.4);
        }

        .share-pill-x:hover {
            background: #0d8fdb;
            transform: translateY(-3px) scale(1);
        }

        .share-pill-facebook {
            background: #3b5fcd;
            box-shadow: 0 8px 18px rgba(59, 95, 205, 0.4);
        }

        .share-pill-facebook:hover {
            background: #2f4eb3;
            transform: translateY(-3px) scale(1);
        }

        .share-pill-whatsapp {
            background: #25D366;
            box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
        }

        .share-pill-whatsapp:hover {
            background: #20bd5a;
            transform: translateY(-3px) scale(1);
        }

        /* Bottom-left: WhatsApp */
        .whatsapp-btn {
            position: fixed;
            left: 25px;
            bottom: 30px;
            z-index: 99;
            width: 64px;
            height: 64px;
            background: #25D366;
            color: var(--white);
            font-size: 1.6rem;
            box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
        }

        .whatsapp-btn:hover {
            background: #20bd5a;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
        }

        /* RESPONSIVE FAB STACK */
        @media (max-width: 768px) {
            .map-container {
                height: 350px;
                border-radius: 12px 12px 0 0;
            }

            .fab-stack-right {
                right: 18px;
                bottom: 20px;
            }

            .whatsapp-btn {
                left: 18px;
                bottom: 20px;
                width: 58px;
                height: 58px;
                font-size: 1.4rem;
            }

            .fab-btn {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }

            .scroll-top {
                margin-bottom: 0.85rem;
            }

            .share-pill-wrap {
                width: 48px;
            }

            .fab-stack-right.expanded .share-pill-wrap {
                max-height: 62px;
                margin-bottom: 0.85rem;
            }

            footer {
                padding: 3rem 1.5rem 2rem;
            }

            .footer-share-icon {
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 480px) {
            .map-container {
                height: 280px;
            }

            .fab-stack-right {
                right: 14px;
                bottom: 16px;
            }

            .whatsapp-btn {
                left: 14px;
                bottom: 16px;
                width: 52px;
                height: 52px;
                font-size: 1.3rem;
            }

            .fab-btn {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .scroll-top {
                margin-bottom: 0.7rem;
            }

            .share-pill-wrap {
                width: 44px;
            }

            .fab-stack-right.expanded .share-pill-wrap {
                max-height: 56px;
                margin-bottom: 0.7rem;
            }

            footer {
                padding: 2.5rem 1.2rem 1.8rem;
            }

            .footer-share-icons {
                gap: 0.7rem;
            }

            .footer-share-icon {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .footer-share-title {
                font-size: 1rem;
            }
        }
        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .about-grid,
            .spec-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .floor-content {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 3rem 1rem;
            }

            section h2 {
                font-size: 1.5rem;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* PRINT STYLES */
        @media print {
            .scroll-top,
            .fab-stack-right,
            .whatsapp-btn {
                display: none;
            }
        }