/* HızlıBahis Custom Styles */
:root {
    --primary-color: #1c1a1a;
    --secondary-color: #1c1a1a;
    --accent-color: #fec826;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #fec826;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #1c1a1a;
    --purple-color: #6f42c1;
    --pink-color: #e83e8c;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* Navigation */
.navbar-brand img {
    transition: transform 0.3s ease;
    filter: brightness(1.1);
    max-width: 200px;
    height: auto;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-buttons .btn {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Hero Feature Cards */
.hero-feature-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-feature-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 20px 24px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
    min-width: 140px;
    min-height: 100px;
    flex: 1;
    max-width: 180px;
}

.hero-feature-card:nth-child(1) {
    animation-delay: 0s;
}

.hero-feature-card:nth-child(2) {
    animation-delay: 1.3s;
}

.hero-feature-card:nth-child(3) {
    animation-delay: 2.6s;
}

.hero-feature-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(254, 200, 38, 0.5);
}

.hero-feature-card i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.hero-feature-card span {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
    .hero-feature-cards {
        gap: 15px;
        justify-content: center;
    }
    
    .hero-feature-card {
        min-width: 120px;
        min-height: 90px;
        padding: 16px 20px;
        flex: none;
    }
    
    .hero-feature-card i {
        font-size: 1.5rem;
    }
    
    .hero-feature-card span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-feature-cards {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-feature-card {
        flex-direction: row;
        min-width: 200px;
        min-height: 60px;
        gap: 12px;
    }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.1);
}

.service-icon i {
    font-size: 2.5rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: rgba(26, 54, 93, 0.1);
}

.service-icon-large i {
    font-size: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Additional Service Cards */
.additional-service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.additional-service-card .service-icon {
    margin-bottom: 1rem;
}

.additional-service-card .service-icon i {
    font-size: 2rem;
}

.text-purple { color: var(--purple-color) !important; }
.text-pink { color: var(--pink-color) !important; }

/* News Cards */
.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.news-image-placeholder i {
    font-size: 3rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.news-title {
    color: var(--primary-color);
    margin: 0.5rem 0 1rem;
    font-weight: 600;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* News Article Cards */
.news-article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.news-article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-article-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.news-article-image-placeholder i {
    font-size: 4rem;
}

.news-article-content {
    padding: 1.5rem;
    height: calc(100% - 250px);
    display: flex;
    flex-direction: column;
}

.news-meta {
    margin-bottom: 1rem;
}

.news-article-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-article-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-article-title a:hover {
    color: var(--secondary-color);
}

.news-article-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Feature Items */
.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 54, 93, 0.1);
}

.feature-icon i {
    font-size: 1.5rem;
}

/* Value Cards */
.value-card {
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.1);
}

.value-icon i {
    font-size: 2.5rem;
}

/* Team Cards */
.team-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.team-avatar i {
    font-size: 2rem;
}

/* Contact Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-floating {
    margin-bottom: 1rem;
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: rgba(26, 54, 93, 0.1);
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Support Channel Cards */
.support-channel {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.support-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.1);
}

.support-icon i {
    font-size: 2rem;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-color) !important;
    transform: translateY(-3px);
}

/* Utilities */
.btn {
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
}

/* No Content Message */
.no-content-message {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .news-card,
    .contact-form-wrapper,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .floating-cards {
        display: none;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}

/* Flash Messages */
.flash-messages {
    position: relative;
    z-index: 1000;
}

.flash-messages .alert {
    margin: 0;
    border-radius: 0;
    border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
