:root {
    --primary: #d4af37;
    --secondary: #2c3e50;
    --dark: #1a1a1a;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--dark);
    padding-top: 76px;
    /* Account for fixed navbar */
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(26, 26, 26, 0.85)),
        url('/frontend/assets/img/IMG_3432\ copy.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    padding: 80px 0 60px;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gold-text {
    color: var(--primary);
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    background: var(--primary);
    color: var(--dark);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin: 10px;
}

.cta-button:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-button-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--primary);
}

.cta-button-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.pricing-section {
    padding: 80px 0;
    background: var(--light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-type {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.price-detail {
    color: #666;
    margin-bottom: 20px;
}

.discount-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

.feature-desc {
    color: #666;
}

.gallery-section {
    padding: 80px 0;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.location-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1577495508048-b635879837f1?w=1600') center/cover;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

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

.location-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.calculator-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    color: var(--dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.form-control,
.form-select {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.calculate-btn {
    background: var(--primary);
    color: var(--dark);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.result-box {
    background: linear-gradient(135deg, var(--primary), #f4d03f);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    display: none;
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0;
}

.testimonial-section {
    padding: 80px 0;
    background: var(--light);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    padding-top: 30px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.star-rating {
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(26, 26, 26, 0.95)),
        url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1600') center/cover;
    color: white;
    text-align: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.contact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #20ba5a;
    color: white;
    transform: scale(1.05);
}

.amenities-showcase {
    padding: 80px 0;
    background: white;
}

.amenity-item {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800') center/cover;
    height: 400px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px;
    color: white;
}

.floating-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    z-index: 1000;
    cursor: pointer;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: white !important;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Contact Page Styles --- */
.page-header-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.contact-page-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item .contact-icon {
    background: var(--primary);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item p {
    margin-bottom: 0;
    color: #666;
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-icon {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
}

.map-section {
    padding: 0;
    line-height: 0;
    /* Removes space below iframe */
}

/* --- Pricing Page Specifics --- */
.whats-included-section {
    padding: 80px 0;
    background: #fff;
}

.included-item {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.included-item .fa-check-circle {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.special-offers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(26, 26, 26, 0.95)),
        url('https://images.unsplash.com/photo-1600585152225-3579fe9d9ae9?w=1600') center/cover;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.offer-card .offer-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.calculator-page-section {
    padding: 80px 0;
    background: var(--light);
}

/* --- FAQ Page Specifics --- */
.faq-page-section {
    padding: 80px 0;
    background: var(--light);
}

.accordion-item {
    border: none !important;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header button {
    background: white !important;
    color: var(--secondary) !important;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
}

.accordion-header button:not(.collapsed) {
    color: var(--primary) !important;
}

.accordion-header button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    color: #666;
    line-height: 1.7;
}

/* --- Rules Page Specifics --- */
.rules-page-section {
    padding: 80px 0;
    background: #fff;
}

.rule-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.rule-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.rule-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin-bottom: 15px;
}

.rule-list {
    list-style-type: none;
    padding-left: 0;
    color: #666;
}

.rule-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.rule-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* --- Gallery Page Specifics --- */
.gallery-page-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-category {
    margin-bottom: 60px;
}

.gallery-category-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* --- About Page Specifics --- */
.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.about-story-section .section-title {
    text-align: left;
}

.our-values-section {
    padding: 80px 0;
    background: var(--light);
}

.value-card {
    padding: 30px;
    height: 100%;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-title.text-start {
    text-align: left !important;
}

/* --- 404 Page Specifics --- */
.error-page-section {
    padding: 100px 0;
    background: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content .error-title {
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0;
    text-shadow: 3px 3px 0px var(--light);
}

.error-content .section-title {
    margin-top: 0;
}

/* --- Properties Page Specifics --- */
.filter-section {
    padding: 40px 0;
    background: var(--light);
    border-bottom: 1px solid #e0e0e0;
}

.filter-form .form-control,
.filter-form .form-select {
    margin-bottom: 0;
    height: 50px;
}

.property-listing-section {
    padding: 80px 0;
    background: #fff;
}

.property-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.property-image {
    position: relative;
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-price {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.property-price span {
    font-weight: 400;
    font-size: 0.9rem;
}

.property-content {
    padding: 25px;
}

.property-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.property-location {
    color: #666;
    margin-bottom: 15px;
}

.property-specs {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    color: #666;
}

.property-specs span i {
    color: var(--primary);
    margin-right: 8px;
}

.cta-button-sm {
    padding: 10px 30px;
    font-size: 0.9rem;
}

.pagination .page-link {
    color: var(--secondary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* --- Property Details Page --- */
.property-details-section {
    padding: 60px 0;
    background: #fff;
}

.property-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
}

.property-meta {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.star-rating-display .fa-star {
    color: var(--primary);
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.main-image {
    grid-row: 1 / 3;
}

.main-image img,
.thumbnail-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.main-image img:hover,
.thumbnail-images img:hover {
    opacity: 0.9;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    grid-row: 1 / 3;
}

.property-host-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.host-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.property-specs-list {
    color: #666;
}

.host-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.details-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity-item-detail {
    font-size: 1rem;
    color: #333;
}

.amenity-item-detail i {
    width: 25px;
    color: var(--secondary);
}

.rule-list-detail {
    list-style: none;
    padding-left: 0;
}

.text-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
}

.booking-card-wrapper {
    position: sticky;
    top: 100px;
    /* Adjust based on navbar height */
}

.booking-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.booking-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 15px;
}

.date-picker:first-child {
    border-right: 1px solid #ccc;
}

.date-picker,
.guest-picker {
    padding: 10px;
}

.guest-picker {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 10px;
}

.booking-card label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.booking-card .form-control,
.booking-card .form-select {
    border: none;
    padding: 5px 0 0 0;
    margin: 0;
    box-shadow: none;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-item.total {
    font-size: 1.1rem;
}

/* --- Floating WhatsApp Icon --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* --- User Dashboard --- */
.dashboard-body {
    background-color: var(--light);
    padding-top: 0;
    /* Override default padding for dashboard */
}

.dashboard-wrapper {
    display: flex;
}

.dashboard-sidebar {
    width: 260px;
    background: var(--secondary);
    color: #fff;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
}

.sidebar-nav ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.sidebar-nav li a {
    display: block;
    padding: 15px 25px;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-nav li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sidebar-nav li.active a {
    background: var(--primary);
    color: var(--dark);
    border-left: 4px solid #fff;
}

.sidebar-nav li a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.dashboard-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    padding: 30px;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.stat-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-info h5 {
    margin-bottom: 5px;
    color: #666;
    font-size: 1rem;
}

.stat-card-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pagination .page-link {
    color: var(--secondary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* --- Login/Signup Page Specifics --- */
.login-section {
    padding: 80px 0;
    background: var(--light);
    min-height: 80vh;
}

.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: var(--primary) !important;
    border-bottom: 3px solid var(--primary);
    background-color: transparent !important;
}

.form-text {
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .floating-badge {
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .result-amount {
        font-size: 2rem;
    }

    body {
        padding-top: 66px;
    }
}