/* ==========================================================================
   CONTACT PAGE STYLES - CNT PREFIX
   ========================================================================== */

/* Hero Section */
.cnt--hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #0a0a12 0%, #0d1117 50%, #1a1f2e 100%);
    overflow: hidden;
}

.cnt--hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cnt--hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cnt--badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 25px;
}

.cnt--hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cnt--highlight {
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cnt--hero-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.cnt--hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cnt--btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.cnt--btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.cnt--btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cnt--btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: #fff;
}

/* Quick Contact Cards */
.cnt--quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.cnt--quick-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.cnt--quick-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.cnt--quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cnt--quick-icon svg {
    color: #10b981;
}

.cnt--quick-card h3 {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

.cnt--quick-card p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.cnt--quick-card a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cnt--quick-card a:hover {
    color: #34d399;
}

/* Section Base */
.cnt--section {
    padding: 80px 0;
}

.cnt--section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cnt--section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cnt--section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cnt--section-header p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.cnt--heading-dark h2 {
    color: #1a202c;
}

.cnt--heading-dark p {
    color: #64748b;
}

.cnt--heading-white h2 {
    color: #fff;
}

.cnt--heading-white p {
    color: #94a3b8;
}

/* City Contact Section */
.cnt--cities {
    background: #f8fafc;
}

.cnt--cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cnt--city-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cnt--city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cnt--city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.cnt--city-card:hover::before {
    transform: scaleX(1);
}

.cnt--city-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cnt--city-icon svg {
    color: #10b981;
}

.cnt--city-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.cnt--city-area {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cnt--city-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 15px;
}

.cnt--city-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnt--city-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: #fff;
}

.cnt--city-btn svg {
    width: 18px;
    height: 18px;
}

/* Contact Form Section */
.cnt--form-section {
    background: linear-gradient(180deg, #0a0a12 0%, #0d1117 100%);
}

.cnt--form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.cnt--form-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cnt--form-info>p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cnt--info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cnt--info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.cnt--info-list li:last-child {
    border-bottom: none;
}

.cnt--info-list svg {
    color: #10b981;
    flex-shrink: 0;
}

.cnt--form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
}

.cnt--form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.cnt--form-group {
    margin-bottom: 20px;
}

.cnt--form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.cnt--form-group input,
.cnt--form-group textarea,
.cnt--form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cnt--form-group input:focus,
.cnt--form-group textarea:focus,
.cnt--form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.cnt--form-group input::placeholder,
.cnt--form-group textarea::placeholder {
    color: #64748b;
}

.cnt--form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.cnt--form-group select option {
    background: #1a202c;
    color: #fff;
}

.cnt--form-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cnt--form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* FAQ Section */
.cnt--faq {
    background: #fff;
}

.cnt--faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cnt--faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cnt--faq-item:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.cnt--faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cnt--faq-item h3 svg {
    color: #10b981;
    flex-shrink: 0;
}

.cnt--faq-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cnt--cta {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    text-align: center;
    padding: 80px 20px;
}

.cnt--cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.cnt--cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.cnt--cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cnt--cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cnt--form-wrapper {
        grid-template-columns: 1fr;
    }

    .cnt--quick-contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cnt--hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .cnt--hero h1 {
        font-size: 2rem;
    }

    .cnt--cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cnt--faq-grid {
        grid-template-columns: 1fr;
    }

    .cnt--quick-contact {
        grid-template-columns: 1fr;
    }

    .cnt--section {
        padding: 60px 0;
    }

    .cnt--section-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .cnt--hero h1 {
        font-size: 1.7rem;
    }

    .cnt--hero-cta {
        flex-direction: column;
    }

    .cnt--btn-primary,
    .cnt--btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cnt--cities-grid {
        grid-template-columns: 1fr;
    }

    .cnt--city-card {
        padding: 20px;
    }

    .cnt--form-card {
        padding: 25px;
    }
}