/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003a56;
    --secondary-color: #fe5d2c;
    --accent-color: #2fbdef;
    --accent-orange: #f2592a;
    --success-color: #25D366;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: var(--shadow);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    background-color: white;
    padding: 8px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 180px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.tagline {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.header-contact i {
    font-size: 1.8rem;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-number:hover {
    opacity: 0.8;
}

/* Navigation */
nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 10px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-menu li a:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.nav-menu li a.active {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Sections */
.section {
    padding: 60px 20px;
}

.section-alt {
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.section-title i {
    color: var(--secondary-color);
}

.section-description {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Cards */
.card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Document Categories */
.document-category {
    margin-bottom: 40px;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.category-title i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.category-title.subcategory {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.additional-header {
    text-align: center;
    margin: 50px 0 40px;
    position: relative;
}

.additional-header h3 {
    display: inline-block;
    background-color: var(--bg-light);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.additional-header h3 i {
    font-size: 1.4rem;
}

/* Document List */
.document-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.document-list li {
    display: flex;
    gap: 12px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.document-list li:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    border-left-color: var(--success-color);
}

.document-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.document-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 3px;
    font-size: 0.95rem;
    font-weight: 600;
}

.document-list p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: var(--border-color);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    z-index: 1;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    /* Border kaldırıldı - Sadece badge görünecek */
}

.badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-body {
    padding: 30px;
}

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

.price .amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: transform 0.2s ease;
}

.price .period {
    color: var(--text-light);
    font-size: 1rem;
}

.features {
    list-style: none;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.features i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Region Selector */
.region-selector {
    margin-bottom: 40px;
    text-align: center;
}

.region-label {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.region-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.region-btn {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
}

.region-btn i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.region-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.region-btn.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.region-btn.active i {
    color: white;
}

/* Info Box */
.info-box {
    background-color: #fff5f0;
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-box i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box {
    background-color: #fff8e1;
    border-left-color: #ff9800;
}

.warning-box i {
    color: #ff9800;
}

.info-box strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* Contact Section */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.contact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

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

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

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-note {
    opacity: 0.8;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 8px 10px;
    }

    .header-content {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }

    .logo-section {
        flex-direction: row;
        gap: 6px;
        text-align: left;
        width: auto;
        flex: 1;
    }

    .logo {
        padding: 4px 8px;
    }

    .logo-img {
        max-width: 100px;
        max-height: 30px;
    }

    .tagline {
        font-size: 0.65rem;
        white-space: normal;
        line-height: 1.2;
    }

    .header-contact {
        width: auto;
        justify-content: flex-end;
        padding: 4px 8px;
        gap: 6px;
    }

    .contact-label {
        display: none;
    }

    .phone-number {
        font-size: 0.75rem;
    }

    .header-contact i {
        font-size: 1.2rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 2rem;
    }

    .nav-menu {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 8px 2px;
        gap: 2px;
    }

    .nav-menu li a {
        flex-direction: column;
        justify-content: center;
        padding: 8px 6px;
        font-size: 0.7rem;
        gap: 4px;
    }

    .nav-menu li a i {
        font-size: 1.1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .card {
        padding: 20px;
    }

    .document-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .document-list li {
        padding: 12px;
    }

    .document-list strong {
        font-size: 0.9rem;
    }

    .document-list p {
        font-size: 0.8rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card i {
        font-size: 2.5rem;
    }

    .region-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .region-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }

    .price .amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 40px 15px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 3px 35px;
    }
}

