/* =============================================
   ANA SAYFA ÖZELLİKLERİ - CRM v2.0
   ============================================= */

/* =============================================
   GALAKSI HERO SECTION
   ============================================= */

.hero-section-galaxy {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

.galaxy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Yıldızlar Animasyonu */
.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 160px 120px, #ddd, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: starsMove 240s linear infinite;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 60px 80px, #FFD700, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 50px, #F4C430, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 180px 140px, #FFD700, rgba(0,0,0,0));
    background-size: 250px 250px;
    animation: starsMove 300s linear infinite;
}

.stars3 {
    background-image: 
        radial-gradient(3px 3px at 100px 100px, rgba(255,215,0,0.5), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 50px, rgba(244,196,48,0.3), rgba(0,0,0,0));
    background-size: 300px 300px;
    animation: starsMove 360s linear infinite;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.hero-content-galaxy {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--mimoza-gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--mimoza-gold), var(--mimoza-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats-inline .stat {
    text-align: center;
}

.hero-stats-inline .stat strong {
    display: block;
    font-size: 2rem;
    color: var(--mimoza-gold);
    margin-bottom: 5px;
}

.hero-stats-inline .stat span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   STORIFY SECTION - Galaksi Hikayesi
   ============================================= */

.storify-section {
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    color: var(--white);
    padding: 100px 0;
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
}

.storify-section .section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.storify-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.story-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.story-card:hover {
    background: rgba(255,215,0,0.05);
    border-color: rgba(255,215,0,0.4);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 1.5rem;
    color: var(--mimoza-gold);
    margin-bottom: 15px;
}

.story-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* =============================================
   ORBIT VISUALIZATION
   ============================================= */

.orbit-visualization {
    margin-top: 80px;
    padding: 60px 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.1);
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto 40px;
}

.central-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.star-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--mimoza-gold), var(--mimoza-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(255,215,0,0.6),
        0 0 80px rgba(255,215,0,0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-name {
    color: var(--black);
    font-weight: 800;
    font-size: 1.1rem;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 { width: 200px; height: 200px; animation: rotateOrbit 10s linear infinite; }
.orbit-2 { width: 280px; height: 280px; animation: rotateOrbit 15s linear infinite; }
.orbit-3 { width: 360px; height: 360px; animation: rotateOrbit 20s linear infinite; }
.orbit-4 { width: 440px; height: 440px; animation: rotateOrbit 25s linear infinite; }

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.planet {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,215,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    animation: floatPlanet 3s ease-in-out infinite;
}

@keyframes floatPlanet {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.planet:hover {
    background: rgba(255,215,0,0.2);
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.planet[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--mimoza-gold);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid var(--mimoza-gold);
}

.orbit-caption {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
}

.orbit-caption strong {
    color: var(--mimoza-gold);
}

/* =============================================
   SERVICES QUICK
   ============================================= */

.services-quick {
    background: var(--white);
}

.services-grid-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card-quick {
    background: var(--gray-lightest);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card-quick:hover {
    background: var(--mimoza-pale);
    border-color: var(--mimoza-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card-quick h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 12px;
}

.service-card-quick p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Hero Section CRM */
.hero-section-crm {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section-crm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--mimoza-gold) 0%, transparent 50%);
    opacity: 0.05;
}

.hero-content-crm {
    position: relative;
    z-index: 1;
}

.hero-content-crm h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-dark);
}

/* =============================================
   DOMAIN CHECKER
   ============================================= */

.domain-checker-section {
    background: var(--gray-lightest);
}

.domain-checker-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.domain-input-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.domain-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 1.125rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.domain-input:focus {
    border-color: var(--mimoza-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.domain-results {
    background: var(--gray-lightest);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.domain-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.status-available {
    color: var(--success);
    font-weight: 600;
}

.status-taken {
    color: var(--error);
    font-weight: 600;
}

.domain-price {
    font-size: 1.25rem;
    color: var(--gray-dark);
}

.popular-extensions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.popular-extensions .label {
    color: var(--gray-dark);
    font-weight: 600;
}

.extension-tag {
    padding: 8px 16px;
    background: var(--gray-lightest);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.extension-tag:hover {
    background: var(--mimoza-gold);
    border-color: var(--mimoza-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.affiliate-notice {
    background: var(--mimoza-pale);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--mimoza-gold);
    font-size: 0.95rem;
}

.affiliate-notice a {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

/* =============================================
   SEO ANALYZER
   ============================================= */

.seo-analyzer-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.seo-input-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.seo-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 1.125rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
}

.seo-input:focus {
    border-color: var(--mimoza-gold);
    outline: none;
}

.seo-score-circle {
    text-align: center;
    margin-bottom: 40px;
}

.score-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--mimoza-gold);
    line-height: 1;
}

.score-label {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-top: 10px;
}

.seo-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-item {
    background: var(--gray-lightest);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.seo-suggestions {
    background: var(--mimoza-pale);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.seo-suggestions h4 {
    margin-bottom: 15px;
    color: var(--black);
}

.seo-suggestions ul {
    list-style: none;
    padding: 0;
}

.seo-suggestions li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.seo-suggestions li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--mimoza-gold);
    font-weight: 700;
}

/* =============================================
   SEO CHECKLIST
   ============================================= */

.checklist-container {
    max-width: 900px;
    margin: 0 auto;
}

.checklist-category {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.checklist-category h3 {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 1.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--gray-lightest);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.checklist-item:hover {
    background: var(--mimoza-pale);
    transform: translateX(5px);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: var(--mimoza-gold);
}

.item-text {
    font-size: 1.05rem;
    color: var(--black);
}

.checklist-progress {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: var(--shadow-md);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: var(--gray-lightest);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mimoza-gold), var(--mimoza-dark));
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

/* =============================================
   MARKETING QUIZ
   ============================================= */

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

.quiz-step h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--black);
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quiz-option {
    padding: 25px 20px;
    background: var(--gray-lightest);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.quiz-option:hover {
    border-color: var(--mimoza-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.quiz-option.selected {
    background: var(--mimoza-pale);
    border-color: var(--mimoza-gold);
    box-shadow: var(--shadow-gold);
}

.option-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.option-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
}

.quiz-results {
    text-align: center;
}

.results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
    text-align: left;
}

.result-card {
    background: var(--gray-lightest);
    padding: 25px;
    border-radius: 12px;
}

.result-card h4 {
    margin-bottom: 15px;
    color: var(--black);
}

.result-card ul {
    list-style: none;
    padding: 0;
}

.result-card li {
    padding: 8px 0;
    color: var(--gray-darker);
}

.budget-breakdown p {
    padding: 10px;
    background: var(--white);
    border-radius: 6px;
    margin-bottom: 8px;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

/* =============================================
   BUTTON STYLES
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--mimoza-gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--mimoza-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-mimoza {
    background: var(--gradient-mimoza);
    color: var(--black);
}

.btn-mimoza:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-secondary {
    background: var(--gray);
    color: var(--white);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confetti {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    z-index: 9999;
    animation: confettiBurst 2s ease-out;
}

@keyframes confettiBurst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .hero-content-crm h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .domain-input-wrapper,
    .seo-input-wrapper {
        flex-direction: column;
    }
    
    .quiz-container {
        padding: 30px 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
