/* ============================================
   ASPIRE TOWER - Custom Styles
   Sales-focused design for Filipino market
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --accent-color: #d69e2e;
    --accent-light: #ecc94b;
    --success-color: #38a169;
    --text-dark: #1a202c;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-cream: #fffaf0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent !important;
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.85) 100%),
                url('https://cdn.drc.zone/img/aspire/AT_1BR_A.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInRight 0.8s ease 0.3s both;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.price-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.price-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.price-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-amount .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-amount .suffix {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-type {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.exclusive-badge {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #feb2b2;
}

.exclusive-badge small {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.exclusive-badge i {
    color: #d69e2e;
}

.price-card-body {
    margin-bottom: 1.5rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8fafc;
}

.price-feature:last-child {
    border-bottom: none;
}

.price-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-feature-icon i {
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.price-feature span {
    font-size: 0.95rem;
    color: #475569;
}

.price-feature strong {
    color: var(--primary-color);
}

.btn-price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.btn-price-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
    color: var(--text-dark);
}

.btn-price-cta i {
    transition: transform 0.3s ease;
}

.btn-price-cta:hover i {
    transform: translateX(4px);
}

/* Feature Cards - Why Choose Us */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.feature-icon-circle i {
    font-size: 2rem;
    color: white;
}

.feature-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Unit Cards */
.unit-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Unit Card Image */
.unit-img {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit-img .unit-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.unit-img .unit-type-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(5px);
}

.unit-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1.5rem;
    position: relative;
}

.unit-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.unit-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.unit-area {
    opacity: 0.9;
    font-size: 0.875rem;
}

.unit-card-body {
    padding: 1.5rem;
}

.unit-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.unit-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.unit-details li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

.unit-details li:last-child {
    border-bottom: none;
}

.unit-details .label {
    color: var(--text-muted);
}

.unit-details .value {
    font-weight: 600;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-tab {
    background: white;
    border: 2px solid #e2e8f0;
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Payment Section */
.payment-section {
    background: var(--bg-light);
}

.payment-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.payment-card:hover {
    box-shadow: var(--shadow-lg);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.payment-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Computation Table */
.computation-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.computation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1.5rem;
}

.computation-body {
    padding: 1.5rem;
}

.computation-table {
    width: 100%;
    margin-bottom: 0;
}

.computation-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.computation-table tr:last-child td {
    border-bottom: none;
}

.computation-table .label {
    color: var(--text-muted);
}

.computation-table .value {
    text-align: right;
    font-weight: 600;
}

.computation-table .total-row td {
    background: var(--bg-cream);
    font-size: 1.125rem;
    padding: 1rem;
    border-radius: 8px;
}

.computation-table .total-row .value {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Amenities Section */
.amenity-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--text-dark);
}

.amenity-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.amenity-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Amenity Cards with Images */
.amenity-card-img {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.amenity-card-img .amenity-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.amenity-card-img .amenity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.amenity-card-img:hover .amenity-img img {
    transform: scale(1.1);
}

.amenity-card-img .amenity-info {
    padding: 1rem 1.25rem;
    text-align: center;
    background: white;
}

.amenity-card-img .amenity-info h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.amenity-card-img .amenity-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 767px) {
    .amenity-card-img .amenity-img {
        height: 120px;
    }

    .amenity-card-img .amenity-info {
        padding: 0.75rem 1rem;
    }

    .amenity-card-img .amenity-info h6 {
        font-size: 0.875rem;
    }
}

/* Location Section */
.vicinity-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.vicinity-map-wrapper img {
    display: block;
}

.location-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

.location-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.location-highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.location-highlight-icon i {
    font-size: 1.75rem;
    color: white;
}

.location-highlight-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.location-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.location-list-simple li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-muted);
}

.location-list-simple li:last-child {
    border-bottom: none;
}

.location-list-simple li strong {
    color: var(--text-dark);
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    height: 200px;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0;
}

/* Gallery Filter Tabs */
#galleryTabs {
    gap: 0.5rem;
}

.gallery-filter {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.gallery-filter:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.gallery-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.gallery-photo {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: white;
    margin-right: 0.5rem;
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
}

.gallery-overlay {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

/* Inquiry Form */
.inquiry-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
}

.inquiry-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Developer Section */
.developer-section {
    background: white;
}

.developer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.project-badge {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    margin: 0.5rem;
}

.project-badge i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-desc {
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

/* Buttons */
.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.4);
    color: var(--text-dark);
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.4);
}

.btn-outline-light {
    border-width: 2px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.phone {
    background: var(--primary-color);
}

.floating-btn.messenger {
    background: #0084FF;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease both;
}

.animate-fade-down {
    animation: fadeInDown 0.8s ease both;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease both;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease both;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent-color);
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-indicators {
        gap: 2rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Compact Price Card for Mobile */
    .price-card {
        margin-top: 2rem;
        padding: 1.25rem;
        border-radius: 16px;
    }

    .price-card-badge {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .price-card-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .price-label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .price-amount .currency {
        font-size: 1rem;
    }

    .price-amount .amount {
        font-size: 2.5rem;
    }

    .price-amount .suffix {
        font-size: 1.25rem;
    }

    .price-type {
        font-size: 0.8rem;
    }

    .exclusive-badge {
        padding: 0.4rem 0.5rem;
        margin-top: 0.5rem !important;
    }

    .exclusive-badge small {
        font-size: 0.65rem;
    }

    .price-card-body {
        margin-bottom: 1rem;
    }

    .price-feature {
        padding: 0.5rem 0;
    }

    .price-feature-icon {
        width: 20px;
        height: 20px;
    }

    .price-feature-icon i {
        font-size: 0.65rem;
    }

    .price-feature span {
        font-size: 0.85rem;
    }

    .btn-price-cta {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .back-to-top {
        left: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
    }

    .inquiry-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .unit-card-header {
        padding: 1rem;
    }

    .unit-card-body {
        padding: 1rem;
    }

    .amenity-card {
        padding: 1.5rem;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Form Highlight Animation */
.highlight-form {
    animation: highlightPulse 0.5s ease 2;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(214, 158, 46, 0);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(214, 158, 46, 0.3);
    }
}

.inquiry-form-card {
    transition: box-shadow 0.3s ease;
}

/* Print Styles */
@media print {
    .navbar,
    .floating-cta,
    .back-to-top,
    .inquiry-section,
    footer {
        display: none !important;
    }

    section {
        page-break-inside: avoid;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
}
