/* İmza Seyahat - Modern Tasarım Stilleri */

:root {
    --primary: #1E3A8A;      /* Koyu mavi */
    --secondary: #D97706;     /* Altın/turuncu */
    --accent: #059669;        /* Yeşil */
    --dark: #0F172A;          /* Çok koyu mavi */
    --light: #F8FAFC;         /* Çok açık gri */
    --white: #FFFFFF;         /* Beyaz */
    --gradient-start: #1E3A8A; /* Gradient başlangıcı */
    --gradient-end: #3B82F6;   /* Gradient bitişi */
    --text-primary: #1F2937;   /* Ana metin rengi */
    --text-secondary: #6B7280; /* İkincil metin rengi */
    --border: #E5E7EB;         /* Kenarlık rengi */
    --hover: #2563EB;          /* Hover rengi */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    --gradient-accent: linear-gradient(135deg, #059669 0%, #10B981 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    text-decoration: none;
}

.pattern-bg {
    background-image: url('images/bg.png');
    background-size: contain;
    background-position: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.contact-btn {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
    color: white;
    text-decoration: none;
}

.hero-shape {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 60%;
    height: 60%;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Info Cards */
.info-cards {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.25);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Destination Cards */
.destination-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
}

.destination-card:hover .hover-overlay {
    opacity: 1 !important;
}

.destination-card:hover .hover-overlay > div {
    animation: fadeInUp 0.6s ease-out;
}

.destination-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.destination-country {
    font-size: 0.9rem;
    opacity: 0.9;
}

.destination-description {
    padding: 1.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
}

.service-card:hover .service-hover-overlay {
    opacity: 1 !important;
}

.service-card:hover .service-hover-overlay > div {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.25);
}

.value-icon {
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
    padding: 10px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    font-size: 1.75rem;
    color: white;
}

.value-card h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.form-control {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 4rem 0;
    }

    .info-cards {
        margin-top: -2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Specific Styles */
.about-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.story-section {
    background: var(--light);
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-text h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.story-text p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Blog Styles */
.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
}

.featured-blog-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.5s ease;
}

.featured-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(30, 58, 138, 0.25);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.blog-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-excerpt {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Disclaimer Page */
.disclaimer-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.disclaimer-content h1 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.disclaimer-content h2 {
    color: var(--primary);
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.disclaimer-content p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-content ul {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.disclaimer-content li {
    margin-bottom: 0.5rem;
}

/* İletişim Bilgileri (Contact Info) */
.contact-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-info-label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 0.5rem;
    transition: background 0.2s;
}

.contact-social-icon:hover {
    background: var(--primary);
}

@media (max-width: 576px) {
    .contact-info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-icon {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}