/* ==================== VARIABLE INHERITANCE ==================== */
:root {
    --primary-blue: #0077b6;
    --primary-gradient: linear-gradient(135deg, #0077b6, #0594b1);
    --whatsapp-green: linear-gradient(135deg, #25D366, #1ebe5d);
    --text-dark: #0f172a;
    --text-slate: #64748b;
    --bg-light: #f8fafc;
    --shadow-premium: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 119, 182, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== PAGE TITLE & BREADCRUMB ==================== */
.page-title {
    text-align: center;
    padding: 15px 0 5px 0;
    margin-top: 5px;
}

.page-title .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-slate);
    margin-bottom: 6px;
}

.page-title .breadcrumb a {
    color: var(--text-slate);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.page-title .breadcrumb a:hover {
    color: var(--primary-blue);
}

.page-title .breadcrumb span i {
    font-size: 10px;
    opacity: 0.6;
}

.page-title .breadcrumb .current {
    color: var(--primary-blue);
    font-weight: 600;
}

.page-title h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 5px auto;
}

.page-title p {
    color: var(--text-slate);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==================== CONTACT CARDS GRID ==================== */
.contact-cards-section {
    padding: 15px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium İkon Çərçivəsi */
.icon-wrapper {
    width: 55px;
    height: 55px;
    background: rgba(0, 119, 182, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.icon-wrapper i {
    font-size: 22px;
    color: var(--primary-blue);
}

/* WhatsApp fərqli rəng */
.icon-wrapper.wa-icon {
    background: rgba(37, 211, 102, 0.1);
}
.icon-wrapper.wa-icon i {
    color: #25D366;
}

/* Kartın daxili kontent strukturu */
.card h3 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
    font-size: 19px;
    font-weight: 700;
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.card p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 4px 0;
    font-weight: 500;
}

.card .desc-text {
    color: var(--text-slate);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.contact-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--primary-blue);
}

/* Premium WhatsApp Düyməsi */
.whatsapp-btn {
    text-decoration: none;
    color: #ffffff;
    background: var(--whatsapp-green);
    padding: 10px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 14px;
    margin: 8px auto 0 auto;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* HOVER ANIMATIONS */
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 119, 182, 0.15);
    box-shadow: var(--shadow-hover);
}

.card:hover .icon-wrapper {
    transform: scale(1.1);
    background: var(--primary-gradient);
}
.card:hover .icon-wrapper i {
    color: #ffffff;
}

.card:hover .icon-wrapper.wa-icon {
    background: var(--whatsapp-green);
}

/* Premium Shine (Parıltı) Effekti */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.7s;
}

.card:hover::before {
    left: 100%;
}

/* ==================== MAP SECTION ==================== */
.map-section {
    background: #ffffff;
    padding: 20px 0 10px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-heading h2 i {
    color: var(--primary-blue);
}

.map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--bg-light);
    transition: var(--transition-smooth);
}

.map-wrapper:hover {
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.1);
}

.map-wrapper iframe {
    display: block;
    border: 0;
}

/* ==================== RESPONSIVE TƏNZİMLƏMƏLƏR ==================== */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .card {
        padding: 20px 15px;
    }
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 520px) {
    .grid {
        grid-template-columns: 1fr;
    }
}