/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3a3a;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a3a3a 0%, #2c5f5f 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #a8e6e1;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
        url('img/Hero.bg.png') center/cover no-repeat;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d0f0f0;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #4db8b0 0%, #3a9d96 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 184, 176, 0.4);
}

.btn:active,
.btn-overview-cta:active,
.btn-pricing-cta:active,
.btn-gallery-cta:active,
.btn-location-cta:active,
.btn-download:active {
    transform: translateY(1px) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #1a3a3a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
}

/* Overview Section */
.overview {
    padding: 4rem 2rem;
    background: #ffffff;
}

.overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c8502a;
    margin-bottom: 1.2rem;
    text-align: center;
}

.overview-desc {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
}

.overview-desc strong {
    color: #222;
    font-weight: 600;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.overview-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.overview-features ul li {
    color: #1c3830;
    font-size: 0.97rem;
    font-weight: 500;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    position: relative;
    background: #eef4f1;
    border-left: 4px solid #1c3830;
    border-radius: 4px;
    line-height: 1.5;
    box-shadow: 0 1px 4px rgba(28,56,48,0.07);
}

.overview-features ul li:last-child {
    border-bottom: none;
}

.overview-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0.65rem;
    color: #1c3830;
    font-weight: 700;
    font-size: 1rem;
}

.overview-cta {
    text-align: left;
}

.btn-overview-cta {
    background: #1c3830;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.btn-overview-cta:hover {
    background: #2c5040;
    box-shadow: 0 5px 15px rgba(28, 56, 48, 0.35);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: #ffffff;
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c8502a;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #e8e4d8;
}

.pricing-table thead tr {
    background: #1c3830;
}

.pricing-table thead th {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    letter-spacing: 0.03em;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #ccc8bc;
}

.pricing-table tbody tr:nth-child(even) {
    background: #ddd8cc;
}

.pricing-table tbody tr:nth-child(odd) {
    background: #e8e4d8;
}

.pricing-table tbody td {
    padding: 0.95rem 1.5rem;
    text-align: center;
    color: #222;
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-pricing-cta {
    background: #1c3830;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.btn-pricing-cta:hover {
    background: #2c5040;
    box-shadow: 0 5px 15px rgba(28, 56, 48, 0.35);
    transform: translateY(-2px);
}

/* Amenities Section */
.amenities {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 600;
    color: #1a3a3a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #eef4f1;
    border-radius: 50%;
    transition: background 0.3s;
}

.amenity-icon svg {
    transition: stroke 0.3s;
}

.amenity:hover {
    background: #4db8b0;
    color: white;
    transform: scale(1.05);
}

.amenity:hover .amenity-icon {
    background: rgba(255,255,255,0.25);
}

.amenity:hover .amenity-icon svg {
    stroke: white;
}

/* Downloads Section */
.downloads {
    padding: 4rem 2rem;
    background: #ffffff;
}

.downloads-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c3830;
    text-align: center;
    margin-bottom: 0.5rem;
}

.downloads-subtitle {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: #e8e4d8;
    border: 1px solid #1c3830;
    border-radius: 4px;
    padding: 2.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-label {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1c3830;
    margin: 0;
}

.btn-download {
    background: #1c3830;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-download:hover {
    background: #2c5040;
    box-shadow: 0 4px 12px rgba(28, 56, 48, 0.3);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    padding: 4rem 2rem;
    background: #ffffff;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c3830;
    margin-bottom: 0.5rem;
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.gallery-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.gallery-slider-container {
    flex: 1;
    overflow: hidden;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.2rem;
    padding: 1.5rem 0.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    flex: 0 0 calc(25% - 0.9rem);
    min-width: 180px;
    height: 300px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    transform-origin: center center;
}

.gallery-item.outer-left {
    transform: rotateY(28deg);
    box-shadow: 6px 8px 28px rgba(0,0,0,0.25);
}

.gallery-item.outer-right {
    transform: rotateY(-28deg);
    box-shadow: -6px 8px 28px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 58, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item .gallery-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-slider-btn {
    background: rgba(255, 255, 255, 0.92);
    color: #1c3830;
    border: 1.5px solid rgba(28, 56, 48, 0.35);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-slider-btn:hover {
    opacity: 1;
    background: #ffffff;
    border-color: #1c3830;
    box-shadow: 0 4px 12px rgba(28, 56, 48, 0.25);
}

.gallery-slider-btn:active {
    transform: scale(0.9);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb8b0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #1c3830;
    transform: scale(1.2);
}

.dot:hover {
    background: #1c3830;
}

.gallery-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 1rem;
}

.btn-gallery-cta {
    background: #1c3830;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.btn-gallery-cta:hover {
    background: #2c5040;
    box-shadow: 0 5px 15px rgba(28, 56, 48, 0.35);
    transform: translateY(-2px);
}

/* Location Section */
.location {
    padding: 5rem 2rem;
    background: #f0ede6;
}

.location-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1c3830;
    margin-bottom: 0.5rem;
    text-align: center;
}

.location-subtitle {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
    align-items: start;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    position: sticky;
    top: 80px;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 440px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
}

.loc-tab {
    background: white;
    color: #1c3830;
    border: 1.5px solid #c8c4bc;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    border-radius: 20px;
    margin-bottom: 0;
}

.loc-tab:hover {
    background: #eef4f1;
    border-color: #1c3830;
    color: #1c3830;
}

.loc-tab.active {
    background: #1c3830;
    color: white;
    border-color: #1c3830;
    font-weight: 600;
}

.location-details {
    background: white;
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    min-height: 200px;
}

.loc-panel {
    display: none;
}

.loc-panel.active {
    display: block;
}

.loc-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loc-panel ul li {
    color: #1c3830;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 0.8rem 0.6rem 2.2rem;
    position: relative;
    background: #f5f8f6;
    border-left: 3px solid #1c3830;
    border-radius: 4px;
    border-bottom: none;
    line-height: 1.4;
}

.loc-panel ul li:last-child {
    border-bottom: none;
}

.loc-panel ul li::before {
    content: "📍";
    position: absolute;
    left: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.location-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-location-cta {
    display: inline-block;
    background: #1c3830;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.btn-location-cta:hover {
    background: #2c5040;
    box-shadow: 0 5px 15px rgba(28, 56, 48, 0.35);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background:
        linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
        url('img/gallery1.jpg') center/cover no-repeat;
}

.contact h2 {
    color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4db8b0;
    box-shadow: 0 0 5px rgba(77, 184, 176, 0.3);
}

/* Phone field with country code */
.phone-field-wrapper {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    transition: border-color 0.3s;
    position: relative;
}

.phone-field-wrapper:focus-within {
    border-color: #4db8b0;
    box-shadow: 0 0 5px rgba(77, 184, 176, 0.3);
}

.phone-field-wrapper input[type="tel"] {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    padding: 12px;
    font-size: 1rem;
    outline: none;
    background: white;
    min-width: 0;
    border-radius: 0 5px 5px 0;
}

/* Custom country code dropdown */
.custom-country-select {
    position: relative;
    flex-shrink: 0;
}

.country-select-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    border-right: 1px solid #ddd;
    background: #f5f5f5;
    padding: 12px 8px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    height: 100%;
    min-width: 90px;
    font-family: inherit;
    border-radius: 5px 0 0 5px;
}

.country-select-btn:hover {
    background: #ebebeb;
}

.cc-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.custom-country-select.open .cc-arrow {
    transform: rotate(180deg);
}

.cc-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 9999;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    max-height: 220px;
    overflow-y: auto;
    min-width: 110px;
    list-style: none;
    padding: 4px 0;
    margin: 0;
}

.custom-country-select.open .cc-options {
    display: block;
}

.cc-option {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    color: #333;
}

.cc-option:hover {
    background: #f0f0f0;
}

.cc-option.selected {
    background: #e8f5f4;
    color: #1c3830;
    font-weight: 600;
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}
.footer-inner {
    max-width: 820px;
    margin: 0 auto;
}
.footer-disclaimer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-rera {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 0.6rem;
    font-weight: 600;
}
.footer-agent {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.footer-credit {
    font-size: 0.78rem;
    color: #666;
}

/* Floating Action Buttons */
.fab {
    position: fixed;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}
.fab-phone {
    left: 24px;
    background: #1a1a1a;
    border: 3px solid #c8960c;
}
.fab-whatsapp {
    right: 24px;
    background: #25d366;
}

/* Contact Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    color: #1c3830;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.modal-close:hover {
    background: rgba(200, 80, 42, 0.12);
    border-color: #c8502a;
    color: #c8502a;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c3830;
    margin-bottom: 0.4rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* ---- Other Projects / Similar Properties Section ---- */
.similar-properties {
    background: #f5f1e8;
    padding: 5rem 2rem;
}
.similar-label {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8502a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.similar-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1c3830;
    margin-bottom: 2.5rem;
}
.prop-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    max-width: 920px;
    margin: 0 auto;
}
.prop-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s, box-shadow 0.25s;
}
.prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
.prop-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.prop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.prop-card:hover .prop-img {
    transform: scale(1.05);
}
.prop-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e8302a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    z-index: 2;
}
.prop-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
}
.prop-heart:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #e8302a;
}
.prop-body {
    padding: 1.1rem 1.2rem 1.2rem;
    border-top: 1px solid #eeebe4;
}
.prop-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.prop-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.prop-rera {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: #555;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rera-dot {
    color: #22aa55;
    font-size: 0.75rem;
}
.prop-builder {
    font-size: 0.82rem;
    color: #666;
    margin: 0 0 0.1rem;
}
.prop-location {
    font-size: 0.82rem;
    color: #666;
    margin: 0 0 0.6rem;
}
.prop-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #444;
    font-weight: 500;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eeebe4;
    margin-bottom: 0.75rem;
}
.prop-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prop-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}
@keyframes propContactPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 80, 42, 0); }
    50%       { box-shadow: 0 0 0 5px rgba(200, 80, 42, 0.18),
                            0 4px 12px rgba(200, 80, 42, 0.25); }
}
.prop-contact {
    background: #fff;
    color: #c8502a;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    animation: propContactPulse 2.5s ease-in-out infinite;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.prop-contact:hover {
    background: #c8502a;
    color: #fff;
    border-color: #c8502a;
    animation-play-state: paused;
}
.prop-badge--soon {
    background: #d97706;
}
.prop-price--soon {
    color: #888;
    font-style: italic;
    font-weight: 500;
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .prop-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .prop-cards-grid { grid-template-columns: 1fr; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a3a3a 0%, #2c5f5f 100%);
        padding: 0.5rem 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .features-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .overview-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-cta {
        text-align: center;
    }

    .location-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .loc-tab {
        flex: 1 1 auto;
        min-width: 100px;
    }

    .location-map {
        position: static;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
    }

    .gallery-slider-wrapper {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .gallery-slider {
        gap: 0;
        padding: 0;
    }

    .gallery-item {
        flex: 0 0 100%;
        height: 280px;
        border-radius: 0;
    }

    .gallery-item.outer-left,
    .gallery-item.outer-right {
        transform: none;
    }

    .gallery-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   PREMIUM LUXURY UPGRADE
   ============================================================ */

:root {
    --gold:            #b8960a;
    --gold-light:      #d4af37;
    --gold-pale:       #f0e4b0;
    --champagne:       #e8d5a3;
    --ink:             #0d1f1a;
    --ink-mid:         #1a2e28;
    --teal-deep:       #1c3830;
    --teal-mid:        #2a5248;
    --cream:           #f5f1e8;
    --cream-dark:      #ede8d8;
    --white-off:       #faf8f4;
    --text-body:       #3a3530;
    --text-muted:      #7a7068;
    --transition-med:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display:    'Cormorant Garamond', Georgia, serif;
    --font-body:       'Poppins', 'Segoe UI', sans-serif;
}

/* ---- Base ---- */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--white-off);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
}

/* ---- Scroll Reveal ---- */
.fade-in-section {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Section Heading Decorator ---- */
.section-heading-decorated {
    position: relative;
    padding-bottom: 1.6rem;
    margin-bottom: 1.2rem;
}
.section-heading-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold-light) 30%,
        var(--gold-light) 70%,
        transparent
    );
}
.section-heading-decorated::before {
    content: '◆';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--gold-light);
    line-height: 1;
    z-index: 1;
    padding: 0 4px;
}

/* ---- Navigation ---- */
.navbar {
    background: rgba(12, 24, 20, 0.88) !important;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(184, 150, 10, 0.18);
    box-shadow: 0 1px 0 rgba(184, 150, 10, 0.08),
                0 4px 24px rgba(0, 0, 0, 0.28);
    transition: background var(--transition-med);
}
.nav-links {
    gap: 2.5rem;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    transition: color var(--transition-med);
    position: relative;
    border-bottom: none !important;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width var(--transition-med);
}
.nav-links a:hover {
    color: var(--gold-light);
    background: transparent;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--gold-light) !important;
    border-bottom: none !important;
}
@media (max-width: 768px) {
    .nav-links {
        background: rgba(10, 20, 16, 0.97) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(184, 150, 10, 0.15);
        border-radius: 0 0 12px 12px;
    }
    .nav-links li a {
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    }
}

/* ---- Hero ---- */
.hero {
    background:
        linear-gradient(
            to bottom,
            rgba(10, 20, 16, 0.28) 0%,
            rgba(10, 20, 16, 0.45) 40%,
            rgba(10, 20, 16, 0.78) 75%,
            rgba(10, 20, 16, 0.92) 100%
        ),
        url('img/Hero.bg.png') center/cover no-repeat !important;
    min-height: 100vh;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 40%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.2rem;
}
.hero-content p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-style: italic;
    font-weight: 400;
    color: var(--champagne);
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
}
.hero-content p::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold-light), transparent);
    margin: 1.2rem auto 0;
}
/* ---- Button Attention Animations ---- */
@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 18px rgba(184, 150, 10, 0.45);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 8px 36px rgba(184, 150, 10, 0.75),
                    0 0 24px rgba(212, 175, 55, 0.45);
    }
}
@keyframes tealPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(28, 56, 48, 0.35);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 8px 32px rgba(28, 56, 48, 0.65),
                    0 0 20px rgba(42, 82, 72, 0.4);
    }
}
@keyframes shimmerAuto {
    0%        { left: -100%; }
    35%, 100% { left: 110%; }
}

/* Hero primary button - gold gradient + strong pulse */
.hero-content .btn-primary {
    background: linear-gradient(135deg, #c8960a 0%, #9a7000 100%);
    color: #ffffff;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    padding: 15px 38px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(184, 150, 10, 0.45);
    animation: ctaPulse 2.2s ease-in-out infinite;
    transition: background var(--transition-med),
                box-shadow var(--transition-med),
                transform var(--transition-med);
}
.hero-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: shimmerAuto 2.8s ease-in-out infinite;
}
.hero-content .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    box-shadow: 0 10px 32px rgba(184, 150, 10, 0.6);
    transform: translateY(-3px);
    animation-play-state: paused;
}
.hero-content .btn-primary:hover::before {
    animation-play-state: paused;
}
.hero-content .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(184, 150, 10, 0.35);
}

/* ---- CTA Buttons (shared shimmer style) ---- */
.btn-overview-cta,
.btn-pricing-cta,
.btn-location-cta {
    background: var(--teal-deep);
    color: #ffffff;
    border: 1.5px solid rgba(42, 82, 72, 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
    animation: tealPulse 2.4s ease-in-out infinite;
    transition: background var(--transition-med),
                border-color var(--transition-med),
                box-shadow var(--transition-med),
                transform var(--transition-med);
}
.btn-overview-cta { animation-delay: 0s; }
.btn-pricing-cta  { animation-delay: 0.8s; }
/* Auto-running shimmer on overview & pricing (not location) */
.btn-overview-cta::before,
.btn-pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.28), transparent);
    animation: shimmerAuto 3s ease-in-out infinite;
}
.btn-overview-cta::before { animation-delay: 0.4s; }
.btn-pricing-cta::before  { animation-delay: 1.4s; }
/* Location button keeps hover-only shimmer */
.btn-location-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-location-cta:hover::before {
    left: 100%;
}
.btn-overview-cta:hover,
.btn-pricing-cta:hover,
.btn-location-cta:hover {
    background: var(--teal-mid);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(28, 56, 48, 0.4),
                0 0 0 1px var(--gold) inset;
    transform: translateY(-2px);
    animation-play-state: paused;
}
.btn-overview-cta:hover::before,
.btn-pricing-cta:hover::before {
    animation-play-state: paused;
}

/* Gallery CTA — gold gradient + strong pulse */
.btn-gallery-cta {
    background: linear-gradient(135deg, #c8960a 0%, #9a7000 100%);
    color: #ffffff;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(184, 150, 10, 0.45);
    animation: ctaPulse 2.2s ease-in-out infinite 0.7s;
    transition: background var(--transition-med),
                border-color var(--transition-med),
                box-shadow var(--transition-med),
                transform var(--transition-med);
}
.btn-gallery-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: shimmerAuto 2.8s ease-in-out infinite 1.2s;
}
.btn-gallery-cta:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 10px 32px rgba(184, 150, 10, 0.6);
    transform: translateY(-2px);
    animation-play-state: paused;
}
.btn-gallery-cta:hover::before {
    animation-play-state: paused;
}
.btn-gallery-cta:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(184, 150, 10, 0.35) !important;
}

/* Download buttons — gold gradient + strong pulse */
.btn-download {
    background: linear-gradient(135deg, #c8960a 0%, #9a7000 100%);
    color: #ffffff;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    padding: 12px 28px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(184, 150, 10, 0.45);
    animation: ctaPulse 2.2s ease-in-out infinite 1.2s;
    transition: background var(--transition-med),
                color var(--transition-med),
                box-shadow var(--transition-med),
                transform var(--transition-med);
}
.btn-download::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: shimmerAuto 2.8s ease-in-out infinite 1.7s;
}
.btn-download:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 10px 28px rgba(184, 150, 10, 0.55);
    transform: translateY(-2px);
    animation-play-state: paused;
}
.btn-download:hover::before {
    animation-play-state: paused;
}

/* ---- Overview Section ---- */
.overview-highlights-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(184, 150, 10, 0.3);
}
.overview {
    background: var(--white-off);
    padding: 6rem 2rem;
}
.overview-title {
    font-family: var(--font-display) !important;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 1.4rem;
}
.overview-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.9;
    font-weight: 300;
}
.overview-desc strong {
    color: var(--ink);
    font-weight: 600;
}
.overview-features ul li {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    color: var(--ink);
    font-size: 0.93rem;
    font-weight: 400;
    transition: background var(--transition-med),
                border-color var(--transition-med);
}
.overview-features ul li:hover {
    background: var(--cream-dark);
    border-left-color: var(--gold-light);
}
.overview-image img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18),
                6px 6px 0 var(--gold);
}

/* ---- Pricing Section ---- */
.pricing {
    background: var(--ink) !important;
    padding: 6rem 2rem;
}
.pricing-title {
    color: var(--gold-light) !important;
    font-family: var(--font-display) !important;
    font-size: 2.6rem !important;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none !important;
}
.pricing-table-wrapper {
    border-radius: 2px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(184, 150, 10, 0.2);
    overflow: hidden;
}
.pricing-table {
    background: #0f1e18;
}
.pricing-table thead tr {
    background: linear-gradient(135deg, var(--teal-deep) 0%, #0d1a14 100%);
    border-bottom: 2px solid var(--gold);
}
.pricing-table thead th {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-pale);
    font-weight: 500;
    padding: 1.3rem 1.5rem;
    background: transparent;
}
.pricing-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}
.pricing-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.045);
}
.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-med);
}
.pricing-table tbody tr:hover {
    background: rgba(184, 150, 10, 0.08) !important;
}
.pricing-table tbody td {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.96rem;
    padding: 1.1rem 1.5rem;
    letter-spacing: 0.02em;
    background: transparent;
}
.pricing-table tbody td:first-child {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
}
.pricing-table tbody td:last-child {
    color: var(--gold-pale);
    font-weight: 500;
}
.pricing-highlight {
    background: linear-gradient(
        135deg,
        rgba(184, 150, 10, 0.14) 0%,
        rgba(184, 150, 10, 0.07) 100%
    ) !important;
    border-top: 1px solid rgba(184, 150, 10, 0.35) !important;
    border-bottom: 1px solid rgba(184, 150, 10, 0.35) !important;
}
.pricing-highlight td {
    color: #fff !important;
}
.pricing .pricing-cta {
    margin-top: 2.5rem;
}

/* ---- Amenities Section ---- */
.amenities {
    background: var(--cream) !important;
    padding: 6rem 2rem;
}
.amenities h2 {
    color: var(--ink);
}
.amenity {
    background: #fff;
    border: 1px solid rgba(28, 56, 48, 0.07);
    border-radius: 3px;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-body);
    transition: background var(--transition-med),
                color var(--transition-med),
                transform var(--transition-med),
                box-shadow var(--transition-med),
                border-color var(--transition-med);
}
.amenity-icon {
    background: var(--cream);
    border-radius: 2px;
    border: 1px solid rgba(184, 150, 10, 0.15);
    transition: background var(--transition-med),
                border-color var(--transition-med),
                transform var(--transition-med);
}
.amenity:hover {
    background: var(--teal-deep);
    color: var(--champagne);
    border-color: rgba(184, 150, 10, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(28, 56, 48, 0.3),
                0 0 0 1px rgba(184, 150, 10, 0.2);
}
.amenity:hover .amenity-icon {
    background: rgba(184, 150, 10, 0.15);
    border-color: rgba(184, 150, 10, 0.4);
    transform: scale(1.08);
}
.amenity:hover .amenity-icon svg {
    stroke: var(--gold-light) !important;
}
.amenity:hover .amenity-icon svg polygon {
    fill: var(--gold-light) !important;
    stroke: none;
}

/* ---- Downloads Section ---- */
.downloads {
    background: var(--ink) !important;
    padding: 6rem 2rem;
}
.downloads-title {
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: 2.6rem !important;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.03em;
}
.downloads-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-pale);
    opacity: 0.85;
}
.download-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 150, 10, 0.2);
    border-radius: 3px;
    padding: 3rem 2rem 2.5rem;
    color: #fff;
    transition: background var(--transition-med),
                border-color var(--transition-med),
                transform var(--transition-med),
                box-shadow var(--transition-med);
}
.download-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(184, 150, 10, 0.4);
}
.download-card .download-icon svg {
    stroke: var(--gold-light) !important;
}
.download-label {
    color: #fff !important;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---- Gallery Section ---- */
.gallery {
    background: var(--ink-mid) !important;
    padding: 6rem 2rem;
}
.gallery-title {
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: 2.6rem !important;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.03em;
}
.gallery-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-pale);
    opacity: 0.8;
}
.gallery-item {
    height: 320px;
    border-radius: 3px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.gallery-overlay {
    background: linear-gradient(
        to top,
        rgba(12, 24, 18, 0.9) 0%,
        rgba(12, 24, 18, 0.3) 50%,
        transparent 100%
    ) !important;
    align-items: flex-end !important;
    padding-bottom: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}
.gallery-overlay span {
    font-family: var(--font-display) !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--champagne) !important;
    text-align: left;
    padding: 0 1.5rem;
    width: 100%;
}
.gallery-slider-btn {
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(184, 150, 10, 0.65);
    color: var(--gold-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background var(--transition-med),
                border-color var(--transition-med),
                color var(--transition-med),
                box-shadow var(--transition-med);
}
.gallery-slider-btn:hover {
    background: rgba(184, 150, 10, 0.25);
    border-color: var(--gold-light);
    color: #fff;
    box-shadow: 0 4px 16px rgba(184, 150, 10, 0.3);
}
.dot {
    background: rgba(255, 255, 255, 0.25);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    transition: width 0.3s ease, background 0.3s ease, transform 0s;
}
.dot.active,
.dot.active:hover {
    background: var(--gold-light);
    width: 24px;
    border-radius: 3px;
    transform: none;
}
.dot:hover {
    background: var(--gold-pale);
    transform: none;
}
.gallery-note {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

/* ---- Location Section ---- */
.location {
    background: var(--cream) !important;
    padding: 6rem 2rem;
}
.location-title {
    font-family: var(--font-display) !important;
    font-size: 2.6rem !important;
    font-weight: 600;
    text-transform: none !important;
    color: var(--ink) !important;
    letter-spacing: 0.03em;
}
.location-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.location-map iframe {
    border-radius: 4px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(28, 56, 48, 0.08);
}
.loc-tab {
    border: 1px solid rgba(28, 56, 48, 0.2);
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all var(--transition-med);
    padding: 0.55rem 1.2rem;
    background: transparent;
    color: var(--ink);
}
.loc-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}
.loc-tab.active {
    background: var(--teal-deep);
    color: var(--gold-pale);
    border-color: var(--teal-deep);
    box-shadow: 0 4px 12px rgba(28, 56, 48, 0.25);
}
.location-details {
    background: #fff;
    border: 1px solid rgba(28, 56, 48, 0.06);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.loc-panel ul li {
    background: var(--cream);
    border-left: 2px solid var(--gold);
    font-size: 0.91rem;
    font-weight: 400;
    color: var(--text-body);
    transition: background var(--transition-med);
}
.loc-panel ul li:hover {
    background: var(--cream-dark);
}

/* ---- Contact Section ---- */
.contact {
    background:
        linear-gradient(rgba(8, 16, 12, 0.82), rgba(8, 16, 12, 0.90)),
        url('img/gallery1.jpg') center/cover no-repeat fixed !important;
    padding: 7rem 2rem;
}
.contact h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
}
.contact-form {
    max-width: 560px;
    gap: 1.2rem;
}
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 14px 16px;
    transition: border-color var(--transition-med),
                background var(--transition-med),
                box-shadow var(--transition-med);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}
.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 150, 10, 0.14),
                0 4px 16px rgba(0, 0, 0, 0.2);
    outline: none;
}
.contact .phone-field-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
    transition: border-color var(--transition-med);
}
.contact .phone-field-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 150, 10, 0.14);
}
.contact .country-select-btn {
    background: rgba(255, 255, 255, 0.07);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 2px 0 0 2px;
}
.contact .country-select-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}
.contact .phone-field-wrapper input[type="tel"] {
    background: transparent;
    border: none;
    color: #fff;
}
.contact .phone-field-wrapper input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.38);
}
.contact .btn-primary {
    border-color: rgba(212, 175, 55, 0.5);
    color: #ffffff;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    padding: 16px 48px;
    background: linear-gradient(135deg, #c8960a 0%, #9a7000 100%);
    border-width: 1.5px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(184, 150, 10, 0.45);
    animation: ctaPulse 2.2s ease-in-out infinite;
    transition: background var(--transition-med),
                box-shadow var(--transition-med),
                transform var(--transition-med);
}
.contact .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(184, 150, 10, 0.6);
    animation-play-state: paused;
}
.contact .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(184, 150, 10, 0.3);
}
.contact .cc-options {
    background: #1a2820;
    border: 1px solid rgba(184, 150, 10, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.contact .cc-option {
    color: rgba(255, 255, 255, 0.78);
}
.contact .cc-option:hover {
    background: rgba(184, 150, 10, 0.1);
}
.contact .cc-option.selected {
    background: rgba(184, 150, 10, 0.15);
    color: var(--gold-pale);
}

/* ---- About Section ---- */
.about {
    background: var(--white-off);
    padding: 6rem 2rem;
    position: relative;
}
.about::before {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold-light) 30%,
        var(--gold-light) 70%,
        transparent
    );
    margin: 0 auto 3rem;
}
.about h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2rem;
}
.about p {
    font-size: 1.02rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 2;
    max-width: 720px;
    margin: 0 auto;
}

/* ---- Footer ---- */
.footer {
    background: var(--ink) !important;
    border-top: 1px solid rgba(184, 150, 10, 0.18);
    padding: 4rem 2rem 3rem;
}
.footer-disclaimer-title {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--gold-pale);
    opacity: 0.7;
    margin-bottom: 1.4rem;
}
.footer-disclaimer-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.85;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.footer-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}
.footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-med);
    position: relative;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-med);
}
.footer-links a:hover {
    color: var(--gold-pale);
}
.footer-links a:hover::after {
    width: 100%;
}
.footer-rera {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.4rem;
}
.footer-agent {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.65;
}

/* ---- Floating Action Buttons ---- */
.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-med),
                box-shadow var(--transition-med);
}
.fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.2);
}
.fab-phone {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5),
                0 0 0 4px rgba(184, 150, 10, 0.12);
}
.fab-phone:hover {
    border-color: var(--gold-light);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5),
                0 0 0 6px rgba(184, 150, 10, 0.18);
}
.fab-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.2);
}
.fab-whatsapp:hover {
    box-shadow: 0 10px 32px rgba(18, 140, 126, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ---- Modal ---- */
.modal-overlay {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.modal-box {
    background: linear-gradient(160deg, #0d1f18 0%, #111c16 100%);
    border: 1px solid rgba(184, 150, 10, 0.28);
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(184, 150, 10, 0.08) inset;
    padding: 3rem 2.5rem 2.5rem;
}
.modal-title {
    font-family: var(--font-display) !important;
    font-size: 1.9rem;
    font-weight: 600;
    color: #fff !important;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}
.modal-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-pale) !important;
    opacity: 0.85;
    font-size: 1rem;
    margin-bottom: 2rem;
}
.modal-close {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 1.3rem;
    transition: background var(--transition-med), border-color var(--transition-med), color var(--transition-med);
}
.modal-close:hover {
    background: rgba(184, 150, 10, 0.2) !important;
    border-color: var(--gold-light) !important;
    color: var(--gold-light) !important;
}
.modal-box .contact-form input,
.modal-box .phone-field-wrapper {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 2px;
}
.modal-box .contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.modal-box .contact-form input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(184, 150, 10, 0.1);
    outline: none;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.consent-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}
.consent-label span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.modal-box .country-select-btn {
    background: rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
}
.modal-box .cc-options {
    background: #1a2820;
    border: 1px solid rgba(184, 150, 10, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.modal-box .cc-option {
    color: rgba(255, 255, 255, 0.78);
}
.modal-box .cc-option:hover {
    background: rgba(184, 150, 10, 0.1);
}
.modal-box .cc-option.selected {
    background: rgba(184, 150, 10, 0.15);
    color: var(--gold-pale);
}
.modal-box .btn-primary {
    border-color: rgba(212, 175, 55, 0.5);
    color: #ffffff;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    padding: 14px 40px;
    background: linear-gradient(135deg, #c8960a 0%, #9a7000 100%);
    border-width: 1.5px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0 4px 18px rgba(184, 150, 10, 0.45);
    animation: ctaPulse 2.2s ease-in-out infinite;
    transition: background var(--transition-med),
                box-shadow var(--transition-med),
                transform var(--transition-med);
}
.modal-box .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(184, 150, 10, 0.6);
    animation-play-state: paused;
}
.modal-box .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(184, 150, 10, 0.3);
}

/* ---- Responsive Premium Adjustments ---- */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .pricing {
        padding: 4rem 1.2rem;
    }
    .pricing-title {
        font-size: 1.8rem !important;
    }
    .pricing-table thead th,
    .pricing-table tbody td {
        font-size: 0.82rem;
        padding: 0.9rem 0.8rem;
    }
    .gallery {
        padding: 4rem 1rem;
    }
    .gallery-item {
        height: 240px;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .modal-box {
        padding: 2rem 1.5rem;
    }
    .downloads-title,
    .gallery-title {
        font-size: 1.8rem !important;
    }
}
@media (max-width: 480px) {
    .hero-eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.22em;
    }
    .hero-content h1 {
        font-size: 1.7rem;
    }
}
