/* Ana renk değişkenleri */
:root {
    --primary-yellow: #ffd700;
    --primary-yellow-light: #ffed4a;
    --primary-orange: #ff8f00;
    --primary-orange-light: #ffa726;
    --warning-color: #ffc107;
}

/* Kampanya Kartları için Yeni Stiller */
.campaign-list-new {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.campaign-card-new {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #ffd700;
    padding: 2rem 2rem 2rem 3rem;
    margin-bottom: 1.5rem;
}

.campaign-card-new:hover {
    transform: translateY(-5px);
    border-color: #ffed4a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.campaign-discount-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    padding: 8px 20px;
    border-radius: 0 50px 50px 0;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.campaign-discount-badge:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid #ffd700;
    border-left: 10px solid transparent;
    filter: brightness(80%);
}

.campaign-content-new {
    display: flex;
    flex-direction: column;
}

.campaign-title-new {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.campaign-description-new {
    color: #505c6c;
    line-height: 1.6;
}

.campaign-meta-new {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.campaign-validity-new {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-validity-new i {
    color: #ffd700;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .campaign-card-new {
        padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    }
    
    .campaign-title-new {
        font-size: 1.5rem;
    }
    
    .campaign-discount-badge {
        font-size: 1rem;
        padding: 6px 15px;
    }
}

.no-campaigns-message {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 2rem 0;
    color: #666;
}

/* Taksi Çağırma Butonu Yeni Stil */
.book-taxi-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.book-taxi-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4a, #ffd700);
    color: #000;
}

.book-taxi-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.book-taxi-btn:hover i {
    transform: translateX(-5px);
}

/* Parlama efekti */
.book-taxi-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.book-taxi-btn:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, -50%);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .book-taxi-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Hero bölümü - Taksi Çağırma Butonu */
.hero .btn-primary {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-yellow-light));
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, var(--primary-yellow-light), var(--primary-yellow));
    color: #000;
}

.hero .btn-primary i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.hero .btn-primary:hover i {
    transform: translateX(-8px);
    animation: taxiMove 0.6s ease infinite;
}

/* Taksi ikonu animasyonu */
@keyframes taxiMove {
    0% {
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(-12px);
    }
    100% {
        transform: translateX(-8px);
    }
}

/* Parlama efekti */
.hero .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.hero .btn-primary:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, -50%);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .hero .btn-primary {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .hero .btn-primary i {
        font-size: 1.2rem;
    }
}

/* Hover efekti için ek stil */
.campaign-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.05) 0%,
        rgba(255, 237, 74, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-card-new:hover::before {
    opacity: 1;
}

/* Kampanyalar Butonu */
.btn-campaign {
    background: linear-gradient(45deg, var(--primary-yellow), var(--warning-color));
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.btn-campaign:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    color: #000;
    text-decoration: none;
    background: linear-gradient(45deg, var(--warning-color), var(--primary-yellow));
}

.btn-campaign i {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
    color: #000;
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    left: 0;
    top: 0;
    animation: pulse-ring 2s infinite;
}

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

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

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .btn-campaign {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 15px;
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* Özel İndirim Kutusu */
.special-discount-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 600px;
}

.discount-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: giftBounce 2s infinite;
}

.special-discount-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .special-discount-box {
        padding: 15px;
        margin: 20px 0;
        flex-direction: column;
        text-align: center;
    }

    .special-discount-text {
        font-size: 1.1rem;
    }

    .discount-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

/* Hero Sosyal Medya İkonları */
.hero-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-social-links .social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.hero-social-links .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hero-social-links .social-link:hover::before {
    transform: translateY(0);
}

.hero-social-links .social-link:hover {
    transform: translateY(-5px);
}

.hero-social-links .social-link.facebook {
    background: #3b5998;
}

.hero-social-links .social-link.instagram {
    background: #e1306c;
}

.hero-social-links .social-link.whatsapp {
    background: #25d366;
}

.hero-social-links .social-link.tiktok {
    background: #000;
}

.hero-social-links .social-link i {
    position: relative;
    z-index: 1;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .hero-social-links {
        justify-content: center;
        margin-top: 25px;
    }

    .hero-social-links .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Developer Info Styles */
.developer-info {
    text-align: right;
    margin: 0;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.developer-info::before {
    font-family: "Font Awesome 5 Free";
    content: '\f121';  /* Code ikonu */
    display: inline-block;
    font-weight: 900;
    color: var(--primary-yellow);
    animation: codeTyping 2s infinite;
}

.developer-info a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(255, 237, 74, 0.1)
    );
    position: relative;
    overflow: hidden;
}

.developer-info a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.developer-info a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.2), 
        rgba(255, 237, 74, 0.2)
    );
}

@keyframes codeTyping {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .developer-info {
        text-align: center;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Trust Indicators */
.trust-indicators .trust-item i {
    color: var(--primary-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Stats Icons */
.stats-icon {
    color: var(--primary-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Sosyal medya ikonları hover efekti */
.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
} 