/* TevkilMatik - Main Stylesheet */

:root {
    --primary: #374760;
    --primary-dark: #2a3649;
    --primary-light: #4a5d7a;
    --accent: #d4a93a;
    --accent-light: #e5c16a;
    --accent-dark: #b8922f;
    --bg-light: #f8f9fc;
    --bg-cream: #fdfbf7;
    --text-dark: #1a1f2e;
    --text-muted: #5a6478;
    --white: #ffffff;
    --border: #e2e6ed;
    --shadow: 0 4px 24px rgba(55, 71, 96, 0.08);
    --shadow-lg: 0 12px 48px rgba(55, 71, 96, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(55, 71, 96, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 48px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--text-dark) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -3s;
}

.hero-decoration-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    animation-delay: -1.5s;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 169, 58, 0.2);
    border: 1px solid rgba(212, 169, 58, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge::before {
    content: '✨';
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 169, 58, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

/* Free Badge */
.free-badge-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 1.25rem 2rem;
    text-align: center;
}

.free-badge-section p {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    display: none;
}

@media (min-width: 1024px) {
    .steps-container::before {
        display: block;
    }
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(212, 169, 58, 0.25);
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.app-download .section-header h2,
.app-download .section-header p {
    color: var(--white);
}

.app-download .section-header p {
    opacity: 0.85;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.app-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.app-btn svg {
    width: 36px;
    height: 36px;
}

.app-btn-text {
    text-align: left;
}

.app-btn-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-btn-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.coming-soon {
    text-align: center;
    color: var(--accent-light);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    background: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Email Form Section */
.email-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.email-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.email-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.email-container > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.email-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(55, 71, 96, 0.1);
}

.email-form button {
    padding: 1rem 2.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.security-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.security-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.security-text small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1rem;
}

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

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Campaign Section */
.campaign {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.campaign-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent);
}

.campaign-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-dark);
}

.campaign-info-text h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.campaign-info-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.campaign-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.campaign-card.gold::before {
    background: linear-gradient(90deg, #ffd700, #ffb347);
}

.campaign-card.silver::before {
    background: linear-gradient(90deg, #c0c0c0, #a8a8a8);
}

.campaign-card.city::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.campaign-card.giveaway::before {
    background: linear-gradient(90deg, #e91e63, #9c27b0);
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.campaign-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.campaign-card.gold .campaign-card-badge {
    background: linear-gradient(90deg, #ffd700, #ffb347);
    color: var(--text-dark);
}

.campaign-card.silver .campaign-card-badge {
    background: linear-gradient(90deg, #c0c0c0, #a8a8a8);
    color: var(--text-dark);
}

.campaign-card.city .campaign-card-badge {
    background: var(--primary);
    color: var(--white);
}

.campaign-card.giveaway .campaign-card-badge {
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    color: var(--white);
}

.campaign-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-card.gold .campaign-card-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 179, 71, 0.2));
}

.campaign-card.gold .campaign-card-icon svg {
    stroke: #d4a93a;
}

.campaign-card.silver .campaign-card-icon {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(168, 168, 168, 0.2));
}

.campaign-card.silver .campaign-card-icon svg {
    stroke: #888;
}

.campaign-card.city .campaign-card-icon {
    background: linear-gradient(135deg, rgba(55, 71, 96, 0.1), rgba(74, 93, 122, 0.1));
}

.campaign-card.city .campaign-card-icon svg {
    stroke: var(--primary);
}

.campaign-card.giveaway .campaign-card-icon {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
}

.campaign-card.giveaway .campaign-card-icon svg {
    stroke: #e91e63;
}

.campaign-card-icon svg {
    width: 36px;
    height: 36px;
}

.campaign-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.campaign-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.campaign-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.counter-item {
    text-align: center;
}

.counter-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.counter-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* Turkey Map Section */
.turkey-map-section {
    background: var(--white);
    padding-bottom: 4rem;
    overflow: visible;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.legend-color.white {
    background: #ffffff;
}

.legend-color.yellow {
    background: #ffd700;
}

.legend-color.green {
    background: #4caf50;
}

.map-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    padding-bottom: 4rem;
    box-shadow: var(--shadow);
}

#turkeyMap {
    width: 100%;
    display: block;
    aspect-ratio: 1000 / 422;
}

@media (max-width: 768px) {
    .map-container {
        padding: 1rem;
    }
}

.turkey-svg path {
    fill: #ffffff;
    stroke: var(--primary);
    stroke-width: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.turkey-svg path:hover {
    filter: brightness(0.95);
    stroke-width: 1.5;
}

.turkey-svg path.yellow {
    fill: #ffd700;
}

.turkey-svg path.green {
    fill: #4caf50;
}

.map-tooltip {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 200px;
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-tooltip strong {
    display: block;
    margin-bottom: 0.25rem;
}

.map-tooltip .tooltip-status {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--accent-light);
}

.city-info-panel {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform 0.3s ease;
    max-width: 400px;
    width: 90%;
}

.city-info-panel.visible {
    transform: translateX(-50%) translateY(0);
}

.close-panel {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.city-info-panel h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.panel-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.panel-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.panel-message {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.panel-message.opportunity {
    background: rgba(255, 215, 0, 0.1);
    color: #b8922f;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        color: var(--white) !important;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        padding: 7rem 1.5rem 3rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .email-form {
        flex-direction: column;
    }

    .email-form input {
        min-width: 100%;
    }

    .email-form button {
        width: 100%;
    }

    .campaign-info-box {
        flex-direction: column;
        text-align: center;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .campaign-counter {
        gap: 1.5rem;
    }

    .counter-divider {
        display: none;
    }

    .counter-number {
        font-size: 2rem;
    }

    .map-legend {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .city-info-panel {
        bottom: 1rem;
        padding: 1rem 1.5rem;
    }

    .panel-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
