/* ============================================
   City Guide Landing Pages - Premium Styles
   Optimized for Google Ads Landing Pages
   ============================================ */

/* === Hero Section === */
.city-guide-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.city-guide-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.city-guide-hero h1 i {
    display: block;
    font-size: 3rem;
    margin-bottom: 12px;
}

.city-guide-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* === Content Area === */
.city-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px 120px;
    /* Extra bottom padding for floating button */
}

/* === Content Cards === */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.content-card h2 {
    color: #1a1d29;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.content-card h2 i {
    font-size: 1.3rem;
    color: #667eea;
}

.content-card p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* === Attraction List === */
.attraction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attraction-list li {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 10px;
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    border-right: 4px solid #667eea;
}

.attraction-list li:last-child {
    margin-bottom: 0;
}

.attraction-list li strong {
    color: #1a1d29;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

/* === Religious Note === */
.religious-note {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 14px;
    padding: 16px 20px;
    margin: 20px 0;
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.religious-note strong {
    color: #78350f;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #764ba2;
}

/* ============================================
   FLOATING CALL BUTTON - Always Visible on Mobile
   ============================================ */

.floating-call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    /* Hidden on desktop */
}

.floating-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 24px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow:
        0 8px 30px rgba(16, 185, 129, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.15);
    animation: pulse-call 2s ease-in-out infinite;
}

.floating-call-btn a i {
    font-size: 1.4rem;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes pulse-call {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

/* Show floating button on mobile */
@media (max-width: 768px) {
    .floating-call-btn {
        display: block;
    }

    .city-guide-hero {
        padding: 80px 16px 50px;
    }

    .city-guide-hero h1 {
        font-size: 1.8rem;
    }

    .city-guide-hero h1 i {
        font-size: 2.2rem;
    }

    .city-guide-hero p {
        font-size: 1rem;
    }

    .content-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .content-card h2 {
        font-size: 1.2rem;
    }

    .attraction-list li {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    /* Hide bottom CTA on mobile since we have floating button */
    .cta-section .cta-button {
        display: none;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .city-guide-hero h1 {
        font-size: 1.5rem;
    }

    .city-guide-hero h1 i {
        font-size: 1.8rem;
    }

    .content-card {
        padding: 16px 14px;
    }

    .floating-call-btn a {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}