/* ===== CSS Variables ===== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --border-color: #222222;
    --border-light: #333333;

    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --accent-purple: #2563EB;
    --accent-purple-dark: #1D4ED8;
    --accent-purple-light: #60A5FA;
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --accent-red: #EF4444;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.logo svg {
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(90deg);
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-purple);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--accent-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-cta {
    background: var(--accent-purple);
    color: var(--text-primary);
    padding: 14px 32px;
    font-size: 16px;
}

.btn-cta:hover {
    background: var(--accent-purple-dark);
    transform: scale(1.05);
}

/* WhatsApp Style Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 18px;
}

.arrow {
    font-size: 12px;
}

/* ===== Badges ===== */
.badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    background: #FFD700;
    color: #000000;
    letter-spacing: 0.3px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.step-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.card-badge.purple-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple-light);
    border-color: rgba(139, 92, 246, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* ===== Hero Background Slideshow ===== */
.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(37, 99, 235, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200px 200px;
    animation: stars 20s linear infinite;
    pointer-events: none;
}

@keyframes stars {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin: 24px 0;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-links {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.hero-link:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

/* ===== Section Titles ===== */
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

/* Removed unused task-card and automation-card components */

/* Removed unused AI, Chat, Email, Process, Chart, Code, Integration, and System components */

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
}

.cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.partner-logos {
    display: flex;
    gap: 32px;
    font-size: 24px;
    color: var(--text-muted);
}

.partner-logo {
    transition: var(--transition);
    cursor: pointer;
}

.partner-logo:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.arrow-down {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-logo {
    height: 50px;
    border-radius: 8px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-purple);
    width: 16px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Trust Strip ===== */
.trust-strip {
    padding: 20px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    text-align: center;
}

.trust-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 28px;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 80px 0;
    text-align: center;
}

.quote-card {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.quote-form {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-group input,
.input-group select {
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 20px;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.check-list i {
    color: var(--accent-purple);
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.about-stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 8px;
}

.about-stat-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Service Cards (Updated) ===== */
.services .service-card {
    display: block;
    text-decoration: none;
    padding: 32px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--accent-purple);
}

.services .service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.services .service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-size: 14px;
    color: var(--accent-purple);
    font-weight: 500;
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== Responsive Updates ===== */
@media (max-width: 1024px) {
    .hero-links {
        display: none;
    }

    .services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        padding: 80px 24px;
        z-index: 1001;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 18px;
        color: var(--text-primary);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        background: var(--bg-secondary);
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 12px;
        margin-bottom: 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .header .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .services .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
        z-index: 999;
    }

    /* Menü açıkken WhatsApp butonunu gizle */
    body.menu-active .whatsapp-float {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .quote-card {
        padding: 24px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 24px;
    }
}

/* ===== Vitrin & Kampanyalar Section ===== */
.vitrin-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.vitrin-title {
    font-size: 28px;
    font-weight: 700;
    color: #00CED1;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.vitrin-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.reels-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reels-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reels-track::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 auto;
    width: 280px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    scroll-snap-align: center;
    transition: var(--transition);
    background: var(--bg-card);
}

.reel-card:hover {
    border-color: #00CED1;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 206, 209, 0.2);
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reels-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.reel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-nav-btn:hover {
    background: #00CED1;
    border-color: #00CED1;
}

.reels-dots {
    display: flex;
    gap: 8px;
}

.reels-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.reels-dots .dot.active {
    background: #00CED1;
    width: 24px;
    border-radius: 5px;
}

/* ===== Galeri 60 Günlük Sigorta Section ===== */
.galeri-sigorta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
}

.galeri-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.galeri-form-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.galeri-form-content .section-subtitle {
    text-align: left;
    margin-bottom: 24px;
}

.galeri-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-item i {
    color: #25D366;
}

.galeri-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.qr-scan-area {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.qr-scan-area:hover {
    border-color: #25D366;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.qr-placeholder i {
    font-size: 48px;
    color: #25D366;
    opacity: 0.7;
}

.qr-placeholder span {
    font-size: 16px;
    font-weight: 500;
}

.qr-placeholder small {
    font-size: 12px;
    opacity: 0.7;
}

.qr-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    padding: 0 16px;
}

.btn-full {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .galeri-form-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .galeri-form-content .section-title,
    .galeri-form-content .section-subtitle {
        text-align: center;
    }

    .galeri-features {
        justify-content: center;
    }
}

/* ===== Blog & Content Pages ===== */
.blog-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    margin-top: 40px;
}

.blog-content h2 {
    color: var(--accent-purple);
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-content h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-content ul {
    list-style-type: disc;
    margin-left: 24px;
    margin-top: 12px;
    color: var(--text-secondary);
}

.blog-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.blog-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
}

.cta-box {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-box h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-box p {
    margin-bottom: 16px;
}

/* Logo Consistency */
header .logo img {
    height: 72px;
    border-radius: 8px;
    width: auto;
}

.footer-logo {
    height: 200px;
    width: auto;
}

/* Mobile Responsive Blog */
@media (max-width: 768px) {
    .blog-content {
        padding: 24px;
    }

    header .logo img {
        height: 60px;
    }

    .footer-logo {
        height: 120px;
    }
}