:root {
    --primary-color: #FFD700;
    --secondary-color: #FFC107;
    --dark-color: #333;
    --light-color: #f4f4f4;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    background-color: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.logo {
    height: 65px;
    transition: all 0.3s ease;
}

.navbar-scrolled .logo {
    height: 55px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    border-radius: 25px;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.nav-link:hover {
    color: var(--dark-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.15;
}


.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: var(--dark-color);
}

.phone-number i {
    font-size: 1.2rem;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 0.8rem 1rem;
        margin: 0.3rem 0;
    }

    .phone-number {
        margin-top: 1rem;
        justify-content: center;
    }
}

.book-now-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    padding-top: 70px;
    background: url('../images/taxibg1.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.65));
    z-index: 1;
    opacity: 1 !important;
}

.hero .container {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Hero içeriğinin her zaman görünür kalmasını sağla */
.hero-content,
.hero-badge,
.hero-title,
.hero-description,
.hero-actions,
.trust-indicators,
.stats-container {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* AOS animasyonlarını hero section için devre dışı bırak */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.hero [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

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

.badge-text {
    font-size: 0.9rem;
}

/* Hero Title */
.welcome-text {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.brand-text {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 800;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
}

.trust-item i {
    font-size: 1rem;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.stats-card {
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.stats-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.stats-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.stats-card.highlight {
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    color: #000;
}

.rating-info {
    text-align: center;
}

.rating-stars {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.rating-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #000;
}

.rating-info p {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .welcome-text {
        font-size: 1.4rem;
    }

    .brand-text {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
    }

    .stats-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }

    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.section-badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-bottom: 1.5rem;
}

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

.section-title .subtitle {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFC000, #FF8000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.feature-icon {
    font-size: 2.5rem;
    color: #000;
    transform: rotate(-45deg);
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(0deg);
    border-radius: 50%;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-hover {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.feature-number {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:hover .feature-hover {
    opacity: 0.15;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to right, #f8f9fa 50%, white 50%);
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--primary-color);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    text-align: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.stats-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stats-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stats-badge span {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 600;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about {
        background: white;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image-wrapper {
        margin-bottom: 3rem;
    }
    
    .experience-badge, .stats-badge {
        transform: scale(0.9);
    }
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

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

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

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 50px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .social-links {
        justify-content: center;
    }
} 

/* Yeni Taksi Tutma Butonu Stilleri */
.booking-cta {
    margin: 3rem 0;
    position: relative;
}

.btn-book-taxi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.btn-book-taxi:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-book-taxi .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-book-taxi i {
    font-size: 2rem;
}

.booking-features {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.booking-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.booking-features .feature i {
    color: #FFD700;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

/* Contact Section Styles */
.contact {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-form .form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: var(--primary-color);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
} 

/* Taksi Tutma Butonu */
.book-taxi-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.book-taxi-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.book-taxi-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--dark-color);
}

.book-taxi-btn:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

.book-taxi-btn i {
    font-size: 1.3rem;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .book-taxi-btn {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
} 

/* Aktif taksi butonu için stil */
.book-taxi-btn.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    pointer-events: auto; /* Tıklanabilir yap */
}

.book-taxi-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.book-taxi-btn.active::before {
    display: none;
} 

/* Stats Box Styles */
.stats-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stats-info p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .welcome-text {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .stats-box {
        margin-top: 2rem;
    }
} 

/* Developer Info */
.developer-info {
    text-align: left;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.developer-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-info a:hover {
    color: #FFA500;
}

@media (max-width: 767px) {
    .developer-info {
        text-align: center;
        margin-top: 1rem;
    }
} 

/* Navbar hover efektleri */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: #000 !important; /* Siyah yazı rengi */
    background-color: #FFD700 !important; /* Koyu sarı arkaplan */
}

/* Alt çizgiyi kaldır */
.navbar-nav .nav-link::after {
    display: none;
}

/* Aktif link için stil */
.navbar-nav .nav-link.active {
    color: #000 !important;
    background-color: #FFD700 !important;
}

/* Mobil menü hover efekti */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 0.3rem 0;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: #FFD700 !important;
        color: #000 !important;
    }
    
    .navbar-nav .nav-link.active {
        background-color: #FFD700 !important;
        color: #000 !important;
    }
} 

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 1rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.contact-info-item p {
    margin: 0;
    color: #6c757d;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links .facebook { background: #3b5998; }
.social-links .instagram { background: #e1306c; }
.social-links .whatsapp { background: #25d366; }
.social-links .tiktok { background: #0088cc; }

.contact-form-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-floating > label {
    padding-right: 2.5rem;
}

.form-floating > label i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 1rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

#submitBtn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--primary-color);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

#submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #ffd700;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#formAlert {
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .social-links {
        margin-top: 1rem;
    }
} 

/* Kampanyalar Bölümü */
.campaigns-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.campaign-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 15px auto;
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: stretch;
}

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

.campaign-image {
    position: relative;
    width: 300px;
    min-width: 300px;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campaign-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.campaign-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.campaign-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.campaign-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-top: auto;
}

@media (max-width: 768px) {
    .campaign-card {
        flex-direction: column;
    }
    
    .campaign-image {
        width: 100%;
        height: 200px;
    }
    
    .campaign-content {
        padding: 20px;
    }
    
    .campaign-content h3 {
        font-size: 1.5rem;
    }
}