@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #e63946;
    --dark-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --border-color: #e9ecef;
    --white-color: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(29, 53, 87, 0.1);
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark-color);
    background-color: var(--white-color);
}

.section { padding: 100px 0; }
.section-title { font-weight: 700; color: var(--dark-color); margin-bottom: 50px; }

.custom-btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.custom-btn--primary { background-color: var(--primary-color); color: var(--white-color); }
.custom-btn--primary:hover { background-color: #c42c38; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4); }

.site-nav { background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); box-shadow: var(--shadow-light); }
.site-nav__logo { height: 40px; }
.site-nav__link { font-weight: 500; color: var(--dark-color); transition: color 0.2s; }
.site-nav__link:hover, .site-nav__link.is-active { color: var(--primary-color); }

.site-nav__link-button { background-color: var(--primary-color); color: var(--white-color) !important; border-radius: 8px; padding-left: 1rem !important; padding-right: 1rem !important; transition: var(--transition); text-align: center; }
.site-nav__link-button:hover, .site-nav__link-button.is-active { background-color: var(--dark-color); color: var(--white-color) !important; transform: translateY(-2px); box-shadow: var(--shadow-light); }

.hero { padding: 80px 0; overflow: hidden; }
.hero__text-content { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.hero__title { font-weight: 700; line-height: 1.2; }
.hero__subtitle { font-size: 1.1rem; color: #555; }
.hero__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow-medium); }
.hero__buttons .custom-btn { margin: 0.5rem; }
.custom-btn--whatsapp { background-color: transparent; color: #25D366; border: 2px solid #25D366; box-shadow: none; }
.custom-btn--whatsapp:hover { background-color: #25D366; color: var(--white-color); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

.packages-section { background-color: var(--light-color); }
.package-card { background-color: var(--white-color); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 2rem; transition: var(--transition); height: 100%; box-shadow: var(--shadow-light); display: flex; flex-direction: column; align-items: center; text-align: center; }
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); border-color: var(--primary-color); }
.package-card__duration { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.5rem; }
.package-card__price { font-size: 2.5rem; font-weight: 700; color: var(--dark-color); margin-bottom: 0.5rem; }
.package-card__price sup { font-size: 1rem; font-weight: 500; color: #6c757d; }
.package-card__description { color: #6c757d; margin-bottom: 1.5rem; flex-grow: 1; }
.package-card__button { margin-top: auto; width: 100%; }

.feature-card { background-color: var(--white-color); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 2.5rem; transition: var(--transition); height: 100%; box-shadow: var(--shadow-light); display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); border-color: var(--primary-color); }
.feature-card__icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.feature-card__title { font-weight: 600; }
.feature-card p { flex-grow: 1; }

.how-it-works { background-color: var(--light-color); }
.step-card { background-color: var(--white-color); border: 1px solid transparent; padding: 2rem; border-radius: var(--border-radius); height: 100%; display: flex; flex-direction: column; }
.step-card__number { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(45deg, var(--primary-color), var(--accent-color)); color: var(--white-color); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.step-card__title { font-weight: 600; }
.step-card p { flex-grow: 1; }

.testimonials-section { background-color: var(--white-color); }
.testimonial-card { background-color: var(--white-color); border-radius: var(--border-radius); padding: 2rem; box-shadow: var(--shadow-light); border: 1px solid var(--border-color); height: 100%; }
.testimonial-card__author-info { display: flex; align-items: center; }
.testimonial-card__author-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; margin-right: 15px; }
.testimonial-card__author-name { font-weight: 600; margin-bottom: 0; }
.testimonial-card__text { font-style: italic; color: #555; margin-top: 1rem; }
.testimonial-card__rating i { color: #f1c40f; }

.faq-section { background-color: var(--light-color); }
.faq-accordion .accordion-item { border: 1px solid var(--border-color); border-radius: var(--border-radius) !important; margin-bottom: 1rem; overflow: hidden; }
.faq-accordion .accordion-button { font-weight: 600; color: var(--dark-color); }
.faq-accordion .accordion-button:not(.collapsed) { background-color: var(--primary-color); color: var(--white-color); box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25); }
.faq-accordion .accordion-body { background-color: var(--white-color); }

.cta-section { background: linear-gradient(45deg, var(--dark-color), var(--accent-color)); color: var(--white-color); padding: 5rem 0; border-radius: 20px; box-shadow: var(--shadow-medium); }
.cta-section__title { font-weight: 700; }
.cta-section__button { background-color: var(--white-color); color: var(--primary-color); }
.cta-section__button:hover { background-color: var(--light-color); color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.site-footer { background-color: var(--dark-color); color: #dca8a8; padding: 2rem 0; }

.service-card { overflow: hidden; }
.service-card__image { width: 100%; height: 250px; object-fit: cover; }
.service-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.service-card__body p { flex-grow: 1; margin-bottom: 1.5rem; }
.service-card__body .custom-btn { margin-top: auto; }
.service-card__title { font-weight: 600; }

.booking-modal .modal-dialog { max-width: 950px; }
.booking-modal .modal-content { border-radius: var(--border-radius); border: none; }
.booking-modal__header { padding: 1rem 1.5rem; }
.booking-modal__header-title { font-weight: 600; font-size: 1.1rem; }
.booking-modal__body { padding: 1.5rem; background-color: var(--light-color); }
.booking-modal .modal-footer { display: none; }
.booking-modal__section-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.booking-modal__step-content { background-color: var(--white-color); padding: 1.5rem; border-radius: 8px; border: 1px solid var(--border-color); }
.date-selector__box--active, .option-selector__option input:checked + .option-selector__label-content, .time-selector__slot--active, .payment-method input:checked + .payment-method__content, .frequency-option input:checked + .frequency-option__content { border-color: var(--primary-color) !important; box-shadow: 0 0 0 2px var(--primary-color); }
.option-selector__option input:checked + .option-selector__label-content { background-color: #fce8e9; }
.quantity-selector__button:hover { background-color: var(--primary-color); color: var(--white-color); border-color: var(--primary-color); }
.date-selector { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.date-selector__arrow { cursor: pointer; font-size: 1rem; color: #aaa; transition: color 0.2s; }
.date-selector__scroller { flex-grow: 1; display: flex; gap: 8px; overflow: hidden; white-space: nowrap; scroll-behavior: smooth; }
.date-selector__box { cursor: pointer; border: 2px solid var(--border-color); border-radius: 8px; padding: 8px; transition: var(--transition); min-width: 65px; color: var(--dark-color); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.date-selector__day { font-weight: 600; font-size: 0.8rem; line-height: 1; }
.date-selector__date { font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.option-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.option-selector--full-width { grid-template-columns: 1fr; }
.option-selector__option { margin-bottom: 0; }
.option-selector__option input[type="radio"] { display: none; }
.option-selector__label-content { display: flex; align-items: center; padding: 1rem; border: 2px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: var(--transition); }
.option-selector__label-content i { font-size: 1.25rem; color: var(--dark-color); margin-right: 10px; width: 25px; text-align: center; }
.material-note { background-color: #fce8e9; color: #a12832; border: 1px solid #f8c5c9; border-radius: 8px; padding: 1rem; margin-top: 1rem; font-size: 0.85rem; line-height: 1.5; }
.quantity-selector { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.quantity-selector__button { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--border-color); background-color: var(--white-color); color: var(--primary-color); font-size: 1rem; cursor: pointer; transition: var(--transition); }
.quantity-selector__button:disabled { background-color: var(--light-color); color: #ccc; cursor: not-allowed; }
.quantity-selector__display { font-size: 1.5rem; font-weight: 600; min-width: 120px; text-align: center; }
.time-selector { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; }
.time-selector__slot { cursor: pointer; border: 1px solid var(--border-color); border-radius: 8px; padding: 12px; font-weight: 500; transition: var(--transition); text-align: center; }
.info-box { background-color: #fce8e9; color: #a12832; padding: 1rem; border-radius: 8px; margin-top: 1.5rem; font-size: 0.9rem; }
.notes-textarea:focus, .personal-info-form .form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25); }
.summary-card { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color); background-color: var(--white-color); }
.summary-card__header, .summary-card__total { background-color: var(--dark-color); color: var(--white-color); padding: 1rem; font-weight: 600; }
.summary-card__body { padding: 1rem; }
.summary-card__item { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; }
.summary-card__item span:last-child { font-weight: 600; }
.modal-actions { margin-top: 1rem; }
.modal-actions .btn-light { border-color: var(--border-color); width: 100%; margin-bottom: 0.5rem; }
.modal-actions .custom-btn--primary { width: 100%; }
.frequency-option { display: block; margin-bottom: 0.75rem; }
.frequency-option input[type="radio"] { display: none; }
.frequency-option__content { display: flex; align-items: center; padding: 1rem; border: 2px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: var(--transition); background-color: var(--white-color); }
.frequency-recurring-group { background-color: #495057; border-radius: var(--border-radius); padding: 1.5rem; margin-top: 1rem; }
.frequency-option__radio-circle { display: inline-block; width: 24px; height: 24px; border-radius: 50%; border: 2px solid #adb5bd; margin-right: 1rem; position: relative; transition: var(--transition); }
.frequency-option input:checked + .frequency-option__content .frequency-option__radio-circle { border-color: var(--primary-color); }
.frequency-option input:checked + .frequency-option__content .frequency-option__radio-circle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; border-radius: 50%; background-color: var(--primary-color); }
.frequency-option__checkmark { display: none; font-size: 1.5rem; color: var(--primary-color); margin-right: 1rem; }
.frequency-option input:checked + .frequency-option__content .frequency-option__checkmark { display: block; }
.frequency-advantages { color: #ced4da; margin-top: 1.5rem; padding-left: 0.5rem; }
.frequency-advantages__title { font-weight: 600; margin-bottom: 0.5rem; }
.frequency-advantages__list { list-style-type: disc; padding-left: 1rem; font-size: 0.9rem; }
.payment-header { background-color: var(--white-color); padding: 1rem; border-radius: 8px; border: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 1.5rem; }
.payment-breakdown { background-color: var(--white-color); border: 1px solid var(--border-color); border-radius: 8px; padding: 1.5rem; flex-grow: 1; }
.payment-breakdown__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; color: var(--primary-color); }
.payment-breakdown__list { list-style: none; padding: 0; margin: 0; }
.payment-breakdown__list li { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.95rem; }
.payment-breakdown__list li span:last-child { font-weight: 600; }
.payment-breakdown__total { border-top: 1px solid var(--border-color); padding-top: 1rem; margin-top: 1rem; display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; color: var(--primary-color); }
.payment-info { background-color: var(--primary-color); color: var(--white-color); border-radius: 8px; padding: 1.5rem; flex-grow: 1; }
.payment-info__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }
.payment-info__box { background-color: #c42c38; padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.payment-info__list li { display: flex; justify-content: space-between; font-size: 0.95rem; }
.payment-info__total { border-top: 1px solid rgba(255,255,255,0.3); padding-top: 1rem; margin-top: 1rem; display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-method input[type="radio"] { display: none; }
.payment-method__content { display: flex; align-items: center; padding: 1rem; border: 2px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: var(--transition); background-color: var(--white-color); }
.payment-method__icon { display: none; font-size: 1.5rem; color: var(--primary-color); margin-right: 1rem; }
.payment-method input:checked + .payment-method__content .payment-method__icon { display: block; }
.payment-method__circle { display: inline-block; width: 24px; height: 24px; border-radius: 50%; border: 2px solid #adb5bd; margin-right: 1rem; position: relative; transition: var(--transition); }
.payment-method input:checked + .payment-method__content .payment-method__circle { display: none; }
.form-check-label a { color: var(--accent-color); font-weight: 500; text-decoration: none; }
.form-check-input:checked { background-color: var(--primary-color); border-color: var(--primary-color); }

.contact-info__icon { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background-color: var(--light-color); color: var(--primary-color); font-size: 1.5rem; }
.map-container { overflow: hidden; border-radius: var(--border-radius); box-shadow: var(--shadow-medium); }

.sticky-cta-box { position: fixed; bottom: 20px; left: 20px; background-color: var(--dark-color); color: var(--white-color); padding: 1.5rem; border-radius: var(--border-radius); box-shadow: var(--shadow-medium); z-index: 100; max-width: 280px; transition: var(--transition); }
.sticky-cta-box:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(29, 53, 87, 0.2); }
.sticky-cta-box__title { font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--white-color); }
.sticky-cta-box__text { font-size: 0.9rem; opacity: 0.8; margin-bottom: 1rem; }
.sticky-cta-box__link { display: inline-block; font-size: 0.9rem; font-weight: 600; color: var(--white-color); background-color: var(--primary-color); text-decoration: none; padding: 0.5rem 1rem; border-radius: 8px; transition: var(--transition); }
.sticky-cta-box__link:hover { background-color: #c42c38; }
.sticky-cta-box__close { position: absolute; top: 5px; right: 10px; background: none; border: none; color: var(--white-color); font-size: 2rem; font-weight: 300; line-height: 1; opacity: 0.7; padding: 0; }
.sticky-cta-box__close:hover { opacity: 1; }
.sticky-cta-icon { position: fixed; bottom: 20px; left: 20px; width: 60px; height: 60px; background-color: var(--primary-color); color: var(--white-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; box-shadow: var(--shadow-medium); z-index: 99; transition: var(--transition); }
.sticky-cta-icon:hover { transform: scale(1.1); background-color: #c42c38; }
@media (max-width: 768px) { .sticky-cta-box, .sticky-cta-icon { display: none !important; } }

/* === YENİ: DOSYA YÜKLEME ALANI (PERSONEL KAYIT) === */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.file-upload-area:hover,
.file-upload-area.is-dragging {
    border-color: var(--primary-color);
    background-color: #fce8e9;
}
.file-upload-area .file-upload-text {
    margin-bottom: 0;
    color: #6c757d;
}
.file-upload-area .file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
 
/* === YENİ: FORM VALIDATION === */
.personal-info-form .form-control:invalid,
.personal-info-form .form-select:invalid {
    border-color: var(--primary-color);
}
.personal-info-form .form-control:valid,
.personal-info-form .form-select:valid {
    border-color: #198754; /* Bootstrap success green */
}

/* === DOSYA YÜKLEME DURUM GÖSTERGESİ === */
.file-upload-status {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1rem;
    
    /* Metin taşmasını engelle */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding: 0 1rem;
}
/* === PERSONEL KAYIT MODAL HATA MESAJI === */
.personel-kayit-error {
    color: var(--primary-color); /* Ana Kırmızı Renk */
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    padding-top: 0.5rem; /* Butonlarla hizalamak için */
}

/* === BAŞARI MESAJI STİLİ === */
.success-message {
    padding: 2rem 0;
}
.success-message__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Bootstrap'in success renklerini kullanalım */
    background-color: #d1e7dd; 
    color: #0f5132; 
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}
.success-message__title {
    font-weight: 700;
    color: var(--dark-color);
}

/* --- ÖDEME ADIMI TASARIMI (YENİ) --- */
.payment-summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Sol ve Sağ Kartlar (Turuncu Başlıklı) */
.pay-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pay-header {
    background-color: #e63946; /* Turuncu Renk */
    color: white;
    padding: 12px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.pay-body {
    padding: 0;
    flex-grow: 1;
}

.pay-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pay-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #555;
}

.pay-list li:last-child {
    border-bottom: none;
}

.pay-list li span.price {
    font-weight: 700;
    color: #333;
}

.pay-footer {
    background-color: #e63946;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Orta Kart (Mavi Bilgi Kutusu) - DÜZELTİLDİ */
.info-card-blue {
    background-color: #4fc3f7; /* Açık Mavi */
    color: white;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column; /* Yazıları alt alta dizer */
    align-items: center;    /* Yatayda ortalar */
    justify-content: center;/* Dikeyde ortalar */
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Mavi kutu içindeki paragraflar için ek ayar */
.info-card-blue p {
    margin: 0;
    padding: 5px 0;
    width: 100%;
}

/* Sağ Kart (Kalan Tutar) Özel Ayarı */
.pay-card.remaining .pay-header {
    height: 10px; /* Sadece ince çizgi */
    padding: 0;
}
.pay-card.remaining .pay-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.pay-card.remaining .big-price {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-top: 10px;
}


/* Ana Taşıyıcı */
    .whatsapp-widget {
        position: fixed;
        left: 20px;
        bottom: 20px;
        z-index: 99999;
        display: flex;
        align-items: center;
        gap: 12px; /* Buton ile yazı arası boşluk */
    }

    /* Yeşil Yuvarlak Buton */
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 35px;
        line-height: 60px;
        box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative; /* Üstte durması için */
        z-index: 2;
    }

    .whatsapp-btn:hover {
        background-color: #128c7e;
        color: white;
        transform: scale(1.1);
    }

    /* Yazı Baloncuğu */
    .whatsapp-hint {
        background-color: white;
        color: #333;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
        white-space: nowrap; /* Metnin tek satır kalması için */
        position: relative;
        z-index: 1;
        
        /* Başlangıç Durumu (Gizli) */
        opacity: 0;
        visibility: hidden;
        transform: translateX(-20px); /* Soldan çıkacak gibi dursun */
        
        /* Animasyon Ayarları */
        animation: slideInText 0.5s ease forwards; /* 0.5 saniyede gelsin */
        animation-delay: 1s; /* 1 Saniye Beklesin */
    }

    /* Konuşma Baloncuğu Oku (Sola Bakan) */
    .whatsapp-hint::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
        border-width: 6px 6px 6px 0;
        border-style: solid;
        border-color: transparent white transparent transparent;
    }

    /* Animasyonun Kendisi */
    @keyframes slideInText {
        to {
            opacity: 1;
            visibility: visible;
            transform: translateX(0); /* Yerine otursun */
        }
    }

    /* Mobil Ayarları */
    @media (max-width: 768px) {
        .whatsapp-widget {
            left: 15px;
            bottom: 25px;
        }
        .whatsapp-btn {
            width: 50px;
            height: 50px;
            font-size: 28px;
            line-height: 50px;
        }
        .whatsapp-hint {
            font-size: 12px;
            padding: 6px 12px;
        }
    }