/* ============================================================
   WELCOME PAGE REDESIGN - ABB Konukevi
   Modern, Mobil Uyumlu, Premium Tasarım
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --navy: #002147;
    --navy-dark: #001a38;
    --navy-light: #003366;
    --orange: #ff5202;
    --orange-hover: #e64a00;
    --cyan: #14bdee;
    --cyan-light: #d0f2fc;
    --gold: #f0a500;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, .1), 0 6px 10px rgba(0, 0, 0, .08);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .12), 0 12px 24px rgba(0, 0, 0, .08);
    --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   GLOBAL OVERRIDES
   ============================================================ */
.welcome-page {
    font-family: 'Inter', 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ============================================================
   HEADER REDESIGN
   ============================================================ */
.header-redesign {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: var(--transition);
    padding: 0;
}

.header-redesign .header-top-bar {
    background: var(--navy-dark);
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: 0.3px;
}

.header-redesign .header-top-bar i {
    color: var(--orange);
    margin-right: 6px;
}

.header-redesign .header-top-bar a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: var(--transition);
}

.header-redesign .header-top-bar a:hover {
    color: var(--orange);
}

.header-main-nav {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 33, 71, .06);
    padding: 8px 0;
    transition: var(--transition);
}

.header-scrolled .header-main-nav {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 30px rgba(0, 33, 71, .08);
    padding: 4px 0;
}

.header-main-nav .navbar-brand img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}

.header-scrolled .header-main-nav .navbar-brand img {
    height: 44px;
}

.header-main-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--navy) !important;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.2px;
    background: transparent !important;
}

.header-main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.header-main-nav .nav-link:hover::after,
.header-main-nav .nav-link.active::after {
    transform: scaleX(1);
}

.header-main-nav .nav-link:hover {
    color: var(--orange) !important;
}

.header-main-nav .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 8px 0;
    margin-top: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-main-nav .dropdown-item {
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--navy);
    transition: var(--transition);
    border-bottom: none;
}

.header-main-nav .dropdown-item:hover {
    background: var(--gray-50);
    color: var(--orange);
    padding-left: 24px;
}

.btn-cta-header {
    background: linear-gradient(135deg, var(--orange), #ff6b2b);
    color: var(--white) !important;
    border: none;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 82, 2, .3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 82, 2, .4);
    background: linear-gradient(135deg, #e64a00, var(--orange));
}

.btn-cta-header i {
    font-size: 14px;
}

/* Mobile Nav */
.navbar-toggler {
    border: 2px solid var(--navy) !important;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}

.navbar-toggler i {
    color: var(--navy);
    font-size: 20px;
}

@media (max-width: 991px) {
    .header-main-nav .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }

    .header-main-nav .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid var(--gray-100);
    }

    .header-main-nav .nav-link::after {
        display: none;
    }

    .btn-cta-header {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-section .carousel-item.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 21, 47, .4) 0%,
            rgba(0, 21, 47, .6) 50%,
            rgba(0, 21, 47, .85) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-badge i {
    color: var(--gold);
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--orange), #ff6b2b);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(255, 82, 2, .35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 82, 2, .45);
    color: var(--white);
    text-decoration: none;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, .3);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .5);
    transform: translateY(-3px);
    color: var(--white);
    text-decoration: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    gap: 8px;
}

.hero-scroll-indicator i {
    font-size: 20px;
}

/* Carousel indicators */
.hero-section .carousel-indicators {
    bottom: 70px;
    z-index: 4;
}

.hero-section .carousel-indicators [data-bs-target],
.hero-section .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    margin: 0 5px;
    opacity: 1;
    transition: var(--transition);
}

.hero-section .carousel-indicators .active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 550px;
        max-height: 700px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   QUICK ACTIONS SECTION
   ============================================================ */
.quick-actions-section {
    position: relative;
    z-index: 10;
    padding-top: 140px;
    padding-bottom: 60px;
}

.quick-action-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quick-action-card:hover::before {
    transform: scaleX(1);
}

.quick-action-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: var(--transition);
}

.quick-action-icon.icon-apply {
    background: linear-gradient(135deg, rgba(255, 82, 2, .1), rgba(255, 82, 2, .05));
    color: var(--orange);
}

.quick-action-icon.icon-conditions {
    background: linear-gradient(135deg, rgba(20, 189, 238, .1), rgba(20, 189, 238, .05));
    color: var(--cyan);
}

.quick-action-icon.icon-process {
    background: linear-gradient(135deg, rgba(0, 33, 71, .1), rgba(0, 33, 71, .05));
    color: var(--navy);
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-action-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.quick-action-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-action:hover {
    color: var(--orange-hover);
    gap: 12px;
    text-decoration: none;
}

.btn-action i {
    transition: transform 0.3s ease;
}

.btn-action:hover i {
    transform: translateX(4px);
}

/* ============================================================
   KONUKEVLERI SECTION
   ============================================================ */
.konukevi-section {
    padding: 80px 0 100px;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header .section-label::before,
.section-header .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.konukevi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.konukevi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.konukevi-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.konukevi-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.konukevi-card:hover .konukevi-card-image img {
    transform: scale(1.08);
}

.konukevi-card-image .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 33, 71, .85);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.konukevi-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.konukevi-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.konukevi-card-body .address {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 16px;
}

.konukevi-card-body .address i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.konukevi-card-footer {
    padding: 16px 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.konukevi-card-footer .price {
    font-size: 14px;
    color: var(--gray-500);
}

.konukevi-card-footer .price strong {
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
}

.konukevi-card-footer .price small {
    font-size: 12px;
    color: var(--gray-500);
}

.btn-incele {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-incele:hover {
    background: linear-gradient(135deg, var(--orange), #ff6b2b);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 82, 2, .3);
}

.gender-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--cyan-light);
    color: var(--cyan);
    margin-top: auto;
    width: fit-content;
}

@media (max-width: 768px) {
    .konukevi-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 82, 2, .15), transparent 70%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 189, 238, .1), transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

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

    .stat-item {
        padding: 16px 10px;
    }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
    padding: 100px 0;
    background: var(--white);
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    background: var(--gray-900);
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-wrapper .video-label {
    padding: 16px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.video-wrapper .video-label h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-wrapper .video-label h5 i {
    color: var(--orange);
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
}

/* ============================================================
   FOOTER REDESIGN
   ============================================================ */
.footer-redesign {
    background: linear-gradient(180deg, var(--navy), var(--navy-dark));
    color: rgba(255, 255, 255, .85);
    padding-top: 80px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    max-width: 280px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--orange);
    font-size: 16px;
    margin-top: 2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0;
    margin-top: 50px;
}

.footer-bottom-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-redesign {
        padding-top: 50px;
    }

    .footer-bottom-bar {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 12px;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Scroll offset for fixed header */
.content-start {
    scroll-margin-top: 100px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================================
   INNER PAGES - Page Header Banner
   ============================================================ */
.page-header-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 82, 2, .12), transparent 70%);
    pointer-events: none;
}

.page-header-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 189, 238, .08), transparent 70%);
    pointer-events: none;
}

.page-header-banner .container {
    position: relative;
    z-index: 1;
}

.page-header-banner h1 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.page-header-banner .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}

.page-header-banner .breadcrumb-nav a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: var(--transition);
}

.page-header-banner .breadcrumb-nav a:hover {
    color: var(--orange);
}

.page-header-banner .breadcrumb-nav .separator {
    color: rgba(255, 255, 255, .4);
}

.page-header-banner .breadcrumb-nav .current {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================================
   INNER PAGES - Content Card
   ============================================================ */
.inner-content-section {
    padding: 50px 0 80px;
    background: var(--gray-50);
}

.inner-content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--gray-100);
}

.inner-content-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}

.inner-content-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.inner-content-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.inner-content-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.inner-content-card ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.7;
    border-bottom: 1px solid var(--gray-100);
}

.inner-content-card ul li:last-child {
    border-bottom: none;
}

.inner-content-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   KONUKEVI DETAIL PAGE
   ============================================================ */
.konukevi-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.konukevi-info-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.konukevi-info-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.konukevi-info-item .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 82, 2, .1), rgba(255, 82, 2, .05));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.konukevi-info-item .info-text {
    flex: 1;
}

.konukevi-info-item .info-text .info-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.konukevi-info-item .info-text .info-value {
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.4;
}

.konukevi-info-item .info-text .info-value a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.konukevi-info-item .info-text .info-value a:hover {
    color: var(--orange-hover);
    text-decoration: underline;
}

/* Gallery */
.gallery-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.gallery-grid a {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.gallery-grid a::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(0, 21, 47, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-grid a:hover::after {
    opacity: 1;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
}

/* ============================================================
   FORM PAGE (BASVURU)
   ============================================================ */
.form-section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.form-section-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 24px 30px;
    color: var(--white);
}

.form-section-header h5 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.form-section-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin: 6px 0 0;
}

.form-section-header a {
    color: var(--orange);
    text-decoration: underline;
}

.form-section-body {
    padding: 30px;
}

.form-section-body label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    display: block;
}

.form-section-body .form-control,
.form-section-body .form-control-rounded {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--navy);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.form-section-body .form-control:focus,
.form-section-body .form-control-rounded:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 82, 2, .1);
    outline: none;
}

.form-section-body select.form-control {
    appearance: auto;
}

.form-alert-info {
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    border: none;
}

.form-alert-info.alert-kiz {
    background: linear-gradient(135deg, #ffe0e6, #fff5f7);
    color: #c2185b;
    border-left: 4px solid #e91e63;
}

.form-alert-info.alert-erkek {
    background: linear-gradient(135deg, #dde8ff, #f0f4ff);
    color: #1565c0;
    border-left: 4px solid #1976d2;
}

.form-alert-info.alert-warning-custom {
    background: linear-gradient(135deg, #fff3e0, #fffaf2);
    color: #e65100;
    border-left: 4px solid var(--orange);
}

.form-section-body .btn-submit-form {
    background: linear-gradient(135deg, var(--orange), #ff6b2b);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 82, 2, .3);
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.form-section-body .btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 82, 2, .4);
}

.form-section-body .btn-continue {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.form-section-body .btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 33, 71, .3);
}

.form-section-body .custom-control {
    padding: 12px 0;
}

.form-section-body .custom-control-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    display: inline;
}

/* ============================================================
   PROCESS PAGE (BASVURU KAYIT SURECI)
   ============================================================ */
.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), var(--cyan));
    border-radius: 3px;
}

.process-step {
    position: relative;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(255, 82, 2, .2);
}

.process-step h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   INNER PAGES - Mobile Responsive
   ============================================================ */
@media (max-width: 768px) {
    .page-header-banner {
        padding: 120px 0 40px;
    }

    .page-header-banner h1 {
        font-size: 26px;
    }

    .inner-content-card {
        padding: 24px 18px;
    }

    .inner-content-card h2 {
        font-size: 20px;
    }

    .konukevi-info-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .form-section-body {
        padding: 20px 16px;
    }

    .process-timeline {
        padding-left: 32px;
    }

    .process-step {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .page-header-banner {
        padding: 110px 0 30px;
    }

    .page-header-banner h1 {
        font-size: 22px;
    }

    .inner-content-section {
        padding: 30px 0 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}