/* ==========================================================================
   Helios Premium Theme - Main Styles
   ========================================================================== */

/* CSS Variables */
:root {
    --gold-primary: #dcc87f;
    --gold-secondary: #cdb048;
    --gold-light: #ece1b9;
    --black: #000000;
    --grey-light: #f5f5f5;
    --grey-dark: #333333;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    padding-top: 80px; /* Prevent header overlap */
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

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

/* Section Backgrounds */
.section-black {
    background: #000;
    color: #fff;
}

.section-grey {
    background: #f5f5f5;
    color: #333;
}

/* Gold Gradient Text */
.gold-text-gradient {
    background: linear-gradient(135deg, #dcc87f 0%, #cdb048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-gradient {
    background: linear-gradient(135deg, #dcc87f 0%, #cdb048 100%);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dcc87f 0%, #cdb048 100%);
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 200, 127, 0.3);
}

.btn-gold-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #dcc87f;
    font-weight: 600;
    border: 2px solid #dcc87f;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-gold-outline:hover {
    background: #dcc87f;
    color: #000;
}

/* Navigation */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 200, 127, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: steering-turn 3s ease-in-out infinite;
}

@keyframes steering-turn {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-tagline {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.nav-links a:hover {
    color: var(--gold-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 768px) {
    .hero-section {
        height: 85vh;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 2rem;
    }
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gold-primary);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Trust Badges */
.trust-badges-section {
    padding: 3rem 0;
    background: #f5f5f5;
}

.helios-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.metric-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 200, 127, 0.1);
    border-radius: 50%;
    padding: 1rem;
}

.metric-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .helios-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
    
    .metric-icon {
        width: 60px;
        height: 60px;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #999;
}

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

.service-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #999;
    margin-bottom: 1.5rem;
}

/* Why Choose Us */
.why-choose-section {
    padding: 5rem 0;
}

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

.feature-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

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

.testimonial-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 1rem;
    padding: 2rem;
}

.rating {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.verified-badge {
    font-size: 0.875rem;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #999;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    color: #999;
    padding: 3rem 0 1rem;
    border-top: 1px solid #222;
}

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

.footer-title {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: var(--gold-primary);
}

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

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 400px;
    max-width: calc(100vw - 2rem);
    height: 600px;
    max-height: calc(100vh - 4rem);
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 999999;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-info h4 {
    margin: 0;
    color: #000;
    font-size: 1rem;
}

.chat-info p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.7);
}

.chat-close {
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,0.3);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chat-close:hover {
    background: rgba(0,0,0,0.3);
    transform: rotate(90deg);
    border-color: rgba(0,0,0,0.5);
    font-size: 1.5rem;
    color: #000;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f5f5f5;
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 0.5rem;
}

#chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 2rem;
    outline: none;
}

#chat-input:focus {
    border-color: var(--gold-primary);
}

#chat-send {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .chat-widget {
        width: 100vw;
        height: 100dvh; /* Dynamic viewport height for mobile */
        max-width: 100vw;
        max-height: 100dvh;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0; /* Start from top, above header */
        border-radius: 0; /* No rounded corners on full screen */
        z-index: 9999999; /* Above everything including header */
        position: fixed;
    }
    
    .chat-header {
        border-radius: 0; /* No rounded corners on full screen */
        flex-shrink: 0; /* Prevent header from shrinking */
    }
    
    .chat-messages {
        flex: 1 1 auto;
        overflow-y: auto;
        min-height: 0; /* Allow proper flexbox shrinking */
        -webkit-overflow-scrolling: touch;
    }
    
    .chat-input-container {
        flex-shrink: 0; /* Prevent input area from being cut off */
        flex-grow: 0;
        padding: 1rem;
        background: #fff;
        min-height: 80px; /* Ensure minimum space for input */
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    #chat-input {
        font-size: 16px !important; /* Prevent iOS zoom on focus */
    }
}



/* ==========================================================================
   City Service Page Styles
   ========================================================================== */

.city-hero-section {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.city-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.city-hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.city-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    padding: 0.5rem 1rem;
    background: rgba(220, 200, 127, 0.1);
    border: 1px solid rgba(220, 200, 127, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gold-primary);
}

.city-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-booking-section {
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.quick-quote-form {
    margin-top: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(220, 200, 127, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.1);
}

.quote-result {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(220, 200, 127, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
}

.city-content-section {
    padding: 4rem 0;
    background: #fff;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content {
    min-width: 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    color: #000;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.pricing-table tbody tr:hover {
    background: rgba(220, 200, 127, 0.05);
}

.price-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.pricing-notes {
    padding: 1.5rem;
    background: rgba(220, 200, 127, 0.05);
    border-left: 4px solid var(--gold-primary);
    border-radius: 8px;
}

.pricing-notes h4 {
    margin-bottom: 1rem;
    color: #000;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    margin-bottom: 0.5rem;
    color: #333;
}

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

.feature-card-alt {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card-alt:hover {
    box-shadow: 0 8px 30px rgba(220, 200, 127, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.feature-icon-alt {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card-alt h3 {
    margin-bottom: 0.75rem;
    color: #000;
}

.feature-card-alt p {
    color: #666;
    line-height: 1.6;
}

.sidebar {
    position: relative;
}

.sidebar-widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.sticky-widget {
    position: sticky;
    top: 100px;
}

.widget-divider {
    height: 1px;
    background: rgba(220, 200, 127, 0.2);
    margin: 1.5rem 0;
}

.widget-info p {
    margin-bottom: 0.75rem;
    color: #ccc;
    font-size: 0.9rem;
}

.service-links,
.location-links {
    list-style: none;
    padding: 0;
}

.service-links li,
.location-links li {
    margin-bottom: 0.75rem;
}

.service-links a,
.location-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.service-links a:hover,
.location-links a:hover {
    color: var(--gold-primary);
}

.related-pages-section {
    padding: 4rem 0;
}

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

.related-page-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.related-page-card:hover {
    background: rgba(220, 200, 127, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.related-page-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.related-page-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.related-page-card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--gold-primary);
    font-weight: 500;
}

/* ==========================================================================
   Blog Post Styles
   ========================================================================== */

.blog-post-single {
    background: #fff;
}

.post-header {
    padding: 8rem 0 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.post-meta-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-category {
    padding: 0.5rem 1rem;
    background: rgba(220, 200, 127, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

.post-reading-time {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.post-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.2;
}

.post-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #fff;
    font-weight: 600;
}

.post-date {
    color: #999;
    font-size: 0.9rem;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.post-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 4rem 0;
}

.post-content-main {
    min-width: 0;
}

.table-of-contents {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    color: #000;
}

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

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.toc-list a:hover {
    color: var(--gold-primary);
}

.toc-level-2 {
    padding-left: 1rem;
}

.toc-level-3 {
    padding-left: 2rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #000;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #000;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-content blockquote {
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--gold-primary);
    background: rgba(220, 200, 127, 0.05);
    font-style: italic;
}

.post-tags {
    margin: 3rem 0;
}

.post-tags h4 {
    margin-bottom: 1rem;
    color: #000;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-badge {
    padding: 0.5rem 1rem;
    background: rgba(220, 200, 127, 0.1);
    border: 1px solid rgba(220, 200, 127, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--gold-primary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag-badge:hover {
    background: var(--gold-primary);
    color: #000;
}

.post-share {
    padding: 2rem;
    margin: 3rem 0;
}

.post-share h4 {
    margin-bottom: 1rem;
    color: #000;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.share-facebook {
    background: #1877f2;
    color: #fff;
}

.share-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-linkedin {
    background: #0a66c2;
    color: #fff;
}

.share-whatsapp {
    background: #25d366;
    color: #fff;
}

.share-copy {
    background: #666;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-bio {
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
}

.author-bio-avatar img {
    border-radius: 50%;
}

.author-bio-content h4 {
    margin-bottom: 0.75rem;
    color: #000;
}

.author-bio-content p {
    color: #666;
    margin-bottom: 1rem;
}

.author-bio-stats {
    color: #999;
    font-size: 0.9rem;
}

.related-posts {
    margin: 3rem 0;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
    color: #000;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.related-post-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.related-post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h4 {
    margin-bottom: 0.75rem;
    color: #000;
}

.related-post-content p {
    color: #666;
    margin-bottom: 1rem;
}

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

.post-nav-link {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.post-nav-link:hover {
    background: rgba(220, 200, 127, 0.1);
    border-color: var(--gold-primary);
}

.nav-label {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.post-sidebar {
    position: relative;
}

.popular-posts-list {
    list-style: none;
    padding: 0;
}

.popular-posts-list li {
    margin-bottom: 1.5rem;
}

.popular-posts-list a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.popular-posts-list a:hover {
    transform: translateX(5px);
}

.popular-post-thumb {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-post-info h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.popular-post-date {
    color: #999;
    font-size: 0.85rem;
}

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

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--gold-primary);
}

.category-list li.active a {
    color: var(--gold-primary);
    font-weight: 600;
}

.category-count {
    color: #999;
}

.newsletter-widget {
    background: linear-gradient(135deg, rgba(220, 200, 127, 0.1) 0%, rgba(220, 200, 127, 0.05) 100%);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(220, 200, 127, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
}

/* ==========================================================================
   Archive Page Styles
   ========================================================================== */

.archive-header {
    padding: 8rem 0 4rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.archive-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.archive-description {
    max-width: 700px;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.archive-stats {
    color: #999;
    font-size: 0.9rem;
}

.archive-container {
    padding: 4rem 0;
}

.archive-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.archive-main {
    min-width: 0;
}

.archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.archive-view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-toggle {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    color: #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-toggle.active,
.view-toggle:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.archive-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.archive-sort label {
    color: #ccc;
}

.archive-sort select {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    color: #fff;
    border-radius: 8px;
}

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

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 200, 127, 0.2);
}

.post-card-image {
    position: relative;
    display: block;
}

.post-thumbnail {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-meta {
    display: flex;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.post-card-title {
    margin-bottom: 1rem;
}

.post-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-title a:hover {
    color: var(--gold-primary);
}

.post-card-excerpt {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-author img {
    border-radius: 50%;
}

.post-author span {
    color: #ccc;
    font-size: 0.9rem;
}

.read-more-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.read-more-link:hover {
    transform: translateX(5px);
}

.archive-pagination {
    margin-top: 3rem;
}

.archive-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.archive-pagination li a,
.archive-pagination li span {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    color: #ccc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.archive-pagination li a:hover,
.archive-pagination li.current span {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.no-posts-found {
    padding: 4rem;
    text-align: center;
}

.no-posts-found h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.no-posts-found p {
    color: #ccc;
    margin-bottom: 2rem;
}

.archive-sidebar {
    position: relative;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(220, 200, 127, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
}

.search-submit {
    padding: 0.75rem 1.25rem;
    background: var(--gold-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-submit:hover {
    transform: scale(1.05);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ==========================================================================
   Page Template Styles
   ========================================================================== */

.page-header {
    padding: 8rem 0 4rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #ccc;
}

.page-content-wrapper {
    padding: 4rem 0;
}

.page-content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.page-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.page-main-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.child-pages-section {
    margin-top: 3rem;
}

.child-pages-section h2 {
    margin-bottom: 2rem;
    color: #000;
}

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

.child-page-card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.child-page-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.child-page-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.child-page-content {
    padding: 1.5rem;
}

.child-page-content h3 {
    margin-bottom: 0.75rem;
    color: #000;
}

.child-page-content p {
    color: #666;
    margin-bottom: 1rem;
}

.page-links {
    margin: 2rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-links-title {
    font-weight: 600;
    margin-right: 0.5rem;
}

.page-links a,
.page-links span {
    padding: 0.5rem 1rem;
    background: rgba(220, 200, 127, 0.1);
    border: 1px solid rgba(220, 200, 127, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gold-primary);
}

.page-sidebar {
    position: relative;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--gold-primary);
    text-decoration: none;
}

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

.quick-links-list li {
    margin-bottom: 0.75rem;
}

.quick-links-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links-list a:hover {
    color: var(--gold-primary);
}

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

.trust-list li {
    margin-bottom: 0.75rem;
    color: #ccc;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .content-layout,
    .post-content-layout,
    .archive-layout,
    .page-content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar,
    .post-sidebar,
    .archive-sidebar,
    .page-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .city-hero-title,
    .post-title,
    .archive-title,
    .page-title {
        font-size: 2rem;
    }
    
    .city-hero-subtitle,
    .page-subtitle {
        font-size: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .city-hero-cta {
        flex-direction: column;
    }
    
    .city-trust-badges {
        flex-direction: column;
    }
    
    .pricing-table-wrapper {
        overflow-x: scroll;
    }
    
    .features-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .post-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .archive-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid,
    .related-pages-grid,
    .child-pages-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .city-hero-title,
    .post-title,
    .archive-title,
    .page-title {
        font-size: 1.5rem;
    }
    
    .content-heading {
        font-size: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
}



/* ==========================================================================
   Cities We Serve Section
   ========================================================================== */

.cities-section {
    padding: 5rem 0;
}

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

.city-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 200, 127, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.city-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(220, 200, 127, 0.2);
}

.city-card:hover::before {
    opacity: 1;
}

.city-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 200, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s;
}

.city-card:hover .city-icon {
    background: linear-gradient(135deg, #dcc87f 0%, #cdb048 100%);
    transform: scale(1.1);
}

.city-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(18%) saturate(664%) hue-rotate(356deg) brightness(93%) contrast(88%);
}

.city-card:hover .city-icon img {
    filter: brightness(0) saturate(100%) invert(0%);
}

.city-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.city-tagline {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.city-link-arrow {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.city-card:hover .city-link-arrow {
    transform: translateX(10px);
}

.cities-cta {
    text-align: center;
    padding: 3rem 0 0;
    border-top: 1px solid rgba(220, 200, 127, 0.2);
}

.cities-cta p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .city-card {
        padding: 1.5rem;
    }
    
    .city-icon {
        width: 60px;
        height: 60px;
        padding: 1rem;
    }
    
    .city-card h3 {
        font-size: 1.25rem;
    }
}



/* ==========================================================================
   City Page Detailed Styles
   ========================================================================== */

.service-card-detailed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(220, 200, 127, 0.2);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 200, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.service-card-detailed p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #ccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Quick Booking Form */
.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quick-booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Pricing Tables */
.pricing-tables {
    margin-bottom: 2rem;
}

.pricing-table-wrapper {
    margin-bottom: 2rem;
}

.pricing-table-wrapper h3 {
    margin-bottom: 1rem;
    color: #333;
}

.pricing-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, #dcc87f 0%, #cdb048 100%);
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    color: #000;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-notes {
    background: rgba(220, 200, 127, 0.05);
    border-left: 4px solid var(--gold-primary);
    padding: 1.5rem;
    border-radius: 8px;
}

.pricing-notes h4 {
    color: #333;
    margin-bottom: 1rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Routes Section */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.route-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 200, 127, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.route-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.route-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.route-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Features Grid Detailed */
.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-alt {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card-alt:hover {
    box-shadow: 0 10px 30px rgba(220, 200, 127, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.feature-icon-alt {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 200, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.feature-icon-alt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-alt h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card-alt p {
    color: #666;
    line-height: 1.6;
}

/* City CTA Section */
.city-cta-section {
    padding: 5rem 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .routes-grid,
    .features-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
}

