/* Balık Uzmanı - Premium CSS Design */
:root {
    --primary: #0f172a;
    --accent: #38bdf8;
    --text: #334155;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.05);
    --ocean-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --section-gap: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav Modernization */
.glass-header {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Search Box Modernization */
.search-container {
    position: relative;
    width: 200px;
}

.search-container input {
    width: 100%;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-container input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    width: 260px;
}

.search-container input::placeholder {
    color: #64748b;
}

/* Hero Section */
.hero {
    background: var(--ocean-gradient);
    color: white;
    padding: 80px 0;
    /* More compact */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #fff, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #94a3b8;
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

/* Cards & Widgets Modernization */
.card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Partner Redirect Banner */
.partner-cta {
    background: #f1f5f9;
    border-left: 5px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Footer */
footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Glassmorphism Refinement */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Search Suggestions */
#search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
}

.suggestion-item {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

.suggestion-item:hover {
    background: #f8fafc;
}

/* SEO Search Cloud */
.search-cloud-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.search-cloud-list {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 1.5rem;
}

.search-cloud-list::-webkit-scrollbar {
    width: 4px;
}

.search-cloud-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.search-cloud-list::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.search-cloud-list a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 2px;
}

.search-cloud-list a:hover {
    background: #f0f9ff;
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Utils */
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-accent {
    color: var(--accent);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 800px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sticky-cta-bar.active {
    bottom: 2rem;
}

.sticky-cta-bar p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.sticky-cta-bar .cta-price {
    color: var(--accent);
    font-weight: 800;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        width: calc(100% - 1rem);
        padding: 0.8rem 1.2rem;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .sticky-cta-bar p {
        font-size: 0.85rem;
    }
}