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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: #006641;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-brand .logo {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #006641;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #006641;
    color: white;
}

.btn-primary:hover {
    background-color: #004d2f;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e8e8e8;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .container {
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.hero .tagline {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-nav:hover {
    background: rgba(255,255,255,0.5);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #004d2f 0%, #006641 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #006641;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #006641;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    color: #666;
}

/* Featured Stores Section */
.featured-stores {
    padding: 80px 0;
}

.featured-stores h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #006641;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.store-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.store-card .store-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.store-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #006641;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}

.store-location {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #006641;
}

.services h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.services p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-item img {
    width: 100%;
    height: auto;
}

.service-item h4 {
    font-size: 18px;
    color: #006641;
    margin: 15px 15px 5px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    margin: 0 15px 15px;
    max-width: none;
}

/* Quick Links Section */
.quick-links {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.quick-links-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.quick-link i {
    font-size: 24px;
    color: #006641;
}

.quick-link span {
    font-size: 16px;
    font-weight: 500;
}

.quick-link:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    background-color: #006641;
}

.quick-link:hover i,
.quick-link:hover span {
    color: white;
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.features-list {
    text-align: center;
}

.features-list h3 {
    font-size: 28px;
    color: #006641;
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item h4 {
    font-size: 18px;
    color: #333;
    margin: 15px 0 10px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #006641;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item li {
    color: #666;
    font-size: 14px;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-note {
    font-size: 13px !important;
    color: #888 !important;
    font-style: italic;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.social-media-section h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.social-media-section p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 24px;
    color: #006641;
}

.social-link span {
    font-size: 16px;
    font-weight: 500;
}

.social-link:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.social-link.facebook:hover i {
    color: #1877f2;
}

.social-link.instagram:hover i {
    color: #e4405f;
}

/* Map Section */
.map-section {
    margin-bottom: 80px;
}

.map-section h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
    text-align: center;
}

.map-section p {
    color: #666;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Directory Page */
.directory-content {
    padding: 60px 0;
}

.directory-intro {
    text-align: center;
    margin-bottom: 50px;
}

.directory-intro h2 {
    font-size: 42px;
    color: #006641;
    margin-bottom: 15px;
}

.directory-intro p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.directory-category {
    margin-bottom: 50px;
}

.directory-category h3 {
    font-size: 28px;
    color: #006641;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.directory-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.directory-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.directory-item img {
    width: 100%;
    height: auto;
}

.directory-item h3 {
    padding: 15px 20px 5px;
    color: #333;
}

.directory-item .category {
    padding: 0 20px 5px;
    color: #006641;
    font-size: 14px;
    font-weight: 500;
}

.directory-item .location {
    padding: 0 20px 15px;
    color: #666;
    font-size: 14px;
}

/* Shops Page */
.shops-content {
    padding: 60px 0;
}

.shops-intro {
    text-align: center;
    margin-bottom: 50px;
}

.shops-intro h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.shops-intro p {
    color: #666;
    font-size: 18px;
}

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

.shop-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.shop-card img {
    width: 100%;
    height: auto;
}

.shop-info {
    padding: 20px;
}

.shop-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.shop-info p {
    color: #666;
    font-size: 14px;
}

/* Categories Page */
.categories-content {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.category-card img {
    width: 100%;
    height: auto;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
    padding: 20px;
    color: white;
}

.category-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.category-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Dining Page */
.dining-content {
    padding: 60px 0;
}

.dining-intro {
    text-align: center;
    margin-bottom: 50px;
}

.dining-intro h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.dining-intro p {
    color: #666;
    font-size: 18px;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dining-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dining-card.featured {
    grid-column: span 2;
}

.dining-card img {
    width: 100%;
    height: auto;
}

.dining-card.featured img {
    height: auto;
}

.dining-info {
    padding: 20px;
}

.dining-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #006641;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.dining-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.dining-info .cuisine {
    color: #006641;
    font-size: 14px;
    font-weight: 500;
}

.dining-info .location {
    color: #666;
    font-size: 14px;
}

.dining-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dining-feature {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.dining-feature h3 {
    color: #333;
    margin: 15px 0 10px;
}

.dining-feature p {
    color: #666;
    font-size: 14px;
}

/* Entertainment Page */
.entertainment-content {
    padding: 60px 0;
}

.entertainment-intro {
    text-align: center;
    margin-bottom: 50px;
}

.entertainment-intro h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.entertainment-intro p {
    color: #666;
    font-size: 18px;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.entertainment-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.entertainment-card img {
    width: 100%;
    height: auto;
}

.entertainment-info {
    padding: 20px;
}

.entertainment-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e91e63;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.entertainment-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.entertainment-info p {
    color: #666;
    font-size: 14px;
}

/* Events Page */
.events-content {
    padding: 60px 0;
}

.events-intro {
    text-align: center;
    margin-bottom: 50px;
}

.events-intro h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.events-intro p {
    color: #666;
    font-size: 18px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

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

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

.event-card.featured {
    grid-column: span 2;
}

.event-card img {
    width: 100%;
    height: auto;
}

.event-card.featured img {
    height: auto;
}

.event-info {
    padding: 20px;
}

.event-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #006641;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.event-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.event-info .event-date {
    color: #006641;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.event-info .event-location {
    color: #666;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 8px;
}

.event-info p {
    color: #666;
    font-size: 14px;
}

/* Events CTA Section */
.events-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #006641 0%, #008055 100%);
    border-radius: 12px;
    color: white;
}

.events-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.events-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.events-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #006641;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-social i {
    font-size: 20px;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Gallery Page */
.gallery-content {
    padding: 60px 0;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-intro h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.gallery-intro p {
    color: #666;
    font-size: 18px;
}

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

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

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s 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);
}

.gallery-overlay h3 {
    font-size: 18px;
}

/* Leasing Page */
.leasing-content {
    padding: 60px 0;
}

.leasing-intro {
    text-align: center;
    margin-bottom: 50px;
}

.leasing-intro h2 {
    font-size: 36px;
    color: #006641;
    margin-bottom: 15px;
}

.leasing-intro p {
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.leasing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.leasing-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.leasing-card.featured {
    grid-column: span 2;
}

.leasing-card img {
    width: 100%;
    height: auto;
}

.leasing-card.featured img {
    height: auto;
}

.leasing-info {
    padding: 20px;
}

.leasing-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #006641;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.leasing-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.leasing-info p {
    color: #666;
    font-size: 14px;
}

.leasing-features {
    margin-bottom: 50px;
}

.leasing-features h3 {
    text-align: center;
    font-size: 28px;
    color: #006641;
    margin-bottom: 40px;
}

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

.leasing-feature {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.leasing-feature h4 {
    color: #333;
    margin: 15px 0 10px;
}

.leasing-feature p {
    color: #666;
    font-size: 14px;
}

.leasing-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #004d2f 0%, #006641 100%);
    border-radius: 8px;
    color: white;
}

.leasing-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.leasing-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.leasing-cta .btn-primary {
    background-color: white;
    color: #006641;
}

.leasing-cta .btn-primary:hover {
    background-color: #f5f5f5;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.mall-info h2 {
    font-size: 48px;
    font-weight: 700;
    color: #006641;
    line-height: 1.1;
}

.mall-info h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.hours-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 8px 0;
    color: #ccc;
    font-size: 16px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.quick-links-list {
    list-style: none;
}

.quick-links-list li {
    padding: 8px 0;
}

.quick-links-list li a {
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links-list li a:hover {
    color: #006641;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #006641;
    transform: translateY(-3px);
}

.footer-social-links a.fa-facebook-f:hover {
    background-color: #1877f2;
}

.footer-social-links a.fa-instagram:hover {
    background-color: #e4405f;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.copyright p {
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dining-card.featured,
    .event-card.featured,
    .leasing-card.featured {
        grid-column: span 1;
    }

    .dining-card.featured img,
    .event-card.featured img,
    .leasing-card.featured img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 12px 15px;
    }

    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .tagline {
        font-size: 16px;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .why-choose-us h2,
    .featured-stores h2,
    .services h2,
    .about-text h2,
    .shops-intro h2,
    .dining-intro h2,
    .entertainment-intro h2,
    .events-intro h2,
    .gallery-intro h2,
    .leasing-intro h2 {
        font-size: 28px;
    }

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

    .mall-info h2 {
        font-size: 36px;
    }

    .mall-info h3 {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hours-list {
        display: inline-block;
        text-align: left;
    }

    .leasing-cta {
        padding: 30px 20px;
    }

    .leasing-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .why-choose-us,
    .featured-stores,
    .services,
    .about-content,
    .contact-content,
    .directory-content,
    .shops-content,
    .dining-content,
    .entertainment-content,
    .events-content,
    .gallery-content,
    .leasing-content {
        padding: 40px 0;
    }

    .features,
    .store-grid,
    .directory-grid,
    .shops-grid,
    .dining-grid,
    .entertainment-grid,
    .events-grid,
    .gallery-grid,
    .leasing-grid,
    .features-grid,
    .dining-features {
        grid-template-columns: 1fr;
    }
}
