.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* En arkada kalsın */
    opacity: 1;
}

/* Siyah efekt */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* buradaki 0.6 yoğunluğu belirliyor */
    z-index: -1; /* video ile yazılar arasına giriyor */
}

.hero-content {
    position: relative;
    z-index: 1; /* Yazılar üstte */
    color: #fff;
}

.wp-btn {
    display: inline-block;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #25d366; /* Whatsapp yeşili */
    transition: 0.3s;
}

.wp-btn:hover {
    opacity: 0.8;
}

/* Arama butonu ayrı renk olsun */
.call-btn {
    background: #007bff; /* Mavi ton */
}


.footer-column a {
    color: #ddd;          /* Linkler gri olsun */
    text-decoration: none; /* alt çizgi kalksın */
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;          /* Hover beyaz olsun */
}

.social-icons a {
    margin-right: 15px;   /* İkonlar arası boşluk */
}

.social-icons a:last-child {
    margin-right: 0;
}
