/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #2C3E50;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #3498DB, #2980B9);
    --shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    --hover-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* --- Vertically center navbar links and icons --- */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li a {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Photos/landing_page_header.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

/* About Section - Enhanced Design with Images */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C3E50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.about-overlay h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-overlay p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.mission-statement {
    margin-bottom: 3rem;
}

.mission-statement h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-statement h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(52, 152, 219, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    position: relative;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.feature-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem;
    position: relative;
}

.feature i {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: var(--transition-bounce);
}

.feature:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.feature-link i {
    font-size: 1rem;
    margin: 0;
    transition: var(--transition-smooth);
}

.feature-link:hover {
    color: var(--primary-color);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-overlay {
        padding: 2rem;
    }

    .about-overlay h3 {
        font-size: 2rem;
    }

    .about-overlay p {
        font-size: 1.2rem;
    }

    .about-text {
        padding: 2rem;
    }

    .mission-statement h3 {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

    .feature-content {
        padding: 1.5rem;
    }

    .feature h3 {
        font-size: 1.5rem;
    }

    .feature p {
        font-size: 1rem;
    }
}

/* Location Section */
.location {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C3E50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.location h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    aspect-ratio: 16/9;
    background: var(--white);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transform-origin: center;
}

.map:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1) brightness(1.05);
    transition: var(--transition-smooth);
}

.map:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1.1);
}

.location-info {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    transition: var(--transition-smooth);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.location-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: var(--transition-smooth);
}

.location-info:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--hover-shadow);
}

.location-info:hover::before {
    height: 8px;
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.location-info p {
    margin: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: var(--transition-elastic);
    padding: 0.8rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.location-info p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.05);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.location-info p:hover {
    transform: translateX(8px);
    color: var(--primary-color);
}

.location-info p:hover::before {
    transform: translateX(0);
}

.location-info i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    width: 24px;
    transition: var(--transition-bounce);
}

.location-info p:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

.location-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.location-details h4 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.location-details h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.location-details ul {
    list-style: none;
}

.location-details li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: var(--transition-elastic);
    padding: 0.8rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.location-details li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.05);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.location-details li:hover {
    transform: translateX(8px);
    color: var(--primary-color);
}

.location-details li:hover::before {
    transform: translateX(0);
}

.location-details i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    width: 24px;
    transition: var(--transition-bounce);
}

.location-details li:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

/* Responsive adjustments for location section */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map {
        aspect-ratio: 4/3;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-info h3 {
        font-size: 1.8rem;
    }

    .location-details h4 {
        font-size: 1.4rem;
    }

    .location-info p,
    .location-details li {
        padding: 0.6rem;
    }

    .location-info p:hover,
    .location-details li:hover {
        transform: translateX(5px);
    }
}

/* Offerings Section */
.offerings {
    padding: 8rem 0;
    background: var(--white);
}

.offerings h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.offering-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.offering-card h3 {
    padding: 1rem;
    color: var(--primary-color);
}

.offering-card p {
    padding: 0 1rem;
}

.learn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* FAQ and Contact Section */
.faq-contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C3E50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-section, .contact-section {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.faq-section h2, .contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.faq-section h2::after, .contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* FAQ Styles */
.faq-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

.faq-content::-webkit-scrollbar {
    width: 8px;
}

.faq-content::-webkit-scrollbar-track {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 4px;
}

.faq-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    transition: var(--transition-smooth);
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
    background: var(--gradient);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-question i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styles */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-section, .contact-section {
        padding: 2rem;
    }

    .faq-content {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .faq-section h2, .contact-section h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1.2rem;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .about-features,
    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

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

.hero-content, .feature, .offering-card {
    animation: fadeInUp 1s ease-out;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--white);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

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

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

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
        padding: 1.5rem;
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }
}

/* Add to existing animations */
.gallery-item {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.6s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.8s;
}

.gallery-item:nth-child(6) {
    animation-delay: 1s;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C3E50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    transition: var(--transition-smooth);
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
    background: var(--gradient);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-question i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for FAQ section */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}

/* Listings Page Styles */
.listings-header {
    padding: 100px 0 4rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
}

.listings-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.listings-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.listings {
    padding: 4rem 0;
    background: var(--light-gray);
}

/* Enhanced Filters Layout */
.listings-filters {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto auto;
    gap: 2rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.filter-group select {
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    cursor: pointer;
    width: 100%;
}

.filter-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-btn, .reset-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    height: fit-content;
    white-space: nowrap;
}

.filter-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.reset-btn {
    background: var(--light-gray);
    color: var(--text-color);
    border: none;
}

.filter-btn:hover, .reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

/* Enhanced Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.listing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid #edf2f7;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.listing-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.listing-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.listing-detail {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-size: 14px;
    gap: 6px;
}

.listing-detail i {
    color: #6366f1;
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.listing-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.status-available {
    background-color: rgba(72, 187, 120, 0.15);
    color: #38a169;
}

.status-rented {
    background-color: rgba(237, 137, 54, 0.15);
    color: #dd6b20;
}

.status-maintenance {
    background-color: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
}

.status-pending {
    background-color: rgba(102, 126, 234, 0.15);
    color: #4c51bf;
}

.status-inactive {
    background-color: rgba(160, 174, 192, 0.15);
    color: #718096;
}

.listing-actions {
    display: flex;
    margin-top: auto;
    padding-top: 12px;
    gap: 8px;
    border-top: 1px solid #edf2f7;
}

.action-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn {
    background-color: #ebf8ff;
    color: #3182ce;
}

.edit-btn:hover {
    background-color: #bee3f8;
}

.view-btn {
    background-color: #f0fff4;
    color: #38a169;
}

.view-btn:hover {
    background-color: #c6f6d5;
}

.delete-btn {
    background-color: #fff5f5;
    color: #e53e3e;
}

.delete-btn:hover {
    background-color: #fed7d7;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.badge.bg-light {
    background-color: #f8fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.badge.bg-secondary {
    background-color: #718096;
    color: white;
}

/* Responsive styles for the listing cards */
@media (max-width: 768px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-card {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Login Page Styles */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    padding: 0;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #3498db;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #2980b9;
}

.login-button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.error-message {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: none;
}

.loading-message {
    text-align: center;
    padding: 1.5rem;
    color: #2c3e50;
}

.sample-accounts {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.sample-accounts h3 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.account-list {
    display: grid;
    gap: 0.75rem;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #f8fafc;
    border-radius: 6px;
}

.account-item i {
    color: #3498db;
    font-size: 1rem;
}

.account-item span {
    color: #2c3e50;
    font-size: 0.9rem;
}

.account-item strong {
    color: #2c3e50;
}

/* Enhanced Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
}

/* Sidebar Styles */
.dashboard-sidebar {
    width: 280px;
    background: #fff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 1000;
    left: 0;
    top: 0;
}

.user-info {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.user-info i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
}

.user-info span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.dashboard-nav {
    padding: 1.5rem 0;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 1rem;
    margin: 0.5rem 0;
    border-radius: 0 25px 25px 0;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.dashboard-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dashboard-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    color: #4a90e2;
    padding-left: 2rem;
    background: rgba(74, 144, 226, 0.1);
}

.dashboard-nav a:hover::before,
.dashboard-nav a.active::before {
    transform: scaleY(1);
}

.dashboard-nav a:hover::after,
.dashboard-nav a.active::after {
    opacity: 0.05;
}

.dashboard-nav a i {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: #4a90e2;
    opacity: 0.7;
}

.dashboard-nav a:hover i,
.dashboard-nav a.active i {
    transform: translateX(5px) scale(1.1);
    opacity: 1;
}

.dashboard-nav a span {
    position: relative;
    transition: all 0.3s ease;
}

.dashboard-nav a:hover span,
.dashboard-nav a.active span {
    transform: translateX(5px);
}

/* Add subtle animation for active state */
@keyframes navPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.2);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.dashboard-nav a.active {
    animation: navPulse 2s infinite;
}

/* Main Content Area */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    transition: all 0.3s ease;
    min-height: 100vh;
    position: relative;
    background: #f8f9fa;
    padding-top: 5rem;
}

.dashboard-header {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.dashboard-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

/* Stats Grid Enhancement */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    position: relative;
    z-index: 1;
}

.stat-info {
    position: relative;
    z-index: 1;
}

.stat-info h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.stat-info p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Enhanced Table Styles */
.table-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th {
    background: #f8f9fa;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    border-bottom: 2px solid #eee;
}

.data-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    color: #666;
}

.data-table tbody tr {
    transition: all 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

/* Enhanced Status Badges */
.status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status.active {
    background: #e3fcef;
    color: #00a854;
}

.status.pending {
    background: #fff7e6;
    color: #fa8c16;
}

.status.available {
    background: #e6f7ff;
    color: #1890ff;
}

.status.confirmed {
    background: #f6ffed;
    color: #52c41a;
}

/* Enhanced Action Buttons */
.action-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.edit {
    color: #4a90e2;
}

.action-btn.delete {
    color: #ff4d4f;
}

.action-btn.view {
    color: #52c41a;
}

.action-btn:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.05);
}

/* Add New Button Enhancement */
.add-btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.add-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        width: 240px;
    }
    
    .dashboard-main {
        margin-left: 240px;
        padding-top: 4rem;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .dashboard-main {
        margin-left: 0;
        padding: 1rem;
        padding-top: 3rem;
    }

    .dashboard-header {
        margin-top: 1rem;
    }
}

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

.dashboard-section {
    animation: fadeIn 0.3s ease;
}

/* Login Link Styles */
.login-link {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}

.login-link i {
    font-size: 1rem;
    min-width: 1.2em;
    display: inline-block;
    text-align: center;
    transition: transform 0.3s ease;
}

.login-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.login-link:hover i {
    transform: translateX(3px);
}

.login-link::after {
    display: none;
}

/* Responsive adjustments for login link */
@media (max-width: 768px) {
    .login-link {
        margin: 1rem 0;
        width: 100%;
        justify-content: center;
    }
}

/* Ensure content is properly layered */
.dashboard-content {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

/* Add spacing for fixed elements */
.dashboard-spacer {
    height: 3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Modal Animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .form-group {
        padding: 0 1rem;
    }

    .submit-btn {
        width: calc(100% - 2rem);
        margin: 1rem;
    }
}

/* Table Responsive Styles */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

/* Enhanced Table Styles */
.data-table {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
}

.data-table th {
    background: #f8f9fa;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    border-bottom: 2px solid #eee;
    white-space: nowrap;
}

.data-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    color: #666;
    vertical-align: middle;
}

.data-table tbody tr {
    transition: all 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

/* Action Buttons */
.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.action-btn i {
    font-size: 0.9rem;
}

.action-btn.edit {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

.action-btn.delete {
    background: rgba(255, 77, 79, 0.1);
    color: #ff4d4f;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Status Badges */
.status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status.active {
    background: #e3fcef;
    color: #00a854;
}

.status.inactive {
    background: #fff1f0;
    color: #ff4d4f;
}

.status.suspended {
    background: #fff7e6;
    color: #fa8c16;
}

/* Modal Enhancements */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 1rem;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

/* Form Enhancements */
.form-group {
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .data-table th,
    .data-table td {
        padding: 1rem;
    }

    .action-btn {
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .add-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        margin: 1rem auto;
    }

    .form-group {
        padding: 0 1rem;
    }

    .submit-btn {
        width: calc(100% - 2rem);
        margin: 1rem;
    }

    .action-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .status {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Add New Button Enhancement */
.add-btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.add-btn i {
    font-size: 1.1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1100;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        text-align: center;
    }
}

/* Listings Container and Header Styles */
.listings-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 24px;
    margin-bottom: 30px;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.listings-search {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.listings-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 16px;
}

.listings-search input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    transition: all 0.2s ease;
}

.listings-search input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.listings-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background-color: #edf2f7;
}

.filter-btn.active {
    background-color: #6366f1;
    color: white;
    border-color: #6366f1;
}

.add-listing-btn {
    padding: 10px 18px;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

.add-listing-btn:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.4);
}

.add-listing-btn i {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .listings-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .listings-filters {
        order: 3;
        justify-content: center;
    }
    
    .add-listing-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced public listing card styles for listings.html */
.listings-grid .listing-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    border: none;
}

.listings-grid .listing-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.listings-grid .listing-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.listings-grid .listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.listings-grid .listing-item:hover .listing-image img {
    transform: scale(1.08);
}

.listings-grid .listing-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.listings-grid .status-available {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.listings-grid .status-rented {
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.listings-grid .status-maintenance {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.listings-grid .listing-features {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.listings-grid .listing-features span {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #4b5563;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.listings-grid .listing-features span:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    color: #10b981;
}

.listings-grid .listing-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listings-grid .listing-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.4;
}

.listings-grid .listing-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.listings-grid .listing-details span {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listings-grid .listing-details i {
    color: #10b981;
    font-size: 0.95rem;
}

.listings-grid .listing-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.listings-grid .listing-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.listings-grid .listing-amenities span {
    font-size: 0.8rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.listings-grid .listing-amenities span:hover {
    background-color: #e5e7eb;
    color: #4b5563;
}

.listings-grid .listing-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.listings-grid .listing-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #10b981; /* Green pricing */
    letter-spacing: -0.5px;
}

.listings-grid .listing-price .period {
    font-size: 0.95rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.listings-grid .listing-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.listings-grid .listing-actions a {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 0.5rem;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: capitalize;
    border: 1px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Minimalistic button styles */
.listings-grid .listing-actions a.view-details {
    background-color: transparent;
    color: #10b981;
    border: 1px solid #10b981;
}

.listings-grid .listing-actions a.contact-agent {
    background-color: #10b981;
    color: white;
    font-size: 0.85rem;
    padding: 0.85rem 0.3rem;
}

.listings-grid .listing-actions a.schedule-viewing {
    background-color: #4A90E2;
    color: white;
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.listings-grid .listing-actions a.schedule-viewing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
    z-index: -1;
}

.listings-grid .listing-actions a.schedule-viewing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.3);
    color: white;
    background-color: #3A7BC8;
}

.listings-grid .listing-actions a.schedule-viewing:hover::before {
    left: 100%;
}

@media (max-width: 900px) {
    .listings-grid .listing-content {
        padding: 1.25rem;
    }
    
    .listings-grid .listing-price .price {
        font-size: 1.5rem;
    }
    
    .listings-grid .listing-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .listings-grid .listing-actions a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .listings-grid .listing-actions a.contact-agent {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 600px) {
    .listings-grid .listing-item {
        margin-bottom: 1.5rem;
    }
    
    .listings-grid .listing-content {
        padding: 1rem;
    }
    
    .listings-grid .listing-price .price {
        font-size: 1.25rem;
    }
}

.listings-grid .listing-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.listings-grid .listing-actions a.view-details:hover {
    background-color: rgba(16, 185, 129, 0.1);
}

.listings-grid .listing-actions a.contact-agent:hover {
    background-color: #0d9669;
}

.listings-grid .listing-actions a.schedule-viewing {
    background-color: #4A90E2;
    color: white;
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.listings-grid .listing-actions a.schedule-viewing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
    z-index: -1;
}

.listings-grid .listing-actions a.schedule-viewing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.3);
    color: white;
    background-color: #3A7BC8;
}

.listings-grid .listing-actions a.schedule-viewing:hover::before {
    left: 100%;
}

@media (max-width: 900px) {
    .listings-grid .listing-content {
        padding: 1.25rem;
    }
    
    .listings-grid .listing-price .price {
        font-size: 1.5rem;
    }
    
    .listings-grid .listing-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .listings-grid .listing-actions a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .listings-grid .listing-actions a.contact-agent,
    .listings-grid .listing-actions a.schedule-viewing {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

/* Skeleton Loader Styles */
.skeleton-card {
    background: #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    min-height: 260px;
    margin-bottom: 0;
    animation: skeletonPulse 1.2s infinite ease-in-out;
}
.skeleton-bg {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.2s infinite linear;
    border-radius: 8px;
}
@keyframes skeletonPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Premium Penthouse Showcase Section */
.penthouse-showcase {
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c2c2c 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.penthouse-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Premium Header */
.penthouse-header {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
}

.luxury-badge i {
    font-size: 1rem;
}

.penthouse-header h2 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #DAA520, #fff, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-shadow: none;
}

.penthouse-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Segoe UI', sans-serif;
}

.penthouse-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #DAA520;
    margin-bottom: 2rem;
    font-style: italic;
}

.penthouse-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

/* Hero Showcase */
.penthouse-hero-section {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.hero-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 4rem 3rem 3rem;
}

.hero-content h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #DAA520;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #DAA520;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.amenity-highlight {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
}

.amenity-highlight:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.1);
}

.amenity-highlight img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.amenity-info {
    padding: 1rem;
}

.amenity-info h4 {
    font-size: 1.2rem;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.amenity-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Luxury Features */
.luxury-features {
    padding: 6rem 0;
    background: rgba(255,255,255,0.02);
}

.luxury-features h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: #DAA520;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 165, 32, 0.3);
    box-shadow: 0 30px 80px rgba(218, 165, 32, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Premium Gallery */
.premium-gallery {
    padding: 6rem 0;
}

.premium-gallery h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: #DAA520;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-section h4 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
    position: relative;
}

.gallery-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #DAA520;
}

.gallery-grid-premium {
    display: grid;
    gap: 2rem;
}

.gallery-section:nth-child(1) .gallery-grid-premium {
    grid-template-columns: 1fr 1fr 1fr;
}

.gallery-section:nth-child(2) .gallery-grid-premium {
    grid-template-columns: 1fr 1fr;
}

.gallery-section:nth-child(3) .gallery-grid-premium {
    grid-template-columns: 1fr 1fr 1fr;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}



.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(218, 165, 32, 0.2);
}

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.card-overlay h5 {
    font-size: 1.3rem;
    color: #DAA520;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Call to Action */
.penthouse-cta-section {
    padding: 3rem 0;
    text-align: center;
}



.btn-primary-luxury {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.3);
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(218, 165, 32, 0.4);
    background: linear-gradient(135deg, #B8860B, #DAA520);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .penthouse-header h2 {
        font-size: 3.5rem;
    }
    
    .penthouse-hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-container {
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-section:nth-child(1) .gallery-grid-premium,
    .gallery-section:nth-child(2) .gallery-grid-premium,
    .gallery-section:nth-child(3) .gallery-grid-premium {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .penthouse-header {
        padding: 4rem 0 2rem;
    }
    
    .penthouse-header h2 {
        font-size: 2.5rem;
    }
    
    .penthouse-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .penthouse-tagline {
        font-size: 1.2rem;
    }
    
    .penthouse-description {
        font-size: 1rem;
    }
    
    .penthouse-hero-section {
        padding: 2rem 0;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat .number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-section:nth-child(1) .gallery-grid-premium,
    .gallery-section:nth-child(2) .gallery-grid-premium,
    .gallery-section:nth-child(3) .gallery-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .gallery-card {
        height: 250px;
    }
    

    

}

@media (max-width: 480px) {
    .penthouse-header h2 {
        font-size: 2rem;
    }
    
    .penthouse-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .luxury-features h3,
    .premium-gallery h3 {
        font-size: 2rem;
    }
    
    .hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.8rem;
    }
    
    .amenity-highlight img {
        height: 150px;
    }
    
    .btn-primary-luxury {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}