/* ===============================================
   REHBER YÖNETİMİ PAGE STYLES
   =============================================== */

/* Hero Section */
.rehber-hero-section {
    padding: 50px 0;
    background: #fff;
}

.rehber-hero-title {
    font-weight: 700;
    color: #060394;
    margin-bottom: 20px;
}

.rehber-hero-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rehber-hero-features {
    color: #6c757d;
    line-height: 1.9;
    margin-bottom: 0;
}

.rehber-hero-features li {
    margin-bottom: 8px;
}

.rehber-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,.08); */
}

/* Features Section */
.rehber-features-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.rehber-feature-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.rehber-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.rehber-feature-icon {
    height: 40px;
    margin-bottom: 15px;
}

.rehber-feature-title {
    font-weight: 600;
    color: #060394;
    margin-bottom: 15px;
}

.rehber-feature-description {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ Section */
.rehber-faq-section {
    padding: 50px 0;
    background: #fff;
}

.rehber-faq-title {
    font-weight: 700;
    color: #060394;
    margin-bottom: 30px;
}

.rehber-faq-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.rehber-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.rehber-faq-question {
    font-weight: 600;
    color: #060394;
    margin-bottom: 15px;
}

.rehber-faq-answer {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}


/* Modal Styles */
.rehber-modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.rehber-modal-header {
    border-bottom: none;
    padding: 20px 20px 0;
}

.rehber-modal-body {
    padding: 20px;
    text-align: center;
}

.rehber-modal-icon {
    font-size: 57px;
    color: #4a5fd6;
    margin-bottom: 20px;
}

.rehber-modal-title {
    margin-top: 24px;
    color: #4a4646;
    font-weight: 600;
    margin-bottom: 15px;
}

.rehber-modal-text {
    color: #6c757d;
    margin-bottom: 20px;
}

.rehber-coupon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

/* Back to Top Button */
.rehber-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
}

.rehber-back-to-top button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.rehber-back-to-top button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Bubbles Animation */
.rehber-bubbles-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.rehber-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.rehber-bubble.x1 { left: 10%; animation-delay: 0s; }
.rehber-bubble.x2 { left: 20%; animation-delay: 2s; }
.rehber-bubble.x3 { left: 35%; animation-delay: 4s; }
.rehber-bubble.x4 { left: 50%; animation-delay: 0s; }
.rehber-bubble.x5 { left: 55%; animation-delay: 2s; }
.rehber-bubble.x6 { left: 70%; animation-delay: 4s; }
.rehber-bubble.x7 { left: 80%; animation-delay: 2s; }
.rehber-bubble.x8 { left: 90%; animation-delay: 4s; }
.rehber-bubble.x9 { left: 95%; animation-delay: 0s; }
.rehber-bubble.x10 { left: 5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .rehber-hero-section,
    .rehber-features-section,
    .rehber-faq-section {
        padding: 30px 0 !important;
    }
    
    
    .rehber-hero-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .rehber-hero-description {
        text-align: center !important;
        font-size: 0.95rem !important;
        margin-bottom: 15px !important;
    }
    
    .rehber-hero-features {
        text-align: left !important;
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
    }
    
    .rehber-faq-title {
        font-size: 1.6rem !important;
        text-align: center !important;
    }
    
    .rehber-feature-card,
    .rehber-faq-card {
        margin-bottom: 20px !important;
    }
    
    .rehber-feature-title {
        font-size: 1.1rem !important;
        text-align: center !important;
    }
    
    .rehber-feature-description {
        text-align: center !important;
        font-size: 0.9rem !important;
    }
    
    .rehber-faq-question {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    .rehber-faq-answer {
        text-align: center !important;
        font-size: 0.9rem !important;
    }
    
    .rehber-back-to-top {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .rehber-back-to-top button {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .rehber-hero-section,
    .rehber-features-section,
    .rehber-faq-section {
        padding: 20px 0 !important;
    }
    
    
    .rehber-hero-title {
        font-size: 1.5rem !important;
        text-align: center !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .rehber-hero-description {
        font-size: 0.9rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .rehber-hero-features {
        font-size: 0.85rem !important;
        text-align: left !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .rehber-hero-features li {
        margin-bottom: 6px !important;
    }
    
    .rehber-faq-title {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .rehber-feature-icon {
        height: 35px !important;
        margin-bottom: 10px !important;
    }
    
    .rehber-feature-title {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .rehber-feature-description {
        font-size: 0.85rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }
    
    .rehber-faq-question {
        font-size: 0.95rem !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .rehber-faq-answer {
        font-size: 0.85rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }
    
    .rehber-modal-icon {
        font-size: 45px !important;
    }
    
    .rehber-modal-title {
        font-size: 1.2rem !important;
    }
    
    .rehber-modal-text {
        font-size: 0.9rem !important;
    }
}

/* Extra Small Devices (360px and down) */
@media (max-width: 360px) {
    .rehber-hero-section,
    .rehber-features-section,
    .rehber-faq-section {
        padding: 15px 0 !important;
    }
    
    
    .rehber-hero-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    .rehber-hero-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
    
    .rehber-hero-features {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .rehber-hero-features li {
        margin-bottom: 5px !important;
    }
    
    .rehber-faq-title {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .rehber-feature-icon {
        height: 30px !important;
        margin-bottom: 8px !important;
    }
    
    .rehber-feature-title {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }
    
    .rehber-feature-description {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .rehber-faq-question {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    .rehber-faq-answer {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .rehber-back-to-top {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .rehber-back-to-top button {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
}

/* Mobile Landscape Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .rehber-hero-section,
    .rehber-features-section,
    .rehber-faq-section {
        padding: 25px 0 !important;
    }
    
    .rehber-hero-title,
    .rehber-faq-title {
        font-size: 1.4rem !important;
    }
    
    .rehber-hero-description {
        font-size: 0.9rem !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .rehber-feature-card:hover,
    .rehber-faq-card:hover {
        transform: none !important;
    }
    
    .rehber-back-to-top button:hover {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .rehber-bubbles-wrap,
    .rehber-back-to-top {
        display: none !important;
    }
    
    .rehber-hero-section,
    .rehber-features-section,
    .rehber-faq-section {
        padding: 20px 0;
    }
    
    .rehber-feature-card,
    .rehber-faq-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
