/* Commune Landing Pages — Shared Styles */

.commune-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
}
.commune-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.commune-hero-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.commune-hero-text .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body, #334155);
    margin-bottom: 2rem;
}
.commune-hero-img {
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover, 0 20px 40px rgba(0,0,0,0.1));
}
.commune-hero-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.commune-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.commune-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg, 12px);
    box-shadow: var(--shadow-card, 0 4px 15px rgba(0,0,0,0.06));
}
.commune-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.commune-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light, #64748b);
    margin-top: 0.25rem;
}

/* Services */
.services-commune {
    padding: 5rem 0;
}
.services-commune-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.service-commune-card {
    background: white;
    border-radius: var(--radius-xl, 16px);
    padding: 2.5rem;
    box-shadow: var(--shadow-card, 0 4px 15px rgba(0,0,0,0.06));
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}
.service-commune-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover, 0 20px 40px rgba(0,0,0,0.1));
    border-top-color: var(--primary);
}
.service-commune-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #1d4ed8));
    border-radius: var(--radius-lg, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-commune-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.service-commune-card p {
    color: var(--text-body, #334155);
    line-height: 1.7;
}

/* Info + Pricing */
.commune-info {
    padding: 5rem 0;
    background: var(--gray-light, #f8fafc);
}
.commune-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.commune-info-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.commune-info-text p {
    color: var(--text-body, #334155);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.commune-checklist {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.commune-checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-body, #334155);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.commune-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color, #10b981);
}
.commune-pricing {
    background: white;
    border-radius: var(--radius-xl, 16px);
    padding: 2.5rem;
    box-shadow: var(--shadow-card, 0 4px 15px rgba(0,0,0,0.06));
}
.commune-pricing h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-row:last-of-type { border-bottom: none; }
.pricing-row .pricing-label {
    font-weight: 500;
    color: var(--dark);
}
.pricing-row .pricing-value {
    font-weight: 700;
    color: var(--primary);
}
.pricing-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--radius-md, 8px);
    font-size: 0.9rem;
    color: var(--text-body, #334155);
}

/* FAQ */
.commune-faq {
    padding: 5rem 0;
}
.commune-faq .faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed; bottom: 6rem; right: 2rem; width: 60px; height: 60px;
    background: rgb(37, 99, 235); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: white;
    text-decoration: none; font-size: 1.5rem; z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease; animation: pulse 2s infinite;
}
.floating-call-btn:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .commune-hero-grid, .commune-info-grid { grid-template-columns: 1fr; }
    .commune-hero-text h2 { font-size: 1.8rem; }
    .commune-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .commune-stat .stat-number { font-size: 1.5rem; }
    .services-commune-grid { grid-template-columns: 1fr; }
    .floating-call-btn { bottom: 6rem; right: 1.5rem; width: 56px; height: 56px; font-size: 1.3rem; }
}