@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
}



.service-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ai-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.timeline-item:last-child::before {
    display: none;
}

.team-card {
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.progress-bar {
    transition: width 0.5s ease;
}

.calendar-day {
    transition: all 0.3s ease;
}

.calendar-day:hover {
    transform: scale(1.05);
}

.calendar-day.available {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.calendar-day.unavailable {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: scale(1.1);
}

.time-slot {
    transition: all 0.3s ease;
}

.time-slot:hover {
    transform: translateY(-2px);
}

.time-slot.available {
    background: white;
    border: 2px solid #e5e7eb;
}

.time-slot.selected {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: 2px solid #3b82f6;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}

.letter-preview {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.letter-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.step-indicator {
    position: relative;
}

.step-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: translateY(-50%);
}

.step-indicator:last-child::after {
    display: none;
}

.template-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.template-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.template-card.selected {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.thy-gradient {
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
}

.flight-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.flight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.flight-card.selected {
    border: 2px solid #c41e3a;
    background: linear-gradient(135deg, #fff5f5, #fef2f2);
}

.price-tag {
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.booking-form {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thy-logo {
    background: linear-gradient(135deg, #c41e3a, #8b1538);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.route-line {
    position: relative;
}

.route-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c41e3a, #e74c3c);
    transform: translateY(-50%);
    z-index: 1;
}

.route-dot {
    position: relative;
    z-index: 2;
    background: white;
    border: 3px solid #c41e3a;
}

.advantage-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #fef7f7);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.1);
}

.search-animation {
    animation: searchPulse 2s infinite;
}

@keyframes searchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.insurance-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.insurance-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.insurance-card.popular::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.insurance-card.recommended::before {
    content: 'TAVSİYE EDİLEN';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.feature-check {
    color: #10b981;
}

.feature-cross {
    color: #ef4444;
}

.quote-form {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.coverage-item {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #fef7f7);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.price-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.calculator-animation {
    animation: calculatePulse 2s infinite;
}

@keyframes calculatePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.green-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.info-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.requirement-item {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stats-card {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: scale(1.05);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 1rem;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.usa-flag {
    background: linear-gradient(to bottom, #B22234 0%, #B22234 7.69%, #FFFFFF 7.69%, #FFFFFF 15.38%, #B22234 15.38%, #B22234 23.07%, #FFFFFF 23.07%, #FFFFFF 30.76%, #B22234 30.76%, #B22234 38.45%, #FFFFFF 38.45%, #FFFFFF 46.14%, #B22234 46.14%, #B22234 53.83%);
}

.usa-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 53.83%;
    background: #3C3B6E;
}

.orange-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.job-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #fff9f9);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.destination-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #fef5f5);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.15);
}

.wave-animation {
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-10deg); }
}

.category-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-card.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.search-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

.contact-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.tag {
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.05);
}

.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: #f8fafc;
}

.search-result-item:last-child {
    border-bottom: none;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #64748b;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #4f46e5;
}

.breadcrumb .current {
    color: #4f46e5;
    font-weight: 600;
}

.quick-links {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.quick-link {
    display: block;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.quick-link:hover, .quick-link.active {
    background: #f1f5f9;
    color: #4f46e5;
    transform: translateX(8px);
}

.help-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.help-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.4);
}

.help-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.help-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.help-menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.help-menu-item:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

.help-menu-item i {
    margin-right: 12px;
    width: 20px;
}

@media (max-width: 768px) {
    .quick-links {
        position: static;
        margin-bottom: 2rem;
    }
    
    .help-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .help-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.blog-card {
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #ffffff, #fefefe);
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4f46e5;
}

.featured-card {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.3);
}

.category-tag {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.category-tag:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: translateY(-2px);
}

.category-tag.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.reading-time {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.sidebar-widget {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.newsletter-form {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    padding: 32px;
    color: white;
    text-align: center;
}

.newsletter-input {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    placeholder-color: rgba(255,255,255,0.7);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    outline: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination button:hover {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.pagination button.active {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.social-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 40;
}

.social-share button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-share .facebook { background: #1877f2; }
.social-share .twitter { background: #1da1f2; }
.social-share .linkedin { background: #0077b5; }
.social-share .whatsapp { background: #25d366; }

.social-share button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.filter-dropdown {
    position: relative;
}

.filter-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 16px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 50;
}

.filter-dropdown:hover .filter-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.filter-option:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #fefefe);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4f46e5;
}
.contact-card:hover::before {
    opacity: 1;
}
.contact-form {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.form-group {
    position: relative;
    margin-bottom: 24px;
}
.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}
.form-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.form-label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #64748b;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 8px;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -8px;
    font-size: 14px;
    color: #4f46e5;
    font-weight: 500;
}
.submit-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}
.submit-btn:active {
    transform: translateY(0);
}
.map-container {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}
.map-placeholder {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}
.office-hours {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 24px;
    margin-top: 24px;
}
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}
.chat-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.chat-button:hover {
    transform: scale(1.1);
    animation: none;
}
.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chat-header {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}
.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}
.chat-message {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-size: 14px;
}
.chat-input {
    display: flex;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
}
.chat-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 14px;
}
.chat-input button {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: none;
    align-items: center;
}
.success-message.show {
    display: flex;
}
.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: none;
    align-items: center;
}
.error-message.show {
    display: flex;
}
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.linkedin { background: #0077b5; }
.social-link.instagram { background: #e4405f; }
.social-link.whatsapp { background: #25d366; }
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.form-validation {
    color: #ef4444;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}
.form-validation.show {
    display: block;
}

 .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid #ffffff;
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .form-validation {
            color: #ef4444;
            font-size: 14px;
            margin-top: 8px;
            display: none;
        }
        
        .form-validation.show {
            display: block;
        }
        
        
    
        
        
        
        
        
        
        /* YENİ PROFESYONEL MOBİL MENÜ STİLLERİ */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil tarayıcı kaydırma sorununu çözen güncel kural */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0; /* Panelin altını ekranın altına sabitler */
    width: 85%;
    max-width: 320px;
    background-color: #fff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    /* height: 100vh; satırı kaldırıldı veya yorum satırı yapıldı */
}
.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    color: #374151; /* text-gray-700 */
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-bottom: 4px;
}
.mobile-menu-link:hover {
    background-color: #f3f4f6; /* bg-gray-100 */
    color: #3b82f6; /* text-blue-600 */
}
        
  /* Mobil menünün dar ekranlarda taşma sorununu çözmek için eklendi */
.mobile-menu-link {
    /* align-items: center; zaten vardı, bu dikey hizalamayı korur */
    gap: 12px; /* İkon ve yazı arasına boşluk ekler */
}

/* 360px ve daha dar ekranlar için özel ayar */
@media (max-width: 360px) {
    .mobile-menu-panel .p-6 {
        padding: 1rem; /* 24px olan iç boşluğu 16px'e düşürür */
    }
}      
  .mobile-menu-panel nav.overflow-y-auto {
    /* Bu kural, menü listesinin (nav), ebeveyninden (panel) kalan
       tüm boşluğu doldurmasını ve bunu yaparken küçülebilmesini sağlar.
       İçeriği sığmadığında ise 'overflow-y: auto' class'ı sayesinde
       kaydırma çubuğunu aktif hale getirir. */
    flex: 1 1 0;
}      
        
        

        
        
        
              /* Login Panel Styles */
        .login-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .login-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .login-panel {
            position: fixed;
            top: 0;
            right: -60%;
            width: 60%;
            height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            z-index: 10000;
            transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
            box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .login-panel.active {
            right: 0;
        }
        
        .login-header {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #6366f1 100%);
            color: white;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
        }
        
        .login-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: headerGlow 8s ease-in-out infinite;
        }
        
        @keyframes headerGlow {
            0%, 100% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
        }
        
        .login-header-content {
            position: relative;
            z-index: 2;
        }
        
        .login-header h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .login-header-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            animation: iconFloat 3s ease-in-out infinite;
        }
        
        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        
        .login-close {
            position: absolute;
            top: 32px;
            right: 32px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
            z-index: 3;
        }
        
        .login-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        .login-content {
            padding: 40px 32px;
            position: relative;
        }
        
        .login-tabs {
            display: flex;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border-radius: 20px;
            padding: 6px;
            margin-bottom: 40px;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .login-tabs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: tabShimmer 3s ease-in-out infinite;
        }
        
        @keyframes tabShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .login-tab {
            flex: 1;
            padding: 16px 24px;
            text-align: center;
            border-radius: 16px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            color: #64748b;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .login-tab.active {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            color: #1e40af;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .login-tab i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .login-tab.active i {
            transform: scale(1.2);
        }
        
        .login-form {
            display: none;
            animation: formSlideIn 0.5s ease-out;
        }
        
        .login-form.active {
            display: block;
        }
        
        @keyframes formSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-input-group {
            position: relative;
            margin-bottom: 28px;
        }
        
        .login-input {
            width: 100%;
            padding: 20px 24px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        .login-input:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.1), 0 8px 25px rgba(30, 64, 175, 0.15);
            transform: translateY(-2px);
            background: #ffffff;
        }
        
        .login-input:hover {
            border-color: #3b82f6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .login-label {
            position: absolute;
            left: 24px;
            top: 20px;
            color: #64748b;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            padding: 0 12px;
            border-radius: 8px;
        }
        
        .login-input:focus + .login-label,
        .login-input:not(:placeholder-shown) + .login-label {
            top: -12px;
            font-size: 14px;
            color: #1e40af;
            font-weight: 600;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
        }
        
        .login-button {
            width: 100%;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #6366f1 100%);
            color: white;
            padding: 20px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }
        
        .login-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .login-button:hover::before {
            left: 100%;
        }
        
        .login-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
        }
        
        .login-button:active {
            transform: translateY(-1px);
        }
        
        .login-divider {
            display: flex;
            align-items: center;
            margin: 32px 0;
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
        }
        
        .login-divider::before,
        .login-divider::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }
        
        .login-divider span {
            padding: 0 20px;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .social-login {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .social-login-btn {
            flex: 1;
            padding: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }
        
        .social-login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .social-login-btn:hover::before {
            transform: translateX(100%);
        }
        
        .social-login-btn:hover {
            border-color: #3b82f6;
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }
        
        .social-login-btn.google {
            color: #db4437;
        }
        
        .social-login-btn.google:hover {
            border-color: #db4437;
            box-shadow: 0 12px 35px rgba(219, 68, 55, 0.2);
        }
        
        .social-login-btn.facebook {
            color: #1877f2;
        }
        
        .social-login-btn.facebook:hover {
            border-color: #1877f2;
            box-shadow: 0 12px 35px rgba(24, 119, 242, 0.2);
        }
        
        .social-login-btn.apple {
            color: #000;
        }
        
        .social-login-btn.apple:hover {
            border-color: #000;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }
        
        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }
        
        .forgot-password a {
            color: #1e40af;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }
        
        .forgot-password a:hover {
            background: rgba(30, 64, 175, 0.1);
            transform: translateY(-1px);
        }
        
        .visa-benefits {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #bae6fd;
            border-radius: 24px;
            padding: 32px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .visa-benefits::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
            animation: benefitsGlow 10s ease-in-out infinite;
        }
        
        @keyframes benefitsGlow {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }
        
        .visa-benefits-content {
            position: relative;
            z-index: 2;
        }
        
        .visa-benefits h3 {
            font-size: 20px;
            font-weight: 800;
            color: #1e40af;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .visa-benefits-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            animation: iconPulse 2s ease-in-out infinite;
        }
        
        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .visa-benefits ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .visa-benefits li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: #1e40af;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .visa-benefits li:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
        }
        
        .visa-benefits li i {
            color: #10b981;
            margin-right: 16px;
            width: 20px;
            font-size: 16px;
            animation: checkBounce 2s ease-in-out infinite;
        }
        
        @keyframes checkBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        .visa-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 24px;
        }
        
        .visa-stat {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
        }
        
        .visa-stat:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
        }
        
        .visa-stat-number {
            font-size: 24px;
            font-weight: 800;
            color: #1e40af;
            margin-bottom: 4px;
        }
        
        .visa-stat-label {
            font-size: 12px;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @media (max-width: 768px) {
            .login-panel {
                width: 100%;
                right: -100%;
            }
            
            .login-content {
                padding: 24px;
            }
        }

        
        .swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-pointer-events,.swiper-3d .swiper-pointer-events .swiper-slide{touch-action:none}button.swiper-button-next,button.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:-22px;z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}button.swiper-button-next:after,button.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}button.swiper-button-prev,swiper-container::part(button-prev){left:10px;right:auto}button.swiper-button-next,swiper-container::part(button-next){right:10px;left:auto}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-pagination-fraction,.swiper-pagination-custom{bottom:10px;left:0;width:100%}.swiper-pagination-bullets{bottom:10px;left:0;width:100%}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity,1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-fraction.swiper-pagination-bullets{right:10px;left:auto;top:50%;transform:translateY(-50%)}.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-fraction.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-horizontal>.swiper-pagination-fraction.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scaleX(0);transform-origin:left}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}@-webkit-keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-lazy-preloader-spin{animation:swiper-preloader-spin 1s linear infinite}.swiper-virtual .swiper-slide{list-style:none;-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper{scroll-snap-type:none}:root{--swiper-navigation-size:44px;--swiper-theme-color:#007aff}
    /* === İLETİŞİM SAYFASI STİLLERİ BAŞLANGIÇ === */

/* GENEL STİLLER */
.hero-gradient { background: linear-gradient(135deg, #1e3a8a 0%, #3b0764 100%); }
.pulse-animation { animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }
.floating-animation { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* İLETİŞİM KARTLARI */
.contact-card { background-color: #f8fafc; padding: 2rem; border-radius: 1.5rem; border: 1px solid #f1f5f9; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.office-hours { margin-top: 2rem; border-top: 1px solid #e2e8f0; padding-top: 1.5rem; }

/* PROFESYONEL FORM STİLLERİ */
.form-group { position: relative; }
.form-input { width: 100%; padding: 1rem; border: 1px solid #cbd5e1; border-radius: 0.75rem; transition: all 0.2s ease-in-out; background-color: white; }
.form-input:focus { border-color: #3b82f6; outline: none; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
.form-label { position: absolute; left: 1rem; top: 1rem; color: #64748b; background-color: white; padding: 0 0.25rem; transition: all 0.2s ease-in-out; pointer-events: none; }
.form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label { top: -0.75rem; left: 0.75rem; font-size: 0.875rem; color: #3b82f6; }
.form-input:not(:placeholder-shown) + .form-label { color: #475569; }
select.form-input { color: #1f2937; }
select.form-input:required:invalid { color: #64748b; }
.submit-btn { padding: 1rem; border-radius: 0.75rem; background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); color: white; font-weight: bold; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.submit-btn:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); transform: translateY(-2px); }

/* SOSYAL MEDYA LİNKLERİ */
.social-links { display: flex; gap: 1.5rem; }
.social-link { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; transition: all 0.3s ease; }
.social-link:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.facebook { background: #1877F2; } .twitter { background: #1DA1F2; } .linkedin { background: #0A66C2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.whatsapp { background: #25D366; }



/* === İLETİŞİM SAYFASI STİLLERİ BİTİŞ === */