/* 
 * Turuncu Fal - Main CSS file
 * Modern Fortune Telling Platform
 */

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
    /* Colors */
    --primary-color: #ff8800;
    --primary-dark: #e67300;
    --primary-light: #ffa64d;
    --secondary-color: #6610f2;
    --secondary-dark: #5b0edb;
    --secondary-light: #8540f5;
    --dark-color: #1a1625;
    --body-color: #2b2440;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --black: #000000;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Typography */
    --font-family-sans: 'Poppins', sans-serif;
    --font-family-serif: 'Lora', serif;
    --font-family-mystical: 'Cinzel', serif;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-sm: 50px;
    
    /* Other */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-mystical);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-sm) 0;
    }
}
.bg-light {
    background-color: var(--gray-100);
}

.bg-dark {
    background-color: var(--dark-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    margin-bottom: 50px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 24px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.text-white .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-300);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/
.header {
    width: 100%;
    z-index: 1000;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Social Bar Styling */
.social-bar {
    background-color: var(--dark-color);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
}

.info-item {
    color: var(--white);
    margin-right: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.info-item:hover {
    color: var(--primary-color);
}

.info-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Added or corrected menu styles to fix the bullet points issue */
.main-menu {
    display: flex;
    justify-content: center;
}

.main-menu .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .menu-item {
    margin: 0 15px;
    position: relative;
}

.main-menu .menu-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.main-menu .menu-link:hover,
.main-menu .menu-link.active {
    color: var(--primary-color);
}

.main-menu .menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--dark-color);
    z-index: 9999;
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-logo {
    max-height: 40px;
}

.mobile-menu-close {
    cursor: pointer;
    font-size: 30px;
    color: var(--white);
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    margin-bottom: 15px;
}

.mobile-menu-items li a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.mobile-menu-items li a:hover,
.mobile-menu-items li a.active {
    color: var(--primary-color);
}

.mobile-auth {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-auth-btn {
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    text-decoration: none;
}

.mobile-auth .login-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.mobile-auth .register-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open + .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    margin-left: 20px;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Header Auth Section */
.header-auth {
    display: flex;
    align-items: center;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.login-btn, 
.register-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    margin-left: 10px;
}

.login-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.register-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.register-btn:hover {
    background-color: var(--primary-dark);
}

/* User dropdown */
.user-dropdown {
    position: relative;
}

.user-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.user-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.user-toggle i.fa-user-circle {
    font-size: 20px;
    margin-right: 8px;
}

.user-toggle i.fa-chevron-down {
    font-size: 12px;
    margin-left: 8px;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--gray-800);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: 8px 0;
}

/* Responsive Header */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .logo img {
        max-height: 50px;
    }
}

@media (min-width: 992px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .logo img {
        max-height: 60px;
    }
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.footer {
    background-color: var(--dark-color);
    color: var(--gray-400);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 70px;
}

.footer-about-text {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-social ul {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social ul li a:hover {
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-form {
    position: relative;
    margin-top: 15px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    padding: 12px 45px 12px 20px;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-400);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: none;
}

.newsletter-submit-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-submit-btn:hover {
    color: var(--primary-color);
}

.footer-app-buttons {
    margin-top: 25px;
}

.footer-app-buttons h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-button img {
    height: 40px;
}

.footer-bottom {
    padding: 20px 0;
}

.copyright p {
    margin-bottom: 0;
    color: var(--gray-500);
}

.footer-bottom-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: flex-end;
}

.footer-bottom-links ul li {
    margin-left: 20px;
}

.footer-bottom-links ul li a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom-links ul li a:hover {
    color: var(--primary-color);
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 20px 0;
    z-index: 999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-learn-more {
    color: var(--primary-color);
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/*--------------------------------------------------------------
# Homepage Styles
--------------------------------------------------------------*/
/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background-color: var(--dark-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/stars-bg.png');
    opacity: 0.4;
}

.hero-moon {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    background-image: url('../images/moon.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-300);
    max-width: 500px;
}

.hero-stats-wrap {
    margin-bottom: 30px;
}

.hero-stats {
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 25px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-stat-text {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-tarot {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-crystal {
    top: 60%;
    left: 15%;
    animation: float 8s ease-in-out infinite;
}

.floating-coffee {
    top: 30%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

.floating-zodiac {
    bottom: 15%;
    right: 15%;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Fortune Types Section */
.fortune-type-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-top: 4px solid var(--card-color, var(--primary-color));
}

.fortune-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fortune-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortune-type-icon img {
    max-width: 100%;
    max-height: 100%;
}

.fortune-type-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fortune-type-description {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.fortune-type-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.fortune-type-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.fortune-type-link:hover i {
    transform: translateX(5px);
}

/* Featured Fortune Tellers Section */
.featured-tellers-section {
    overflow-x: hidden; /* Önemli: Yatay taşma engellendi */
}

.teller-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.teller-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 20px;
    transition: transform 0.5s ease;
    width: auto;
}

.teller-slider-item {
    flex: 0 0 280px; /* Sabit genişlik */
    min-width: 280px; /* Mobilde küçülmemesini sağlar */
    max-width: 280px;
    margin-right: 0;
}

/* Responsive ayarlar */
@media (max-width: 1399px) {
    .teller-slider-item {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 991px) {
    .teller-slider-item {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
    }
}

@media (max-width: 767px) {
    .teller-slider-item {
        flex: 0 0 220px;
        min-width: 220px;
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .teller-slider-item {
        flex: 0 0 200px;
        min-width: 200px;
        max-width: 200px;
    }
}

.teller-slider-nav {
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.teller-slider-prev,
.teller-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.teller-slider-prev:hover,
.teller-slider-next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.fortune-teller-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.fortune-teller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fortune-teller-image {
    position: relative;
    height: 250px;
}

.fortune-teller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teller-online-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.teller-online-badge.online {
    color: var(--success);
}

.teller-online-badge.offline {
    color: var(--gray-600);
}

.online-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.online .online-indicator {
    background-color: var(--success);
}

.offline .online-indicator {
    background-color: var(--gray-500);
}

.fortune-teller-info {
    padding: 25px;
}

.teller-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.teller-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.specialty-badge {
    background-color: var(--gray-100);
    border-radius: 30px;
    padding: 3px 10px;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.teller-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--warning);
    margin-right: 5px;
}

.rating-count {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.teller-bio {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-steps {
    counter-reset: step-counter;
}

.how-step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-description {
    color: var(--gray-600);
}

.pulse-button {
    position: relative;
}

.pulse-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--primary-color);
    opacity: 0.7;
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Testimonials Section */
.testimonial-slider-container {
    position: relative;
    padding: 0 50px;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    gap: 30px;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .testimonial-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 992px) {
    .testimonial-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-content {
    font-style: italic;
    color: var(--body-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-detail {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 1;
}

.testimonial-slider-prev,
.testimonial-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-slider-prev:hover,
.testimonial-slider-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Blog Section */
.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-category a {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
}

.blog-card-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--dark-color);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
}

.blog-date {
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.blog-read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Partners Section */
.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-item {
    flex: 0 0 auto;
    width: calc(16.666% - 25px);
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: 80px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 16, 242, 0.8), rgba(255, 136, 0, 0.8));
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
} 
