.footer-cta {
    background: #f5f5f5;
	padding: 40px 0;
}

.footer-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #9c9c9e;
    border-radius: 10px;
}

.footer-cta-title {
    font-family: "Manrope", Sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #FFFFFF;
}

.footer-cta-btn {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s;
    min-width: 150px;
    width: fit-content;
}

.footer-cta-btn:hover {
    color: black;
    background: white;
}

.footer-row-2 {
    background: #f5f5f5;
	padding: 70px 0;
}

.footer-row-2 .footer-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
	background: unset;
}

/* 4 sütun: %25 */
.footer-col {
    width: calc(24% - 15px);
}


.footer-col-1 {
	width: calc(28% - 15px);
	padding-right: 50px;
}

/* Başlık */
.footer-col-title {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 18px;
}

/* Logo küçültme */
.footer-logo-link img {
    max-height: 42px; /* küçültme */
    width: auto;
    height: auto;
}

/* Description */
.footer-desc {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(159, 159, 159);
    line-height: 1.7;
    margin-top: 16px;
}

/* Menü */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(159, 159, 159);
    transition: color 0.2s ease;
}

.footer-menu li a:hover {
    color: #000;
}

/* Contact items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    color: rgb(159, 159, 159);
    display: inline-flex;
    align-items: center;
}

.footer-contact-text {
    color: rgb(159, 159, 159);
}

/* Buttons */
.footer-login-btn,
.footer-reserve-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-login-btn:hover,
.footer-reserve-btn:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Rezervasyon butonu biraz farklı olsun */
.footer-reserve-btn {
    background: #000;
}

.footer-reserve-btn:hover {
    background: #fff;
}

.footer-row-3 {
    background: #f5f5f5;
    padding: 20px 0;
}

.footer-row-3 .footer-container {
	border-top: 1px solid #e5e5e5
    max-width: 1290px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
	background: unset;
	display: flex;
	width: 100%;
	justify-content: center;
}

.footer-copyright {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(159, 159, 159);
    text-align: center;
    margin: 0;
}

/* -------------------------------
   < 1024px
--------------------------------*/
@media (max-width: 1024px) {
    .footer-container {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }
	
	.footer-cta {
		padding: 40px 20px;
	}
	
	.footer-col-1 {
		padding: 0
	}
	

    .footer-cta-title {
        font-size: 36px;
    }
	
	 .footer-col {
        width: 50%;
    }
	
	.footer-row-2 {
		padding: 40px 20px;
	}
	
	.footer-col {
	text-align: start;
	}
}


/* -------------------------------
   < 768px
--------------------------------*/
@media (max-width: 768px) {
    .footer-container {
        padding: 20px;
    }

    .footer-cta-title {
        font-size: 24px;
    }
	
	.footer-cta {
		padding: 30px 20px;
	}
	
	
	 .footer-col {
        width: 100%;
    }
}

/* -------------------------------
   < 576px
--------------------------------*/
@media (max-width: 576px) {
    .footer-container {
        max-width: 100%;
        padding: 20px;
    }
	
	.footer-cta {
		padding: 20px;
	}
	
}
