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

body {
    font-family: 'Arial', serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a1a1a 100%);
    color: #fff;
    line-height: 1.6;
}

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

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
}

/* Custom colors for each social platform */
.social-links a[href*="facebook"]:hover { color: #1877f2; }
.social-links a[href*="instagram"]:hover { color: #e4405f; }
.social-links a[href*="twitter"]:hover, 
.social-links a[href*="x.com"]:hover { color: #000; }
.social-links a[href*="yelp"]:hover { color: #d32323; }
.social-links a[href*="maps"]:hover { color: #ea4335; }

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    .logo img {
        height: 45px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
    }

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

    .nav-links li {
        padding: 0.5rem 0;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Tablet Logo */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo img {
        height: 70px;
    }
}

/* Main Content */
main {
    margin-top: 80px;
}

.section {
    padding: 4rem 0;
    min-height: 500px;
}

.section:nth-child(even) {
    background: 
        linear-gradient(rgba(52, 73, 94, 0.1), rgba(52, 73, 94, 0.05)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 100"><polygon points="0,100 80,40 160,60 240,30 320,50 400,35 400,100" fill="%2334495e" opacity="0.1"/></svg>') repeat-x bottom;
}

h1, h2 {
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2.5rem;
}

/* Hero Section */
.home {
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23FFD700;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%23FF6B35;stop-opacity:0.2" /></linearGradient></defs><rect fill="url(%23skyGrad)" width="1200" height="300"/><polygon points="0,600 200,200 400,300 600,150 800,250 1000,180 1200,220 1200,600" fill="%232c3e50" opacity="0.8"/><polygon points="0,600 150,300 350,400 550,250 750,350 950,280 1200,320 1200,600" fill="%2334495e" opacity="0.6"/><polygon points="0,600 100,400 300,500 500,350 700,450 900,380 1200,420 1200,600" fill="%231a252f" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.home-content {
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Property showcase section */
.property-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9), rgba(52, 73, 94, 0.8));
}

.property-image-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #d4af37;
}

.property-image {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) saturate(1.1);
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.property-overlay h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.property-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Dancer Profiles */
.dancer-profile {
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.dancer-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #d4af37;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
}

/* Events Section Layout */
.events-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.events-column {
    display: flex;
    flex-direction: column;
}

.events-column h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Events Calendar */
.event-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    backdrop-filter: blur(10px);
}

/* Bracket styling for event cards */
.event-bracket {
    position: relative;
    padding-left: 2rem;
}

.event-bracket::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.event-bracket::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 15px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px 2px 0 0;
}

.event-bracket:last-child::after {
    top: auto;
    bottom: 0;
    border-radius: 0 0 2px 2px;
}

.event-date {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Advertisers Section */
.advertisers-column {
    display: flex;
    flex-direction: column;
}

.ad-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.ad-card h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ad-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ad-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.ad-link:hover {
    color: #f4d03f;
}

/* Google Map Section */
.map-section {
    padding: 0;
    background: #1a1a1a;
}

.map-container {
    width: 100%;
    height: 400px;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.2);
}

/* About Page Specific Styles */
.our-story {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.8), rgba(52, 73, 94, 0.6));
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.story-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image,
.experience-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.about-image-placeholder p {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.values-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.1), rgba(26, 37, 47, 0.2));
}

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

.value-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.value-card h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
}

.experience-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9), rgba(52, 73, 94, 0.7));
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.experience-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.experience-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.experience-list {
    color: #ccc;
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.experience-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.experience-list li::before {
    content: "?";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.experience-list strong {
    color: #d4af37;
}

.community-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(26, 37, 47, 0.3));
}

.community-content {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.community-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1.1rem;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9), rgba(52, 73, 94, 0.8));
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.secondary {
    background: transparent;
    color: #d4af37;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #d4af37;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

/* Contact Page Specific Styles */
.contact-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.8), rgba(52, 73, 94, 0.6));
}

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

.contact-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.contact-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.phone-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #f4d03f;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.contact-map-section {
    padding: 4rem 0 2rem;
    background: #1a1a1a;
}

.contact-map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    max-width: 1200px;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.2);
}

.additional-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.1), rgba(26, 37, 47, 0.2));
}

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

.info-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Directions Page Styles */
.directions-main {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.8), rgba(52, 73, 94, 0.6));
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #000;
}

.address-card h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.address {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.phone {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.directions-btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.driving-directions {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.driving-directions h4 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.directions-list {
    list-style: none;
    padding: 0;
}

.directions-list li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.directions-list li::before {
    content: "?";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.directions-list strong {
    color: #d4af37;
}

.map-container-large {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.map-container-large iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(15%) contrast(1.1);
}

/* Nearby Sections */
.nearby-section {
    padding: 4rem 0;
}

.nearby-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.1), rgba(26, 37, 47, 0.2));
}

.nearby-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.8), rgba(52, 73, 94, 0.6));
}

.nearby-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nearby-section h2 i {
    color: #d4af37;
    font-size: 2rem;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

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

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

.nearby-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.nearby-card.featured {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(52, 73, 94, 0.3));
}

.nearby-card h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.nearby-card p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.distance {
    color: #d4af37 !important;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.distance i {
    font-size: 0.8rem;
}

.details {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Transportation Tips Section */
.tips-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(26, 37, 47, 0.3));
}

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

.tip-card {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(44, 62, 80, 0.2));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.tip-card h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
footer {
    background: 
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><polygon points="0,200 240,80 480,120 720,60 960,100 1200,70 1200,200" fill="%231a252f" opacity="0.6"/><polygon points="0,200 200,120 400,160 600,100 800,140 1000,110 1200,130 1200,200" fill="%2334495e" opacity="0.4"/></svg>') repeat-x top;
    padding: 3rem 0 1rem;
    text-align: center;
}

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

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

.footer-section div {
    margin-top: 1rem;
    text-align: center;
}

.contact-info {
    color: #ccc;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .events-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .property-overlay h3 {
        font-size: 1.5rem;
    }
    
    .property-overlay p {
        font-size: 1rem;
    }

    .story-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content h2,
    .experience-content h2 {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 80%;
        max-width: 300px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-map-container {
        height: 350px;
        border-radius: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Directions page mobile styles */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container-large {
        height: 300px;
    }
    
    .nearby-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .airport-grid,
    .government-grid {
        grid-template-columns: 1fr;
    }
    
    .nearby-card {
        padding: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tip-card {
        padding: 2rem;
    }
    
    .nearby-section h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}