:root {
    --primary: #1a5f7a;
    --primary-light: #2a6f8a;
    --secondary: #f8f9fa;
    --accent: #ffd700;
    --text-dark: #2D3748;
    --text-light: #718096;
}

/* Global & Common Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* Language Dropdown */
.language-dropdown {
    min-width: 160px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.language-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.language-dropdown .dropdown-item img {
    margin-right: 0.5rem;
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.language-dropdown .dropdown-item.active {
    background-color: rgba(26, 95, 122, 0.1);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-container {
    position: relative;
    display: flex;
    min-height: calc(100vh - 80px);
}

.hero-content {
    flex: 1;
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge i {
    margin-right: 0.75rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image {
    position: absolute;
    top: 0;
    width: 120%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1501927023255-9063be98970c?q=80&w=2574&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yellow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    left: -100px;
    z-index: 1;
}

/* Button Styles */
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 95, 122, 0.2);
}

.btn-outline {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(26, 95, 122, 0.1);
    transform: translateY(-2px);
}

/* Document Cards */
.document-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.document-icon {
    width: 64px;
    height: 64px;
    background: #EBF8FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.8rem;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 5000px;
    border-top: 1px solid #edf2f7;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

/* Reviews Styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-item {
    height: 100%;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
}

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

.review-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-source-icon {
    height: 24px;
    width: auto;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent);
    font-weight: 600;
}

.review-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Footer Styles */
.new-footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 0;
}

.footer-main {
    padding-bottom: 3rem;
}

.footer-content h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

.footer-social a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-image {
        position: relative;
        right: 0;
        width: 100%;
        clip-path: none;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.9) 0%,
            rgba(255,255,255,0.7) 100%
        );
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 10vh;
    }
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .footer-bottom {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
}

.footer-frkn a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}


.form-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-label small {
    color: var(--primary);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.phone-input img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

.phone-input input {
    border: none;
    outline: none;
    width: 100%;
}

.package-option {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.package-option.selected {
    border: 2px solid var(--primary);
    background: rgba(26, 95, 122, 0.02);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-price {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #ebf8ff;
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
}



.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-light);
}

.package-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.money-back {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #fff5f5;
    color: #e53e3e;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.promo-code {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f0fff4;
    color: #38a169;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.terms-check {
    margin-top: 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-section {
        padding: 100px 0 40px;
    }

    .form-container {
        padding: 1.5rem;
    }
}

.discount
{
    text-decoration: line-through;
    color: #2D3748;
    margin-right: 5px;
}
.iti {
    width: 100%;
}

/* Mobile Responsive */
/* Login Page Styles - Bu kısmı style.css'in sonuna ekleyin */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.split-container {
    flex: 1;
    display: flex;
    position: relative;
}

.split-image {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1529699074188-d1fb8244c4ca?q=80&w=2564&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-align: center;
}

.split-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.image-content {
    position: relative;
    z-index: 2;
}

.image-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.image-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.split-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.login-form-container {
    width: 100%;
    max-width: 420px;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .split-container {
        flex-direction: column;
    }

    .split-image {
        height: 300px;
    }

    .split-form {
        padding: 3rem 1.5rem;
    }

    .image-content h2 {
        font-size: 2rem;
    }

    .image-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .split-image {
        height: 200px;
    }

    .image-content h2 {
        font-size: 1.75rem;
    }
}

.login
{
    margin-top: 84px;
}
li.nav-item > .btn-primary {
    padding: 0.5rem 1rem;
}

/* NIF Form Page Styles */
/* NIF Form Page Styles */
.nif-form-page {
    margin-top: 84px;
}

.split-container {
    display: flex;
    min-height: calc(100vh - 84px);
    position: relative;
}

.split-form-side {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.form-scroll-container {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.split-image-side {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1513735492246-483525079686?q=80&w=2664&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 84px;
    height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.split-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Application Steps */
.application-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

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

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.image-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 500px;
}

.image-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.image-content p {
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .split-container {
        flex-direction: column;
    }

    .split-image-side {
        position: relative;
        top: 0;
        height: 300px;
        order: -1;
    }

    .split-form-side {
        padding: 1.5rem;
    }

    .application-steps {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .step-item:not(:last-child)::after {
        top: auto;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .image-content h2 {
        font-size: 2rem;
    }

    .image-content p {
        font-size: 1rem;
    }

    .form-container {
        margin-top: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .split-image-side {
        height: 200px;
    }

    .image-content h2 {
        font-size: 1.75rem;
    }

    .split-form-side {
        padding: 1rem;
    }

    .application-steps {
        padding: 0;
    }
}

/* Dashboard Stats Grid */
.dashboard-items {
    margin-bottom: 2rem;
}

.dashboard-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
    text-align: center;
    margin-bottom: 1rem;
}

.dashboard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dashboard-item-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.dashboard-item-count {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Search Form */
.search-container {
    margin-bottom: 2rem;
}

.search-container .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-container .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.search-container .btn-primary {
    padding: 0.75rem 1rem;
    width: 100%;
}

/* Request Table */
.requesttable {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.requesttable thead th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.requesttable tbody td, 
.requesttable tbody th {
    padding: 1rem;
    vertical-align: middle;
    border-color: #edf2f7;
}

/* Status Badges */
.uk-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stepbadge-in_review {
    background: #EBF8FF;
    color: #2B6CB0;
}

.stepbadge-documents_invalid {
    background: #FFF5F5;
    color: #C53030;
}

.stepbadge-download_your_nif {
    background: #F0FFF4;
    color: #2F855A;
}

.stepbadge-nif_requested {
    background: #FAF5FF;
    color: #6B46C1;
}

.stepbadge-get_your_password {
    background: #FFFAF0;
    color: #C05621;
}

.statusbadge-in_progress {
    background: #EBF8FF;
    color: #2B6CB0;
}

.statusbadge-completed {
    background: #F0FFF4;
    color: #2F855A;
}

/* Table Links */
.table-links a {
    color: var(--primary);
    margin: 0 0.25rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.table-links a:hover {
    color: var(--primary-light);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.page-link {
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .dashboard-items {
        margin-bottom: 1rem;
    }
    
    .dashboard-item {
        margin-bottom: 1rem;
    }
    
    .requesttable {
        font-size: 0.875rem;
    }
    
    .uk-label {
        font-size: 0.75rem;
    }
    
}
.user-icon {
    margin-right: 5px;
}

.sticky-whatsapp
{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 999;
    color: white;
    font-weight: 400;
    background-image: linear-gradient(to right, #195f7a 0%, #17556d 51%, #195f7a 100%);
    transition: 0.5s;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #195f7a;
}

.sticky-whatsapp > a
{
  color: #fff;
}

.sticky-whatsapp svg {
  font-size: 50px;
  width: 35px;
  color: white;
  height: 35px;
  z-index: 999;
}

.sticky-whatsapp .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.sticky-whatsapp img {
    width: 32px;
    height: 32px;
}

.support-text {
    font-size: 16px;
    font-weight: 500;
}


.tracking-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.tracking-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2rem;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tracking-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tracking-title h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--text-dark);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #fbd38d;
    color: #744210;
}

.status-badge.completed {
    background: #9ae6b4;
    color: #22543d;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

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

.info-item {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.info-item i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 1.15rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.timeline-dot.completed {
    background: var(--primary);
    color: white;
}

.timeline-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-title .completed-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: #9ae6b4;
    color: #22543d;
    border-radius: 100px;
}

.timeline-content {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 14px;
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
}

.document-upload {
    background: linear-gradient(135deg, #4FD1C5 0%, #4299E1 100%);
    padding: 2rem;
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.upload-button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
}

.document-link:hover {
    text-decoration: underline;
}

.download-apps {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.app-button {
    padding: 0.5rem 1rem;
    background: #4A5568;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.app-button:hover {
    background: #2D3748;
    color: white;
}

@media (max-width: 768px) {
    .tracking-section {
        padding: 100px 0 40px;
    }

    .tracking-container {
        padding: 1.5rem;
    }

    .timeline-line {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .timeline-dot {
        width: 2rem;
        height: 2rem;
    }
}

.filepond--root .filepond--drop-label
{
    background: linear-gradient(135deg, #4FD1C5 0%, #4299E1 100%);
    color: white;
    border-radius: 10px;
}

.filepond--credits
{
    display: none;
}

span.input-warning-questionmark {
    background: #dc3545;
    border-radius: 50px;
    color: white;
    padding: 0px 5px 0px 5px;
    font-weight: 500;
    font-size: 15px;
}

.input-warning
{
    margin-bottom: 5px;
}

.decision_head
{
    font-weight: 600;
    font-size: large;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;
}

span.error-span {
    color: red;
}

.download-apps
{
    margin-bottom: 10px;
}

.status-action_required
{
    color: tomato;
    display: inline-block;
    padding: 0px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.done-line
{
    text-decoration: line-through;
    color: gray;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 99, 235, 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

/* Process Section Image Container */
.process-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Taşan içeriği gizler */
    position: relative;
}

.process-image-wrapper img {
    border-radius: 10px;
    max-width: 100%; /* Resmin container'ı aşmasını engeller */
    height: auto;
    width: 100%;
    display: block; /* Resim altındaki boşluğu kaldırır */
    object-fit: cover; /* Resmin oranını korur */
}

/* Mobil Responsive Düzenlemeler */
@media (max-width: 768px) {
    .process-image-wrapper {
        margin: 0 auto; /* Mobilde merkezler */
        padding: 0 15px; /* Kenarlarda boşluk bırakır */
    }
    .discount
    {
        display: none;;
    }
    
    .section-title,
    .section-subtitle {
        padding: 0 15px; /* Mobilde yazılar için kenar boşluğu */
    }
    
    #process .container {
        padding: 0; /* Container padding'ini sıfırlar */
        overflow-x: hidden; /* Yatay scroll'u engeller */
    }
}

/* Tablet ve Küçük Masaüstü */
@media (min-width: 769px) and (max-width: 1200px) {
    .process-image-wrapper img {
        width: auto;
        max-height: 500px; /* Maksimum yükseklik sınırı */
    }
}



/* ************ */

/* About Page Specific Styles */
.about-hero {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Career Cards */
.career-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease;
}

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

.career-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.career-requirements {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.career-requirements li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.career-requirements li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 100px;
    }

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

    .career-card, .contact-card {
        margin-bottom: 1rem;
    }
}

.logo {
    width: 80px;

}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.review_line {
    height: 60px;
    background-color: #f8f6e7;
    font-weight: 500;
}

.review_line a {
    color: black;
    text-decoration: none;
}

.review_line .fa-star {
    color: var(--accent);
}

.review_line img {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 1px;
}
.pad-left 
{
    margin-left: 5px;
}

.pad-right {
    margin-right: 5px;
}

.mouse
{
    margin-left: 5px;
    color: rgb(127, 127, 127);
}

.pricing-content {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-header h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
}

.pricing-section {
    margin-bottom: 3rem;
}

.pricing-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.pricing-section h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.price-list {
    margin: 2rem 0;
}

.price-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-title {
    font-weight: 600;
    color: var(--text-dark);
}

.price-amount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-discount {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-current {
    color: var(--primary);
    font-weight: 600;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-features i {
    color: var(--primary);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.price-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-guarantee {
    background: #fff5f5;
    color: #e53e3e;
}

.badge-promo {
    background: #f0fff4;
    color: #38a169;
}

.conclusion {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.conclusion p {
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-content {
        padding: 100px 0 40px;
    }

    .price-badges {
        flex-direction: column;
    }
}

.disclaimer-text
{
    font-size: 12px;
}

@media (max-width: 991px) {
    .split-container {
        flex-direction: column;
    }

    .split-image-side {
        display: none; /* Tablet ve telefon ekranlarında gizle */
    }
}

.green {
    color: #198754;
}