@import url("./bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("./swiper-bundle.min.css");
@import url("./sweetalert.css");

:root {
    --bs-pembe: #fe1bcb;
    --bs-pembe-rgb: 254, 27, 203;
    --bs-mavi: #4361ee;
    --bs-mor: #7209b7;
    --bs-turuncu: #ff6b35;
    --bs-yesil: #06d6a0;
    --bs-lacivert: #1e293b;
    --bs-gri-acik: #f8f9fa;
    --bs-gri-orta: #6c757d;
    --bs-gri-koyu: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fff;
}

/* ========================================
   HEADER - Beyaz Arka Plan, Sadece Logo + Butonlar
   ======================================== */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e9ecef;
    z-index: 999;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--bs-lacivert) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--bs-lacivert);
}

.btn-outline-pembe {
    border: 2px solid var(--bs-pembe);
    color: var(--bs-pembe) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pembe:hover {
    background: var(--bs-pembe);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 27, 203, 0.3);
}

.btn-login {
    border: 2px solid #e9ecef;
    color: var(--bs-lacivert) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #f8f9fa;
    color: var(--bs-lacivert) !important;
    border-color: var(--bs-pembe);
    transform: translateY(-2px);
}

.btn-signup {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    color: white !important;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(254, 27, 203, 0.3);
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #e70da0, #3a0ca3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(254, 27, 203, 0.5);
    color: white !important;
}

/* ========================================
   BANNER - Custom Background Image
   ======================================== */
#banner {
    background-image: url('../images/banner-header.jpg');
    /* KENDİ RESMİNİZİ BURAYA EKLEYİN */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(67, 97, 238, 0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.banner-content h1 {
    animation: fadeInUp 1s ease-out;
}

.banner-content p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heart-icon::before {
    content: "💗";
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.highlight-text::before {
    content: "💘 ";
}

.highlight-text::after {
    content: " 💘";
}

/* Floating Hearts Animation */
.floating-hearts {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.heart {
    position: absolute;
    font-size: 24px;
    animation: floatHeart 15s infinite linear;
    opacity: 0.7;
}

.heart:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    font-size: 28px;
}

.heart:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.heart:nth-child(3) {
    top: 40%;
    right: 8%;
    animation-delay: 4s;
    font-size: 20px;
}

.heart:nth-child(4) {
    top: 55%;
    right: 20%;
    animation-delay: 6s;
}

.heart:nth-child(5) {
    top: 70%;
    right: 12%;
    animation-delay: 8s;
    font-size: 22px;
}

.heart:nth-child(6) {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
}

.heart:nth-child(7) {
    top: 35%;
    right: 30%;
    animation-delay: 3s;
    font-size: 18px;
}

.heart:nth-child(8) {
    top: 50%;
    right: 22%;
    animation-delay: 5s;
}

.heart:nth-child(9) {
    top: 65%;
    right: 28%;
    animation-delay: 7s;
    font-size: 26px;
}

.heart:nth-child(10) {
    top: 80%;
    right: 18%;
    animation-delay: 9s;
}

.heart:nth-child(11) {
    top: 20%;
    right: 35%;
    animation-delay: 10s;
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Registration Card */
.registration-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInRight 0.8s ease-out;
    position: relative;
    z-index: 3;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-container {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-container .container::before {
    content: "💕";
    font-size: 128px;
    opacity: 0.1;
    position: absolute;
    top: 10%;
    left: 5%;
    animation: rotateHeart 20s infinite linear;
}

.about-container .container::after {
    content: "💗";
    font-size: 128px;
    opacity: 0.15;
    position: absolute;
    bottom: 10%;
    right: 5%;
    animation: rotateHeart 25s infinite reverse linear;
}

@keyframes rotateHeart {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-pembe), var(--bs-mavi));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(254, 27, 203, 0.3);
}

/* ========================================
   STORY CARDS (Swiper)
   ======================================== */
.story-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    background: white;
    border: none;
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 27, 203, 0.03), rgba(67, 97, 238, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(254, 27, 203, 0.25);
}

.story-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.story-card:hover .story-img {
    transform: scale(1.05);
}

.story-content {
    padding: 1.8rem;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: var(--bs-gri-orta);
}

.story-meta img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bs-pembe);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.story-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bs-lacivert);
    line-height: 1.4;
}

.story-excerpt {
    color: var(--bs-gri-orta);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-pembe {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    border: none;
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(254, 27, 203, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-pembe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-pembe:hover::before {
    left: 100%;
}

.btn-pembe:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 27, 203, 0.6);
    color: white !important;
}

/* ========================================
   SWIPER STYLES
   ======================================== */
.swiper {
    padding-bottom: 50px;
    padding-top: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-pembe) !important;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
}

.swiper-pagination {
    bottom: 15px;
}

.swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    width: 30px;
    border-radius: 6px;
    transform: scale(1.1);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 5rem 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(254, 27, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--bs-gri-orta);
    font-size: 1.15rem;
    max-width: 750px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: none;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--bs-pembe), var(--bs-mavi));
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(254, 27, 203, 0.2);
    z-index: 10;
}

.feature-card:hover::before {
    height: 10px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 12px 30px rgba(254, 27, 203, 0.4);
}

.feature-1 .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.feature-2 .feature-icon {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
}

.feature-3 .feature-icon {
    background: linear-gradient(135deg, #06d6a0, #118ab2);
    color: white;
}

.feature-4 .feature-icon {
    background: linear-gradient(135deg, #7209b7, #480ca8);
    color: white;
}

.feature-5 .feature-icon {
    background: linear-gradient(135deg, #ff9e6d, #ff6b35);
    color: white;
}

.feature-6 .feature-icon {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.feature-7 .feature-icon {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
}

.feature-8 .feature-icon {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

.feature-9 .feature-icon {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
}

.feature-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--bs-lacivert);
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.4;
}

.feature-desc {
    color: var(--bs-gri-orta);
    line-height: 1.9;
    padding: 0 1.5rem 1.8rem;
    text-align: center;
    min-height: 130px;
    font-size: 1.02rem;
}

.feature-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-pembe);
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem;
    transition: all 0.3s ease;
    border-top: 1px solid #e9ecef;
    width: 100%;
    justify-content: center;
}

.feature-more i {
    transition: transform 0.3s ease;
    font-size: 0.95rem;
}

.feature-card:hover .feature-more {
    background: linear-gradient(135deg, rgba(254, 27, 203, 0.08), rgba(67, 97, 238, 0.08));
    color: var(--bs-pembe);
}

.feature-card:hover .feature-more i {
    transform: translateX(5px);
}

/* ========================================
   LATEST POSTS SECTION
   ======================================== */
.latest-posts-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.latest-posts-section::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(254, 27, 203, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.post-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(254, 27, 203, 0.2);
}

.post-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-img {
    transform: scale(1.1);
}

.post-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    color: white;
    padding: 0.3rem 1.1rem;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.post-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--bs-gri-orta);
    font-size: 0.9rem;
}

.post-meta i {
    color: var(--bs-pembe);
    font-size: 1rem;
}

.post-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--bs-lacivert);
    margin-bottom: 1rem;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.post-card:hover .post-title {
    color: var(--bs-pembe);
}

.post-excerpt {
    color: var(--bs-gri-orta);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bs-pembe);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 8px 0;
}

.post-read-more i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.post-card:hover .post-read-more i {
    transform: translateX(5px);
}

.view-all-btn {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(254, 27, 203, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(254, 27, 203, 0.6);
}

.view-all-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--bs-lacivert) 0%, #0f172a 100%);
    color: #f8f9fa;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 20%, rgba(254, 27, 203, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(67, 97, 238, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 45% 50%, rgba(255, 105, 180, 0.08) 0%, transparent 30%);
    z-index: 0;
}

.footer-section {
    position: relative;
    z-index: 1;
    margin-bottom: 2.2rem;
}

.footer-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--bs-pembe), var(--bs-mavi));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--bs-pembe);
    transform: translateX(4px);
    padding-left: 6px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.95rem;
    color: var(--bs-pembe);
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.1rem;
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--bs-pembe);
    font-size: 1.2rem;
    min-width: 22px;
    margin-top: 4px;
}

.footer-about {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 1.02rem;
    margin-bottom: 1.6rem;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 1.6rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.25);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2.2rem;
    margin-top: 2.2rem;
    text-align: center;
}

.copyright-text {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 0.85rem;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 8px;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bs-pembe);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--bs-pembe);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-top: 1.2rem;
    justify-content: center;
}

.payment-icon {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-icon:hover {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.app-download {
    margin-top: 1.6rem;
    text-align: center;
}

.app-download-title {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    display: block;
}

.app-badge {
    display: inline-block;
    width: 140px;
    height: 45px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border: 2px solid transparent;
}

.app-badge:hover {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-custom {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--bs-pembe), var(--bs-mavi));
    padding: 1.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modal-header .btn-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.modal-body {
    background: white;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(254, 27, 203, 0.1), rgba(67, 97, 238, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: var(--bs-pembe);
    border: 3px solid rgba(254, 27, 203, 0.2);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bs-lacivert);
    margin-bottom: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--bs-lacivert);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-pembe);
    box-shadow: 0 0 0 0.25rem rgba(254, 27, 203, 0.15);
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: var(--bs-pembe);
}

.input-group .form-control {
    border-radius: 0 12px 12px 0;
    border-left: none;
}

.form-check-input {
    border: 2px solid #ced4da;
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.form-check-input:checked {
    background-color: var(--bs-pembe);
    border-color: var(--bs-pembe);
}

.form-check-label {
    color: var(--bs-gri-orta);
    font-size: 0.95rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .registration-card {
        margin-top: 2rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.35rem;
    }

    .post-img-container {
        height: 190px;
    }

    .post-title {
        font-size: 1.25rem;
    }

    .footer {
        padding-top: 3rem;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .payment-methods {
        flex-direction: column;
        align-items: center;
    }

    .payment-icon {
        width: 100%;
        max-width: 220px;
    }

    .app-badge {
        width: 120px;
        height: 40px;
        margin: 6px 0;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 1.9rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .post-img-container {
        height: 170px;
    }

    .post-title {
        font-size: 1.15rem;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
    }

    .footer {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.15rem;
    }

    .footer-about {
        font-size: 0.95rem;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding-top: 1.8rem;
    }

    .copyright-text {
        font-size: 0.9rem;
    }

    .footer-legal-links {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-links a {
        font-size: 0.85rem;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }
}