/* Yardım Merkezi Page Styles - Milyonada */

/* CSS Variables */
:root {
    --primary-blue: #2563eb;
    --secondary-blue: #0ea5e9;
    --accent-gold: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Help Hero Section */
.help-hero {
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.help-hero-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.help-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.help-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.help-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Help Container */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Help Search */
.help-search {
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1.1rem;
    background: var(--background-white);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 4rem;
}

.quick-actions h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.action-btn i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.1);
}

/* Help Categories */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.help-category {
    background: var(--background-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.help-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.category-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.help-links {
    list-style: none;
}

.help-link {
    margin-bottom: 0.75rem;
}

.help-link a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-link a:hover {
    background: var(--background-light);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.help-link i {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-hero {
        padding: 4rem 0;
    }
    
    .help-hero-container {
        margin: 1rem auto 0 auto;
    }
    
    .help-hero h1 {
        font-size: 2rem;
    }
    
    .help-hero p {
        font-size: 1.1rem;
    }
    
    .help-container {
        padding: 1rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .help-categories {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .help-hero {
        padding: 3rem 0;
    }
    
    .help-hero-container {
        margin: 0.5rem auto 0 auto;
    }
    
    .help-hero h1 {
        font-size: 1.8rem;
    }
    
    .help-hero p {
        font-size: 1rem;
    }
    
    .search-input {
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .action-btn {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .help-category {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-category {
    animation: fadeInUp 0.6s ease forwards;
}

.help-category:nth-child(2) {
    animation-delay: 0.1s;
}

.help-category:nth-child(3) {
    animation-delay: 0.2s;
}

.help-category:nth-child(4) {
    animation-delay: 0.3s;
}

.help-category:nth-child(5) {
    animation-delay: 0.4s;
}

.help-category:nth-child(6) {
    animation-delay: 0.5s;
}

/* Focus States */
.search-input:focus,
.action-btn:focus,
.help-link a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .help-hero {
        background: white !important;
        color: black !important;
    }
    
    .help-hero h1,
    .help-hero p {
        color: black !important;
        text-shadow: none !important;
    }
    
    .action-btn,
    .help-category {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* Help Center Contact Section - Specific Styles */
.help-container .contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto !important;
    height: auto !important;
}

.help-container .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.help-container .contact-section h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.help-container .contact-section > p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.help-container .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.help-container .contact-section .contact-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-height: 120px;
}

.help-container .contact-section .contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.help-container .contact-section .contact-item i,
.help-container .contact-section .contact-item .fas,
.help-container .contact-section .contact-item .fa,
.help-container .contact-section .contact-item .fa-headset,
.help-container .contact-section .contact-item .fa-envelope,
.help-container .contact-section .contact-item .fa-phone,
.help-container .contact-section .contact-item .fa-clock {
    font-size: 2.5rem !important;
    color: white !important;
    min-width: 60px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.help-container .contact-section .contact-item-content {
    flex: 1;
    text-align: left;
}

.help-container .contact-section .contact-item h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.help-container .contact-section .contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.help-container .contact-section .contact-item a:hover {
    color: #fbbf24;
    transform: translateX(3px);
}

.help-container .contact-section .contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.help-container .contact-section .contact-item .highlight {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.help-container .contact-section .contact-item .status {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.help-container .contact-section .contact-item .time-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.help-container .contact-section .contact-item .time-info p:last-child {
    margin-bottom: 0;
}

.help-container .contact-section .contact-item .time-info strong {
    color: white;
    font-weight: 700;
}

/* Help Center Floating Shapes Animation */
.help-container .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.help-container .floating-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: helpFloat 6s ease-in-out infinite;
}

.help-container .floating-shapes .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.help-container .floating-shapes .shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.help-container .floating-shapes .shape:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes helpFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design for Help Center Contact Section */
@media (max-width: 768px) {
    .help-container .contact-section {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }
    
    .help-container .contact-section h3 {
        font-size: 2rem;
    }
    
    .help-container .contact-section > p {
        font-size: 1rem;
    }
    
    .help-container .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-container .contact-section .contact-item {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .help-container .contact-section .contact-item i {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .help-container .contact-section .contact-item h4 {
        font-size: 1.2rem;
    }
    
    .help-container .contact-section .contact-item a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .help-container .contact-section {
        padding: 1.5rem 1rem;
    }
    
    .help-container .contact-section h3 {
        font-size: 1.8rem;
    }
    
    .help-container .contact-section .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .help-container .contact-section .contact-item-content {
        text-align: center;
    }
    
    .help-container .contact-section .contact-item i {
        font-size: 2.5rem;
        min-width: auto;
    }
} 