:root {
    --fiyuu-pink: #FF1B8D;
    --fiyuu-orange: #FF9933;
    --fiyuu-dark-orange: #FF8000;
    --fiyuu-light-orange: #FFB366;
    --fiyuu-dark: #2D2D2D;
    --fiyuu-light-bg: #FFF8F0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--fiyuu-orange) !important;
}

/* Button Styles */
.btn-fiyuu-primary {
    background-color: var(--fiyuu-orange);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-fiyuu-primary:hover {
    background-color: var(--fiyuu-dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* Hero Section / Slider */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    background-image: url('slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(45, 45, 45, 0.85) 0%, rgba(45, 45, 45, 0.6) 50%, rgba(255, 153, 51, 0.3) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.icon-pink {
    background-color: #FFE5CC;
    color: var(--fiyuu-orange);
}

.icon-blue {
    background-color: #FFF0E0;
    color: #FF9933;
}

.icon-green {
    background-color: #FFF5EB;
    color: #FF8800;
}

.icon-orange {
    background-color: #FFEEDD;
    color: var(--fiyuu-dark-orange);
}

/* Stats Section */
.stats-section {
    background-color: var(--fiyuu-light-bg);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--fiyuu-orange);
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.turkey-map {
    max-width: 600px;
    margin: 40px auto;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
}

.advantage-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFB366 0%, #FF9933 50%, #FF8000 100%);
    padding: 80px 0;
    color: white;
}

/* Footer */
.footer {
    background-color: #2D2D2D;
    color: white;
    padding: 50px 0 20px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.handshake-img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
        background-position: center center;
    }

    .hero-content {
        padding: 40px 0 10px 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(45, 45, 45, 0.85) 0%, rgba(45, 45, 45, 0.7) 70%, rgba(255, 153, 51, 0.4) 100%);
    }

    .stat-number {
        font-size: 28px;
    }

    .advantages-section,
    .stats-section,
    .cta-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }
}

/* Form Pages Styles */
.page-hero {
    background: linear-gradient(135deg, #FF8000 0%, #FF9933 50%, #FFB366 100%);
    padding: 80px 0 60px;
    color: white;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    color: var(--fiyuu-orange);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--fiyuu-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.15);
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
    border: 2px solid #d0d0d0;
}

.form-check-input:checked {
    background-color: var(--fiyuu-orange);
    border-color: var(--fiyuu-orange);
}

.form-check-label {
    margin-left: 8px;
    cursor: pointer;
}

.info-sidebar {
    position: sticky;
    top: 100px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.info-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.info-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--fiyuu-orange);
    font-weight: bold;
}

.form-text {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-card {
        padding: 25px 20px;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
}

/* About Page Styles */
.mission-vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.mission-vision-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fiyuu-orange) 0%, var(--fiyuu-dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-vision-card .icon-box i {
    font-size: 35px;
    color: white;
}

.mission-vision-card h3 {
    color: var(--fiyuu-orange);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: #FFE5CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--fiyuu-orange);
}

.value-card h5 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.stat-box {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--fiyuu-orange);
    margin-bottom: 10px;
}

.stat-box .stat-label {
    color: #666;
    font-size: 16px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h5 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

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

.coverage-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 10px 0;
    font-size: 16px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.partner-item {
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--fiyuu-orange);
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fiyuu-orange) 0%, var(--fiyuu-dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 35px;
    color: white;
}

.contact-info-card h5 {
    color: var(--fiyuu-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-info-card a {
    color: var(--fiyuu-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.social-card, .quick-actions-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.social-card h5, .quick-actions-card h5 {
    color: #333;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.social-link:hover {
    background: #FFE5CC;
    transform: translateX(5px);
}

.social-link i {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
}

.social-link.instagram i { color: #E4405F; }
.social-link.facebook i { color: #1877F2; }
.social-link.twitter i { color: #1DA1F2; }
.social-link.linkedin i { color: #0A66C2; }
.social-link.whatsapp i { color: #25D366; }

.quick-action-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-action-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.quick-action-item:hover {
    background: var(--fiyuu-orange);
    color: white;
    transform: translateX(5px);
}

.quick-action-item i:first-child {
    font-size: 20px;
    margin-right: 12px;
}

.quick-action-item i:last-child {
    font-size: 16px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.accordion-button {
    background: white;
    color: #333;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--fiyuu-orange);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    background: #f8f9fa;
}

.accordion-body a {
    color: var(--fiyuu-orange);
    font-weight: 600;
}

.working-hours-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-of-type {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.hours-item .hours {
    color: var(--fiyuu-orange);
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 768px) {
    .mission-vision-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .contact-info-card, .social-card, .quick-actions-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .stat-box .stat-number {
        font-size: 36px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Legal Pages Styles */
.legal-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h3 {
    color: var(--fiyuu-orange);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--fiyuu-orange);
    font-size: 1.6rem;
    font-weight: 700;
}

.legal-section h5 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.legal-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.legal-section ul li, .legal-section ol li {
    margin-bottom: 10px;
}

.legal-section strong {
    color: #333;
    font-weight: 600;
}

.info-box, .contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--fiyuu-orange);
    margin: 20px 0;
}

.info-box h5 {
    color: var(--fiyuu-orange);
    margin-bottom: 15px;
}

.info-box p, .contact-box p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-box a {
    color: var(--fiyuu-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

.rights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.right-item:hover {
    background: #FFE5CC;
    transform: translateX(5px);
}

.right-item i {
    font-size: 24px;
    color: var(--fiyuu-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.right-item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.right-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.purpose-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
}

.purpose-item i {
    font-size: 20px;
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.purpose-item strong {
    display: block;
    margin-bottom: 5px;
}

.purpose-item p {
    margin: 0;
    font-size: 14px;
}

.application-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.method-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--fiyuu-orange);
}

.method-item i {
    font-size: 32px;
    color: var(--fiyuu-orange);
    flex-shrink: 0;
}

.method-item strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 1.1rem;
}

.method-item p {
    margin-bottom: 5px;
}

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

.right-card {
    padding: 25px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.right-card:hover {
    border-color: var(--fiyuu-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.2);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: #FFE5CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.right-icon i {
    font-size: 28px;
    color: var(--fiyuu-orange);
}

.right-card h6 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.right-card p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.measure-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.measure-item i {
    font-size: 22px;
    color: #28a745;
    flex-shrink: 0;
}

.measure-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.contact-box-kvkk {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--fiyuu-orange);
    margin: 25px 0;
}

.contact-box-kvkk h6 {
    color: var(--fiyuu-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-box-kvkk a {
    color: var(--fiyuu-orange);
    text-decoration: none;
    font-weight: 600;
}

.acceptance-box {
    background: linear-gradient(135deg, #FFE5CC 0%, #FFF0E0 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid var(--fiyuu-orange);
    text-align: center;
}

.acceptance-box h4 {
    color: var(--fiyuu-orange);
    margin-bottom: 20px;
}

.acceptance-box i {
    font-size: 32px;
    margin-right: 10px;
}

.table {
    margin: 25px 0;
}

.table thead {
    background: var(--fiyuu-orange);
    color: white;
}

.table thead th {
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table tbody td {
    padding: 12px 15px;
    border-color: #f0f0f0;
}

.table tbody tr:hover {
    background: #FFF8F0;
}

.alert {
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.alert i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px 20px;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .application-methods .method-item {
        flex-direction: column;
        text-align: center;
    }
    
    .right-item, .purpose-item {
        flex-direction: column;
        text-align: center;
    }
}
