/* QrKodum.info - Stil Dosyası */
/* PHP 8+ cPanel Uyumlu */

/* Genel Ayarlar */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #48bb78;
    --error-color: #f56565;
    --warning-color: #ed8936;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background-color: #38a169;
}

.btn-danger {
    background-color: var(--error-color);
    color: white;
}

.btn-danger:hover {
    background-color: #e53e3e;
}

.btn-logout {
    background-color: var(--error-color);
    color: white;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-logout:hover {
    background-color: #e53e3e;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}



.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

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

.mobile-login-btn {
    display: none;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 590px;
    background: #ffffff;
    border-radius: 38px;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.9),
        0 0 0 10px rgba(102, 126, 234, 0.15),
        0 30px 60px rgba(102, 126, 234, 0.35),
        0 15px 30px rgba(0, 0, 0, 0.12);
    padding: 10px;
    position: relative;
    transform: rotate(4deg);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: rotate(4deg) translateY(0px);
    }

    50% {
        transform: rotate(2deg) translateY(-8px);
    }
}

.phone-mockup:hover {
    transform: rotate(0deg) translateY(-6px);
    animation: none;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.9),
        0 0 0 10px rgba(102, 126, 234, 0.2),
        0 40px 80px rgba(102, 126, 234, 0.45),
        0 20px 40px rgba(0, 0, 0, 0.15);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #f5f6fb;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.demo-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    box-shadow: var(--shadow);
    text-align: center;
}

.card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.demo-card h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.demo-card .card-title {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.demo-card .card-company {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.card-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qr-placeholder {
    margin-top: 20px;
    font-size: 48px;
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 18px 18px 0 0;
}

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

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.price {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    line-height: 1;
}

.price span {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 8px;
    -webkit-text-fill-color: var(--text-light);
}

.original-price {
    font-size: 24px;
    color: var(--error-color);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 10px;
    -webkit-text-fill-color: var(--error-color);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 14px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.features-list li:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.features-list li i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
    transition: all 0.3s ease;
}

.features-list li:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.features-list li::before {
    display: none;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
}

.auth-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.auth-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    margin: 20px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .logo h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--text-light);
}

.auth-form-container {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 1;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background-color: rgba(245, 101, 101, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.alert-success {
    background-color: rgba(72, 187, 120, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(72, 187, 120, 0.3);
}

/* Dashboard */
.dashboard-main {
    padding-top: 100px;
    min-height: 100vh;
    background: #f5f7fa;
}

.dashboard-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-menu span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--text-light);
}

/* Active Card Section */
.active-card-section {
    margin-bottom: 60px;
}

.card-preview-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-preview {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    width: 350px;
    text-align: center;
}

.card-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.card-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-light);
    border: 4px solid var(--primary-color);
}

.card-preview h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.card-title {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.card-company {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.card-info i {
    color: var(--primary-color);
}

.card-qr {
    margin-top: 30px;
}

.card-qr img {
    width: 150px;
    height: 150px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Create Card Section */
.create-card-section {
    margin-bottom: 60px;
}

.create-card-form {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* My Cards Section */
.my-cards-section {
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card-item.active {
    border-color: var(--primary-color);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.card-thumb-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.card-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.card-info p {
    color: var(--text-light);
    font-size: 14px;
}

.active-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.card-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 14px;
}

.card-item .card-actions {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--border-color);
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.empty-state p {
    font-size: 16px;
}

/* QR Kod Animasyon */
.demo-qr {
    text-align: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qr-animation {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-animation i {
    font-size: 80px;
    color: var(--primary-color);
    display: block;
    animation: pulse 2s infinite;
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 2s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.demo-qr h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.demo-text {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
    background: var(--bg-light);
    padding: 5px 8px;
    border-radius: 5px;
    display: inline-block;
    word-break: break-all;
}

.qr-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 5px;
}

.qr-stats span {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.qr-stats i {
    font-size: 11px;
}

.qr-stats .fab.fa-whatsapp {
    color: #25D366;
}

.qr-stats .fa-phone {
    color: #2196F3;
}

.qr-stats .fa-sms {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .phone-mockup {
        margin-top: 40px;
        transform: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .nav.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
    }

    .mobile-login-btn {
        display: inline-flex;
        align-items: center;
        position: fixed;
        top: 18px;
        right: 15px;
        z-index: 1001;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #fff;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-login-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
    }

    .mobile-login-btn i {
        margin-right: 5px;
    }

    .nav .btn {
        width: 100%;
        text-align: center;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .qr-animation i {
        font-size: 60px;
    }

    .qr-animation {
        width: 120px;
        height: 120px;
    }

    .qr-stats {
        gap: 5px;
    }

    .qr-stats span {
        padding: 2px 5px;
        font-size: 9px;
    }

    .qr-animation-small {
        width: 50px;
        height: 50px;
    }

    .qr-animation-small i {
        font-size: 30px;
    }

    .dashboard-header .container {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
    }

    .dashboard-header .logo h1 {
        font-size: 18px;
    }

    .dashboard-header .header-content {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .dashboard-header .header-content .nav {
        display: none;
    }

    .dashboard-header .user-menu {
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .dashboard-header .user-menu span {
        font-size: 13px;
    }

    .dashboard-main {
        padding-top: 120px;
    }

    .dashboard-main .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .dashboard-main .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .dashboard-main .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
}


/* ====== YENİ MODERN DEMO KART ====== */
.demo-card-modern {
    width: 100%;
    height: 100%;
    background: #f5f6fb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.demo-card-header {
    width: 100%;
    height: 110px;
    position: relative;
    flex-shrink: 0;
}

.demo-card-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 0 0 30px 30px;
}

.demo-card-avatar-wrap {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.demo-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    display: block;
    background: white;
}

.demo-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.demo-photo-placeholder i {
    font-size: 32px;
    color: var(--primary-color);
}

.demo-verified-badge {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.demo-verified-badge i {
    font-size: 10px;
    color: #fff;
}

/* Kart Gövdesi */
.demo-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 14px 14px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    min-height: 0;
}

.demo-card-body::-webkit-scrollbar {
    display: none;
}

.demo-card-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 2px;
    text-align: center;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.demo-card-title {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 2px;
    text-align: center;
    font-weight: 500;
}

.demo-card-company {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-card-company i {
    font-size: 10px;
}

/* İletişim Listesi */
.demo-contact-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.demo-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
}

.demo-contact-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.18);
}

.demo-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.demo-contact-text {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-contact-arrow {
    font-size: 9px;
    color: #94a3b8;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Renk Temaları */
.demo-phone .demo-contact-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.demo-whatsapp .demo-contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.demo-email .demo-contact-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.demo-address .demo-contact-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.demo-phone:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.demo-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.demo-email:hover {
    border-color: rgba(240, 147, 251, 0.3);
}

.demo-address:hover {
    border-color: rgba(79, 172, 254, 0.3);
}

/* Görüntüle Butonu */
.demo-view-btn {
    width: 100%;
    padding: 11px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.demo-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: #fff;
}

.demo-view-btn i {
    font-size: 13px;
}

/* Phone mockup boyut override (hero bölümü için) */
/* üstteki tanım geçerli, override gerekmez */



.qr-animation-small {
    margin-top: 15px;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qr-animation-small i {
    font-size: 35px;
    color: var(--primary-color);
    display: block;
    animation: pulse-small 2s infinite;
}

.qr-scan-line-small {
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan-small 2s linear infinite;
    border-radius: 2px;
}

@keyframes pulse-small {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes scan-small {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Sosyal Medya Alanları için Stiller */
.form-group .fab.fa-instagram {
    margin-right: 8px;
    color: #E4405F;
}

.form-group .fab.fa-facebook {
    margin-right: 8px;
    color: #1877F2;
}

.form-group .fab.fa-tiktok {
    margin-right: 8px;
    color: #000000;
}

.form-group .fab.fa-linkedin {
    margin-right: 8px;
    color: #0077B5;
}

/* Dashboard'daki sosyal medya inputları */
.create-card-section h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.create-card-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* KVKK Onay Checkbox */
.kvkk-consent {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-left: 30px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked~.checkmark:after {
    display: block;
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.kvkk-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.kvkk-link:hover {
    color: var(--secondary-color);
}

/* KVKK Modal */
.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kvkk-modal-content {
    background-color: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: kvkkModalSlideIn 0.3s ease;
}

@keyframes kvkkModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kvkk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.kvkk-modal-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 20px;
}

.kvkk-close {
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.kvkk-close:hover {
    color: var(--text-dark);
}

.kvkk-modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

.kvkk-modal-body h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 8px;
}

.kvkk-modal-body h4:first-child {
    margin-top: 0;
}

.kvkk-modal-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.kvkk-modal-body ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.kvkk-modal-body li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.kvkk-modal-footer {
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kvkk-modal-content {
        max-height: 90vh;
    }

    .kvkk-modal-header,
    .kvkk-modal-body,
    .kvkk-modal-footer {
        padding: 15px 20px;
    }

    .checkbox-text {
        font-size: 13px;
    }
}

/* KVKK Onay Modal (Dashboard için) */
.kvkk-consent-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kvkk-consent-modal-content {
    background-color: #fff;
    border-radius: 12px;
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: kvkkConsentSlideIn 0.4s ease;
}

@keyframes kvkkConsentSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kvkk-consent-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.kvkk-consent-modal-header h3 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kvkk-consent-close {
    font-size: 32px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
    opacity: 0.8;
}

.kvkk-consent-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.kvkk-consent-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.kvkk-consent-modal-body h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.kvkk-consent-modal-body h4:first-child {
    margin-top: 0;
}

.kvkk-consent-modal-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.kvkk-consent-modal-body ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.kvkk-consent-modal-body li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
}

.kvkk-consent-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.kvkk-consent-modal-footer .btn {
    padding: 12px 30px;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kvkk-consent-modal-content {
        max-height: 90vh;
    }

    .kvkk-consent-modal-header {
        padding: 20px;
    }

    .kvkk-consent-modal-header h3 {
        font-size: 18px;
    }

    .kvkk-consent-modal-body,
    .kvkk-consent-modal-footer {
        padding: 20px;
    }

    .kvkk-consent-modal-footer {
        flex-direction: column;
    }

    .kvkk-consent-modal-footer .btn {
        width: 100%;
    }
}