/* Base Resets */
:root {
    --primary-color: #1e3a8a; /* Kurumsal Lacivert (Navy) */
    --primary-hover: #1e40af; 
    --secondary-color: #3b82f6; /* Destekleyici Mavi */
    --accent-color: #60a5fa; /* Açık Mavi */
    --dark-bg: #0f172a; /* Slate 900 */
    --text-dark: #0f172a; /* Slate 900 - Neredeyse Siyah */
    --text-light: #334155; /* Slate 700 - Daha Koyu Gri */
    --border-color: #cbd5e1; /* Slate 300 - Biraz daha belirgin kenarlık */
    --bg-light: #f8fafc; /* Slate 50 */
    --white: #ffffff;
    --success: #10b981; /* Güven veren yeşil */
    --pastel-bg-1: #f1f5f9; /* Slate 100 - temiz arka plan */
    --pastel-bg-2: #eff6ff; /* Blue 50 - çok hafif mavi */
    --pastel-bg-3: #f8fafc; /* Slate 50 */
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--bg-light);
}

.mt-4 { margin-top: 1rem; }
.text-center { text-align: center; }

h1, h2, h3 { line-height: 1.2; font-weight: 800; }

/* Topbar */
.topbar {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    animation: phone-pulse 2.5s infinite;
}

.topbar-item:hover {
    color: #fff;
}

.topbar-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    animation: icon-blink 1.5s infinite;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes phone-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes icon-blink {
    0% { opacity: 1; filter: drop-shadow(0 0 2px var(--secondary-color)); }
    50% { opacity: 0.4; filter: none; }
    100% { opacity: 1; filter: drop-shadow(0 0 2px var(--secondary-color)); }
}

.topbar-divider {
    width: 2px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .topbar-content {
        justify-content: center;
        padding: 0 5px;
    }
    .topbar-left {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
    }
    .topbar-divider {
        display: block;
    }
    .topbar-right {
        display: none;
    }
    .topbar-item {
        font-size: 0.62rem; /* Sığması için biraz daha küçültüldü */
    }
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--dark-bg);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--dark-bg);
    text-decoration: none;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: inherit;
}

.logo-text .brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: right;
    margin-top: 1px;
    opacity: 0.85;
}

.footer .logo-text .brand-sub {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--pastel-bg-1) 0%, var(--pastel-bg-2) 50%, var(--pastel-bg-3) 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Shapes Background */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
    animation: float-bg 10s ease-in-out infinite alternate;
}
.hero::before {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
}
.hero::after {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float-bg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--pastel-bg-1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trust-indicators i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Mockup Animation Area */
.hero-image {
    perspective: 1000px;
    position: relative;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Signature SVG Animation */
.anim-signature {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: sign-path 4s ease-in-out infinite;
}
.anim-pen {
    animation: pen-move 4s ease-in-out infinite;
    transform-origin: bottom left;
}
@keyframes sign-path {
    0% { stroke-dashoffset: 1000; opacity: 0; }
    15% { opacity: 1; stroke-dashoffset: 1000; }
    70% { stroke-dashoffset: 0; opacity: 1; }
    85% { stroke-dashoffset: 0; opacity: 0; }
    100% { stroke-dashoffset: 1000; opacity: 0; }
}
@keyframes pen-move {
    0% { transform: translate(-30px, -20px) rotate(0deg); opacity: 0; }
    15% { transform: translate(0, 0) rotate(10deg); opacity: 1; }
    70% { transform: translate(80px, 40px) rotate(-10deg); opacity: 1; }
    85% { transform: translate(90px, 50px) rotate(0deg); opacity: 0; }
    100% { transform: translate(-30px, -20px) rotate(0deg); opacity: 0; }
}

/* Scooter Delivery Animation */
@keyframes drive {
    0% { transform: translateX(-100px) translateY(0); }
    2% { transform: translateX(0px) translateY(-5px); }
    10% { transform: translateX(15vw) translateY(0); }
    12% { transform: translateX(18vw) translateY(-4px); }
    25% { transform: translateX(40vw) translateY(0); }
    30% { transform: translateX(50vw) translateY(-6px); }
    40% { transform: translateX(70vw) translateY(0); }
    50% { transform: translateX(110vw) translateY(0); }
    100% { transform: translateX(110vw) translateY(0); }
}

@keyframes speed {
    0% { transform: translateX(0) scaleX(1); opacity: 1; }
    100% { transform: translateX(-30px) scaleX(0.2); opacity: 0; }
}

.mockup-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: rotateY(-3deg) rotateX(3deg);
    border: 1px solid var(--white);
    position: relative;
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contract-animation {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    min-height: 55px;
}

.typing-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary-color);
    width: 0;
    animation: typing-effect 5s infinite;
    margin-bottom: 0.75rem;
}

.doc-line-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-doc-lines 5s infinite;
}

.doc-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}

.doc-line.w-full { width: 100%; }
.doc-line.w-3-4 { width: 75%; }
.doc-line.w-1-2 { width: 50%; }

@keyframes typing-effect {
    0%, 5% { width: 0; opacity: 1; border-color: var(--primary-color); }
    20%, 80% { width: 100%; opacity: 1; border-color: transparent; }
    90% { width: 100%; opacity: 0; border-color: transparent; }
    100% { width: 0; opacity: 0; border-color: transparent; }
}

@keyframes fade-doc-lines {
    0%, 20% { opacity: 0; transform: translateY(5px); }
    30%, 80% { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; transform: translateY(-5px); }
}

.signature-box {
    margin-top: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    position: relative;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signature-box:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}

.mockup-success {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--success);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    animation: bounce 2s infinite;
}

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

/* Benefits */
.benefits {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
    z-index: -1;
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    position: relative;
}

/* Glow specifically for left-aligned titles (like BTK) */
.left-glow-title {
    position: relative;
    z-index: 1;
}

.left-glow-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
    z-index: -1;
    filter: blur(30px);
    border-radius: 50%;
    pointer-events: none;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(129, 140, 248, 0.2);
    border-color: var(--primary-color);
}

.icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--pastel-bg-1);
    color: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.benefit-card:nth-child(2) .icon-wrap {
    background: var(--pastel-bg-2);
    color: var(--primary-color);
}

.benefit-card:nth-child(3) .icon-wrap {
    background: var(--pastel-bg-3);
    color: var(--primary-hover);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Application Form Section */
.application-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--pastel-bg-1) 100%);
}

.application-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    overflow: hidden;
}

.application-image-side {
    flex: 1;
    background: linear-gradient(135deg, var(--pastel-bg-1), var(--pastel-bg-2));
    color: var(--dark-bg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.application-image-side::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.application-image-side svg {
    margin-bottom: 2.5rem;
    z-index: 1;
}

.application-image-side h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    z-index: 1;
    color: var(--primary-color);
}

.application-image-side p {
    font-size: 0.95rem;
    color: var(--text-light);
    z-index: 1;
}

.application-form-box {
    flex: 1.3;
    padding: 3.5rem;
}

.application-form-box h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    text-align: center;
}

.application-form-box > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    display: none;
    border-top: 1px solid var(--bg-light);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-out;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Usage Areas Section */
.usage-areas {
    padding: 5rem 0;
    background: var(--white);
}

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

.usage-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.usage-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 30px -10px rgba(30, 58, 138, 0.15);
    border-color: var(--secondary-color);
}

.usage-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
    background: var(--pastel-bg-1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.usage-card:hover .usage-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.usage-card h3 {
    font-size: 1.25rem;
    color: var(--dark-bg);
    margin-bottom: 0.75rem;
}

.usage-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .usage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.footer .logo i {
    color: var(--primary-color);
}

.footer-about p {
    max-width: 350px;
    line-height: 1.8;
}

.footer h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    transition: color 0.3s ease;
}

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

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

.contact-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

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

/* Modal / Popup Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--dark-bg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.privacy-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Success Message Area */
#successContent {
    text-align: center;
    padding: 1rem 0;
}

#successContent.hidden {
    display: none;
}

#formContent {
    display: block;
}

#formContent.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

#successContent h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

#successContent p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

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

    .nav-actions .btn {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .application-wrapper {
        flex-direction: column;
    }

    .hero-content {

        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .mockup-card {
        transform: none;
    }
    
    .mockup-card:hover {
        transform: none;
    }
}

/* Testimonials Section - Soldan Sağa Kayar */
.testimonials-section {
    padding: 4rem 0 5rem 0;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.centered-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    display: flex;
}

/* Sol ve sağ kenarlardan yumuşak geçiş efekti */
.testimonials-marquee-container::before,
.testimonials-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.testimonials-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}
.testimonials-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    /* Soldan sağa animasyon: -50% 'den 0'a */
    animation: scroll-left-to-right 50s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left-to-right {
    0% { transform: translateX(calc(-50% - 1rem)); }
    100% { transform: translateX(0); }
}

.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    width: 400px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.testimonial-card .review-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-card .user-info {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--pastel-bg-1);
    padding-top: 1.25rem;
}

.testimonial-card .user-info h4 {
    color: var(--dark-bg);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-card .user-info span {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 1.5rem;
    }
}

/* ========================================
   Floating WhatsApp & Call Buttons
   ======================================== */

/* WhatsApp Button - Right Side */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.floating-whatsapp .wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    text-decoration: none;
    border: none;
}

.floating-whatsapp .wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    background: #20c05c;
}

/* Pulse ring animation */
.floating-whatsapp .wa-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip label */
.floating-whatsapp .wa-label {
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    position: absolute;
    right: calc(100% + 0.75rem);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-whatsapp .wa-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--white);
}

.floating-whatsapp:hover .wa-label {
    opacity: 1;
    transform: translateX(0);
}

/* Call Button - Left Side (mobile only) */
.floating-call {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 90;
    display: none; /* Hidden on desktop */
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.floating-call .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    text-decoration: none;
    border: none;
}

.floating-call .call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(30, 58, 138, 0.55);
}

/* Phone ring animation */
.floating-call .call-btn i {
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(12deg); }
    20% { transform: rotate(-12deg); }
    25% { transform: rotate(8deg); }
    30% { transform: rotate(0deg); }
}

/* Pulse ring animation for call */
.floating-call .call-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
    animation: call-pulse 2.5s ease-out infinite;
}

@keyframes call-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip label for call */
.floating-call .call-label {
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    position: absolute;
    left: calc(100% + 0.75rem);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-call .call-label::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--white);
}

.floating-call:hover .call-label {
    opacity: 1;
    transform: translateX(0);
}

/* Show call button on mobile/tablet */
@media (max-width: 900px) {
    .floating-call {
        display: flex;
    }

    .floating-whatsapp .wa-btn,
    .floating-call .call-btn {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-call {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

/* BTK Sertifika Lightbox */
#certLightbox.active {
    opacity: 1 !important;
    visibility: visible !important;
}

#certLightbox.active img {
    transform: scale(1) !important;
}

/* --- Page Specific Utilities (Moved from HTML) --- */
.page-header {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Info Section (KEP Page) */
.info-section {
    padding: 4rem 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.info-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.kep-feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.kep-feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.kep-feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Hero Slider (Basvuru Page) */
.hero-slider {
    position: relative;
    height: 350px;
    width: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    animation: fadeSlider 12s infinite;
}

.slide-1 { animation-delay: 0s !important; }
.slide-2 { animation-delay: 4s !important; }
.slide-3 { animation-delay: 8s !important; }

@keyframes fadeSlider {
    0%, 25% { opacity: 1; z-index: 2; transform: translateY(0) scale(1); }
    33%, 92% { opacity: 0; z-index: 1; transform: translateY(10px) scale(0.98); }
    100% { opacity: 1; z-index: 2; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    .kep-features { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2.25rem; }
}

/* --- Usage Areas Marquee --- */
.usage-marquee {
    padding: 3rem 0;
    background: var(--dark-bg);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-content span i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
    font-weight: 700;
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-box {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-container {
    margin-bottom: 4rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-box {
        padding: 2rem;
    }
}

/* CTA Form Section Styles */
.cta-form-section {
    position: relative;
    z-index: 10;
}

.cta-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-form-text {
    flex: 1;
    min-width: 300px;
}

.cta-form-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.cta-form-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-form-fields {
    flex: 1.5;
    min-width: 300px;
}

.cta-form-fields form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cta-form-fields input {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-form-fields input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cta-form-fields .full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .cta-form-container {
        padding: 2rem;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cta-form-fields form {
        grid-template-columns: 1fr;
    }

    .cta-form-fields .full-width {
        grid-column: span 1;
    }
}

/* --- BTK Section Styles --- */
.btk-section {
    padding: 5rem 0;
    background: var(--white);
}

.btk-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.btk-content {
    flex: 1;
    min-width: 300px;
}

.btk-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.btk-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btk-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btk-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.btk-list-item i {
    color: var(--success);
    font-size: 1.25rem;
}

.btk-thumb-container {
    flex: 0 0 auto;
    text-align: center;
}

.btk-thumb {
    cursor: zoom-in;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
}

.btk-thumb:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.2);
}

.btk-thumb img {
    width: 100%;
    display: block;
}

.btk-thumb-caption {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

/* --- Installation Page (indir.html) Styles --- */
.download-section {
    padding: 5rem 0;
    background: var(--white);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.download-card h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 0.75rem;
}

.download-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-info {
    margin-top: auto;
}

.version-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.akis-section {
    padding: 6rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.akis-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.akis-image {
    flex: 1;
    text-align: center;
}

.akis-image i {
    font-size: 8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 15px 25px rgba(30,58,138,0.2));
}

.akis-content {
    flex: 1.5;
}

.akis-content h2 {
    font-size: 2.25rem;
    color: var(--dark-bg);
    margin-bottom: 1.25rem;
}

.akis-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .akis-container {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
        gap: 2rem;
    }
}

/* ================================================
   TOAST BİLDİRİM — Form Başarı Mesajı
================================================ */
#toast-notification {
    position: fixed;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    width: min(520px, calc(100vw - 2rem));
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow:
        0 24px 50px -10px rgba(16, 185, 129, 0.25),
        0 0 0 1px rgba(16, 185, 129, 0.15);
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    transition: top 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

#toast-notification.toast-visible {
    top: 1.25rem;
    pointer-events: auto;
}

.toast-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.4);
    animation: toast-icon-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes toast-icon-pop {
    from { transform: scale(0) rotate(-90deg); }
    to   { transform: scale(1) rotate(0deg); }
}

.toast-icon-wrap i {
    color: #fff;
    font-size: 1.4rem;
}

.toast-body {
    flex: 1;
}

.toast-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.toast-body p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-top: -2px;
}

.toast-close:hover {
    color: #475569;
}

/* Süre çubuğu */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 0 0 1.25rem 1.25rem;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    width: 100%;
    transform-origin: left;
    animation: toast-bar linear forwards;
}

@keyframes toast-bar {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

@media (max-width: 600px) {
    #toast-notification {
        padding: 1rem 1.1rem;
        gap: 0.85rem;
    }
    .toast-icon-wrap {
        width: 2.5rem;
        height: 2.5rem;
    }
    .toast-icon-wrap i {
        font-size: 1.15rem;
    }
}
