/* Genel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #495057;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #212529;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar.scrolled .navbar-brand {
    color: #212529 !important;
}

.logo-img {
    height: 30px;
    margin-right: 10px;
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-left: 1rem;
    transition: color 0.3s;
}

.navbar.scrolled .nav-link {
    color: #495057 !important;
}

.nav-link:hover {
    color: #fff !important;
}

.navbar.scrolled .nav-link:hover {
    color: #E1467C !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 100px 0;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .text-content {
    padding-right: 3rem;
}

.crystal-ball-icon {
    width: 80px;
    margin-bottom: 1.5rem;
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-cta {
    background-color: #fff;
    color: #6A5ACD;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: #E1467C;
}

/* Phone Mockup */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #495057;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    animation: float-phone 5s ease-in-out infinite;
}

@keyframes float-phone {
    0% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

.phone-screen {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.5);
}

/* Features Section */
#features {
    background-color: #fff;
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 90, 205, 0.2);
}

.feature-card .icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #6A5ACD;
    display: inline-block;
    background: rgba(106, 90, 205, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #6c757d;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #6c757d;
}

footer a {
    color: #6A5ACD;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #E1467C;
}

/* Legal Pages Specific Styles */
.legal-page {
    padding-top: 120px;
    padding-bottom: 50px;
    background-color: #fff;
}

.legal-page .container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.legal-page h1 {
    color: #6A5ACD;
    margin-bottom: 30px;
}

.legal-page h2 {
    color: #E1467C;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    .hero-section .text-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .phone-mockup {
        transform: scale(0.8);
        animation: none;
    }
}
