/* Modern UI Tasarımı */
:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --secondary: #64748b;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #2563eb;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Temel Stiller */
body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--light);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white !important;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    color: var(--gray-900) !important;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../banner.png') no-repeat center center;
    background-size: cover;
    color: var(--gray-900);
    padding: 150px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    margin-left: 4vw;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    color: var(--gray-900);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    margin-bottom: 2rem;
    color: var(--gray-700);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    opacity: 0;
    animation: fadeInRight 1s ease 0.6s forwards;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(50px, 0);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Kartlar */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* Butonlar */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Form Elemanları */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Modern Footer */
footer {
    background: linear-gradient(90deg, var(--primary) 0%, var(--info) 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
}
footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
footer a {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}
footer a:hover {
    color: #fff;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transform: translateX(6px) scale(1.05);
}
footer .contact-info p, footer .contact-info i {
    color: #fff;
    opacity: 0.9;
}
footer .footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}
footer .copyright {
    margin-top: 2rem;
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll Animasyonları */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Özel Efektler */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Badge */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* Alert */
.alert {
    border: none;
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.alert-success::before {
    background: var(--success);
}

.alert-danger::before {
    background: var(--danger);
}

.alert-warning::before {
    background: var(--warning);
}

.alert-info::before {
    background: var(--info);
}

/* Laravel Style Icons */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.card:hover .icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
}

.card:hover .icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

/* Hero Butonları */
.hero-buttons .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.hero-buttons .btn-light {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.hero-buttons .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.hero-buttons .btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-buttons .btn i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* CTA Section */
.bg-gradient {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53, #ff6b6b, #ff8e53);
    background-size: 300% 300%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.bg-gradient .container {
    position: relative;
    z-index: 1;
}

.bg-gradient h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #f0f0f0, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: shine 3s linear infinite;
}

.bg-gradient p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.bg-gradient .btn-light {
    background: white;
    color: #ff6b6b;
    border: 2px solid white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bg-gradient .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin: 0 auto;
    }
    
    .hero-stats {
        position: relative;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stat-item {
        padding: 0 1rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .bg-gradient h2 {
        font-size: 2rem;
    }
    
    .bg-gradient p {
        font-size: 1.1rem;
    }
    
    .bg-gradient .btn {
        width: 100%;
    }
    
    footer {
        border-radius: 1rem 1rem 0 0;
        padding: 2rem 0 1rem;
    }
    
    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .contact-info {
        margin-bottom: 2rem;
    }
    
    footer ul li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* Tablet için özel ayarlar */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

/* Mobil için özel ayarlar */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Küçük mobil cihazlar için özel ayarlar */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* Yükseklik bazlı medya sorguları */
@media (max-height: 700px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
}

/* Yatay mobil görünüm için özel ayarlar */
@media (max-width: 991px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
    }
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1.1);
}
.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .scroll-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Hakkımızda sayfası hero section için şeffaf overlay */
.about-page-hero.hero-section {
    position: relative;
    overflow: hidden;
}
.about-page-hero.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.7;
    z-index: 1;
}
.about-page-hero .container, .about-page-hero .row, .about-page-hero .col-lg-8 {
    position: relative;
    z-index: 2;
} 