/* City Landing Pages - Basic Styling */

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

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;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #FF6B35;
}

.btn-nav-cta {
    background: #FF6B35;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.phone-nav {
    color: #FF6B35 !important;
    font-weight: 700;
}

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

/* Hero */
.hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #E55A2B;
}

.btn-secondary {
    background: white;
    color: #FF6B35;
    border: 2px solid white;
}

.btn-outline {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2C3E50;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #34495E;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.equipment-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

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

.equipment-card.featured {
    border: 3px solid #FF6B35;
}

.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B35;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.equipment-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    margin: 0;
}

.equipment-card .price {
    padding: 0 20px;
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.2rem;
}

.equipment-card p {
    padding: 10px 20px;
    color: #666;
}

.equipment-card .btn {
    margin: 0 20px 20px;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

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

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

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28A745;
    font-weight: 700;
    font-size: 1.2rem;
}

.event-types {
    list-style: none;
    padding: 0;
}

.event-types li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E0E0E0;
}

.booking-cta-box {
    background: #FFF3E0;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #FF6B35;
    margin-top: 30px;
}

.booking-cta-box h4 {
    color: #FF6B35;
    margin-bottom: 15px;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 10px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #FF6B35;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: #34495E;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.final-cta .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.trust-badges {
    margin-top: 20px;
}

.trust-badges .badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 25px;
}

/* Internal Links */
.internal-links {
    background: #F8F9FA;
    padding: 40px 0;
}

.internal-links h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.city-links, .equipment-links {
    line-height: 2;
}

.city-links a, .equipment-links a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.city-links a:hover, .equipment-links a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #2C3E50;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #FF6B35;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    text-align: center;
    color: #BDC3C7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
