.ppf-kaplama-section {
    background: radial-gradient(circle at top, #0b1b3a 0%, #000 60%);
}

/* HERO */
.ppf-kaplama-section h1 {
    letter-spacing: 1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.ppf-kaplama-section p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

/* =========================
   CONTACT CARDS
========================= */

.contact-card {
    background: linear-gradient(145deg, #0b0f1a, #111a2e);
    border: 1px solid rgba(47, 94, 255, 0.15);
    border-radius: 22px;
    padding: 26px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

/* hover */
.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(47, 94, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* glow */
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
            rgba(47, 94, 255, 0.12),
            transparent 60%);
    opacity: 0;
    transition: 0.4s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

/* text */
.contact-card h5 {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.contact-card p,
.contact-card a {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.6;
}

.contact-card a:hover {
    color: #2f5eff;
}

/* =========================
   ICON STYLE (opsiyonel)
========================= */

.contact-icon {
    font-size: 28px;
    color: #2f5eff;
    margin-bottom: 10px;
}

/* =========================
   CTA STYLE
========================= */

.contact-cta {
    text-align: center;
    padding: 60px 0;
}

.contact-cta a {
    background: linear-gradient(135deg, #2f5eff, #1b3bbf);
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    display: inline-block;
    transition: 0.3s ease;
}

.contact-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(47, 94, 255, 0.35);
}

.contact-card {
    background: linear-gradient(145deg, #0b0f1a, #111a2e);
    border: 1px solid rgba(47, 94, 255, 0.15);
    border-radius: 22px;
    padding: 28px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;

    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(47, 94, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.contact-icon {
    font-size: 30px;
    color: #2f5eff;
    margin-bottom: 10px;
}

.contact-card h5 {
    margin: 0;
}

.contact-card a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.contact-card a:hover {
    color: #2f5eff;
}

.contact-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(47, 94, 255, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #2f5eff, #1b3bbf);
    border: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(47, 94, 255, 0.35);
}