.custom-footer {
    background: linear-gradient(135deg, #05005b 0%, #2e00a1 100%);
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    width: 100%;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Form Bölümü */
.footer-form {
    flex: 1;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.footer-form:hover {
    transform: translateY(-5px);
}

.footer-form h3 {
    color: #2ee77d;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid #2ee77d;
    padding-bottom: 8px;
}

.footer-form p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-form form .form-group {
    margin-bottom: 15px;
}

.footer-form form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}
.footer-form form input:focus {
    border-color: #2ee77d;
    outline: none;
}

.footer-form form button {
    width: 100%;
    padding: 12px;
    background-color: #2ee77d;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.footer-form form button:hover {
    background-color: #24c469;
    transform: scale(1.02);
}

.contact-info {
    margin-top: 20px;
    font-size: 16px;
}

/* Menü ve Bağlantılar */
.footer-links {
    flex: 2;
    min-width: 320px;
}

.footer-menus {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-menus ul {
    list-style: none;
    padding: 0;
}

.menu-title {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #2ee77d;
    padding-bottom: 5px;
}

.footer-menus ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-menus ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menus ul li a:hover {
    color: #2ee77d;
}

/* Sosyal Medya ve Politikalar (footer-bottom) */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
    margin: 0 8px;
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #2ee77d;
}

.footer-policies a {
    color: #ffffff;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-policies a:hover {
    color: #2ee77d;
}

.footer-bottom p {
    font-size: 13px;
    margin-top: 10px;
}

.phone-number {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
  }
  .phone-number:hover {
    opacity: 0.8;
}
