/**
 * İKRAM DÖNER - Premium CSS
 * Modern, Animasyonlu, İki Tema Modlu (Dark/Red)
 * Samsun 19 Mayıs
 */

/* ================================================
   CSS VARIABLES (TEMA SİSTEMİ)
   ================================================ */

:root {
    /* Dark Theme (Varsayılan) - Premium/Lüks */
    --bg-body: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-navbar: rgba(10, 10, 10, 0.92);
    --bg-footer: #0f0f0f;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    --accent-color: #ed1909;
    --accent-hover: #c01405;
    --accent-light: rgba(237, 25, 9, 0.1);
    
    --border-color: #2a2a2a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    --gradient-primary: linear-gradient(135deg, #ed1909 0%, #c01405 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

[data-theme="red"] {
    /* Red Theme - Açık / Ferah / Enerjik */

    --bg-body: #fffafa;              /* Kırık beyaz */
    --bg-card: #ffffff;              /* Kartlar net beyaz */
    --bg-card-hover: #fff1f1;        /* Hafif pembe hover */
    --bg-navbar: rgba(255, 245, 245, 0.95);
    --bg-footer: #fff5f5;
    --bg-overlay: rgba(255, 220, 220, 0.85);

    --text-primary: #2b1a1a;          /* Koyu ama yumuşak */
    --text-secondary: #5a2a2a;
    --text-muted: #8b5a5a;

    --accent-color: #d64545;          /* Ana kırmızı */
    --accent-hover: #c73838;
    --accent-light: rgba(214, 69, 69, 0.12);

    --border-color: #ff0000;
    
    --shadow-sm: 0 2px 8px rgba(214, 69, 69, 0.08);
    --shadow-md: 0 4px 16px rgba(214, 69, 69, 0.12);
    --shadow-lg: 0 8px 32px rgba(214, 69, 69, 0.16);

    --gradient-primary: linear-gradient(
        135deg,
        #ff0000 0%,
        #ff0000 100%
    );

    --gradient-overlay: linear-gradient(
        to bottom,
        rgba(255, 210, 210, 0.6),
        rgba(255, 185, 185, 0.9)
    );
}
    

/* ================================================
   GLOBAL STYLES
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

::selection {
    background-color: var(--accent-color);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-card);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ================================================
   NAVBAR - COMPLETE REDESIGN
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-navbar);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="red"] .navbar {
    background-color: rgba(237, 25, 9, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="red"] .navbar.scrolled {
    background-color: rgba(237, 25, 9, 0.98);
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
}

/* ================================================
   NAVBAR BRAND (LOGO)
   ================================================ */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.navbar-brand i {
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    align-items: center;
    line-height: 1;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

.navbar-brand:hover i {
    transform: rotate(15deg) scale(1.1);
}

.navbar.scrolled .navbar-brand {
    font-size: 1.25rem;
}

.navbar.scrolled .brand-logo {
    height: 50px;
}

.navbar.scrolled .navbar-brand i {
    font-size: 1.15rem;
}

/* Mobile Logo Responsive */

/* Extra Small Devices (Phones, less than 400px) */
@media (max-width: 399px) {
    .brand-logo {
        height: 30px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 25px;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
}

/* Small Devices (Phones, 400px to 576px) */
@media (min-width: 400px) and (max-width: 576px) {
    .brand-logo {
        height: 35px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 30px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}

/* Medium Small Devices (Tablets, 577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .brand-logo {
        height: 45px;
    }
    
    .navbar.scrolled .brand-logo {
        height: 40px;
    }
}

/* ================================================
   NAVBAR TOGGLER (MOBILE MENU BUTTON)
   ================================================ */

.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    gap: 5px;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 25, 9, 0.3);
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

/* ================================================
   DROPDOWN MENU
   ================================================ */

.dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent-color);
    transform: translateX(4px);
}

/* ================================================
   NAVBAR MENU
   ================================================ */

.navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 9999;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5rem;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
}

.navbar-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

[data-theme="red"] .navbar-menu {
    background: rgba(237, 25, 9, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.navbar-menu::-webkit-scrollbar {
    width: 6px;
}

.navbar-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.navbar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.navbar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.navbar-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 992px) {
    .navbar-close {
        display: none;
    }
}

.navbar-nav {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.navbar-menu .nav-item {
    width: 100%;
    animation: slideInLeft 0.5s ease backwards;
}

.navbar-menu .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-menu .nav-item:nth-child(2) { animation-delay: 0.15s; }
.navbar-menu .nav-item:nth-child(3) { animation-delay: 0.2s; }
.navbar-menu .nav-item:nth-child(4) { animation-delay: 0.25s; }
.navbar-menu .nav-item:nth-child(5) { animation-delay: 0.3s; }

.navbar-menu .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    color: #ffffff !important;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.navbar-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.navbar-menu .nav-link:hover::before,
.navbar-menu .nav-link.active::before {
    transform: scaleY(1);
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
    color: #ffffff !important;
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.navbar-menu .nav-link i {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.navbar-menu .nav-link:hover i {
    transform: scale(1.2);
}


/* ================================================
   MOBILE MENU CONTACT & ACTIONS
   ================================================ */

.navbar-mobile-contact {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    margin-top: 1rem;
    animation: slideInLeft 0.5s ease 0.4s backwards;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-contact-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
    min-width: 32px;
    text-align: center;
}

.mobile-contact-item div {
    flex: 1;
}

.mobile-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.mobile-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.mobile-contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.navbar-mobile-actions {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInLeft 0.5s ease 0.45s backwards;
}

.btn-mobile-action {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-mobile-action:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.btn-mobile-action .theme-icon-dark,
.btn-mobile-action .theme-icon-red {
    font-size: 1.2rem;
}

.btn-mobile-action .theme-icon-red {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="red"] .btn-mobile-action .theme-icon-dark {
    opacity: 0;
    transform: rotate(-180deg);
}

[data-theme="red"] .btn-mobile-action .theme-icon-red {
    opacity: 1;
    transform: rotate(0deg);
}

@media (min-width: 992px) {
    .navbar-mobile-contact,
    .navbar-mobile-actions {
        display: none;
    }
}

/* ================================================
   DESKTOP NAVBAR STYLES
   ================================================ */

@media (min-width: 992px) {
    .navbar-menu {
        position: static;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        flex: 1;
        padding: 0;
        overflow: visible;
    }

    .navbar-nav {
        flex-direction: row;
        max-width: none;
        padding: 0;
        gap: 0.5rem;
        margin: 0;
        width: auto;
        align-items: center;
    }

    .navbar-menu .nav-item {
        width: auto;
        animation: none;
        display: flex;
        align-items: center;
    }

    .navbar-menu .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.6rem 1.5rem;
        border-radius: 8px;
        width: auto;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: rgba(255, 255, 255, 0.9) !important;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
        line-height: 1;
    }
    
    .navbar-menu .nav-link i {
        font-size: 0.9rem;
        width: auto;
        color: inherit;
    }

    [data-theme="red"] .navbar-menu .nav-link {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .navbar-menu .nav-link::before {
        display: none;
    }

    .navbar-menu .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0.3rem;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60%;
        height: 2px;
        background: var(--accent-color);
        transition: transform 0.3s ease;
        border-radius: 2px;
    }

    .navbar-menu .nav-link:hover::after,
    .navbar-menu .nav-link.active::after {
        transform: translateX(-50%) scaleX(1);
    }

    .navbar-menu .nav-link:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }

    [data-theme="red"] .navbar-menu .nav-link:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.12) !important;
    }

    .navbar-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        font-weight: 600;
    }

    [data-theme="red"] .navbar-menu .nav-link.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }
}

/* ================================================
   NAVBAR ACTIONS (BUTTONS)
   ================================================ */

.navbar-actions {
    gap: 0.75rem;
    display: flex;
    align-items: center;
}

.btn-theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

[data-theme="red"] .btn-theme-toggle {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    border: 2px solid rgba(255, 255, 255, 1);
}

.btn-theme-toggle .theme-icon-dark,
.btn-theme-toggle .theme-icon-red {
    position: absolute;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-theme-toggle .theme-icon-red {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="red"] .btn-theme-toggle .theme-icon-dark {
    opacity: 0;
    transform: rotate(-180deg);
}

[data-theme="red"] .btn-theme-toggle .theme-icon-red {
    opacity: 1;
    transform: rotate(0deg);
}

.btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="red"] .btn-theme-toggle:hover {
    background: #ffffff;
    color: var(--accent-color);
    border-color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(237, 25, 9, 0.3);
}

.btn-language {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-size: 0.95rem;
}

[data-theme="red"] .btn-language {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    border: 2px solid rgba(255, 255, 255, 1);
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="red"] .btn-language:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 25, 9, 0.3);
}

.btn-call {
    background: rgba(255, 255, 255, 0.98);
    color: var(--accent-color);
    border: 2px solid rgba(255, 255, 255, 1);
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

[data-theme="red"] .btn-call {
    background: rgba(255, 255, 255, 0.98);
    color: var(--accent-color);
    border: 2px solid rgba(255, 255, 255, 1);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    color: var(--accent-color);
    border-color: #ffffff;
}

[data-theme="red"] .btn-call:hover {
    box-shadow: 0 4px 20px rgba(237, 25, 9, 0.3);
}

/* ================================================
   NAVBAR LINK STYLES (GLOBAL)
   ================================================ */

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.6rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

[data-theme="red"] .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

[data-theme="red"] .nav-link:hover,
[data-theme="red"] .nav-link.active {
    color: #ffffff !important;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   LIVE STREAM BANNER
   ================================================ */

.live-stream-banner {
    background: var(--accent-color);
    color: #ffffff;
    padding: 0.8rem 0;
    animation: slideDown 0.5s ease;
}

.live-indicator {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.live-indicator .pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.btn-live {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-live:hover {
    background: #ffffff;
    color: var(--accent-color);
    border-color: #ffffff;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    margin-top: 0;
}

/* Live stream banner varsa ekstra padding */
body.has-live-banner .hero-section {
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: transparent;
}

/* Particles.js container için */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

[data-theme="red"] .btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--accent-color);
    transform: translateY(-3px);
    border-color: #ffffff;
}

[data-theme="red"] .btn-hero-outline:hover {
    background: #ffffff;
    color: var(--accent-color);
    border-color: #ffffff;
}

/* Hero Search */
.hero-search-container {
    max-width: 600px;
    margin: 2rem auto 0;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-search {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: transparent;
    color: #333;
}

.hero-search input:focus {
    outline: none;
}

.hero-search button {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-search button:hover {
    background: var(--accent-hover);
}

/* ================================================
   SECTIONS
   ================================================ */

.section {
    padding: 5rem 0;
    position: relative;
    overflow: visible;
    min-height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ================================================
   CARDS
   ================================================ */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.card-img-top {
    height: 250px;
    object-fit: contain;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Category Cards */
.category-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    z-index: 1;
    transition: all 0.3s ease;
}

[data-theme="red"] .category-card::before {
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.95));
}

.category-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

[data-theme="red"] .category-card:hover::before {
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.98));
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: #ffffff;
}

[data-theme="red"] .category-card-content {
    color: #2b1a1a;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

[data-theme="red"] .category-card h3 {
    color: #2b1a1a;
}

[data-theme="red"] .category-card p {
    color: #5a2a2a;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

[data-theme="red"] .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

[data-theme="red"] .btn-outline-primary:hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
}

/* ================================================
   FILTERS
   ================================================ */

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn,
.gallery-filter-btn {
    padding: 0.75rem 1.75rem;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

[data-theme="red"] .filter-btn,
[data-theme="red"] .gallery-filter-btn {
    background: #ffffff;
    border-color: rgba(237, 25, 9, 0.2);
    color: var(--text-primary);
}

.filter-btn:hover,
.gallery-filter-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

[data-theme="red"] .filter-btn:hover,
[data-theme="red"] .gallery-filter-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-btn.active,
.gallery-filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

[data-theme="red"] .filter-btn.active,
[data-theme="red"] .gallery-filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--accent-color);
    color: #ffffff;
}

.filter-btn i,
.gallery-filter-btn i {
    font-size: 0.9rem;
}

/* ================================================
   GALLERY
   ================================================ */

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 3rem;
    color: #ffffff;
}

/* Gallery Modal */
#galleryModal .modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

#galleryModal .modal-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: 15px 15px 0 0;
}

#galleryModal .modal-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

#galleryModal .btn-close {
    background: transparent;
    border: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: invert(1);
}

[data-theme="red"] #galleryModal .btn-close {
    filter: none;
    opacity: 0.6;
}

#galleryModal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

#galleryModal .modal-body {
    background: var(--bg-card);
    padding: 1.5rem;
}

#galleryModal .modal-body img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    max-height: 70vh;
    object-fit: contain;
}

#galleryModal .modal-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-hover);
    color: var(--text-muted);
    font-size: 3rem;
    border-radius: 15px;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--bg-footer);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: translateY(-5px);
}

/* ================================================
   FORM STYLES
   ================================================ */

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--bg-card);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(237, 25, 9, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-control:disabled,
.form-select:disabled {
    background-color: var(--bg-card);
    opacity: 0.6;
    cursor: not-allowed;
}

.invalid-feedback {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #ff6b6b;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #25D366;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Cards */
/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

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

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.contact-info-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-title {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.contact-form {
    margin-top: 1rem;
}

.map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.section-subtitle {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Quick Contact Section */
.quick-contact-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(237, 25, 9, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quick-contact-wrapper {
    position: relative;
    z-index: 1;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-contact-icon-large {
    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: #ffffff;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(237, 25, 9, 0.4);
    }
}

.quick-contact-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.quick-contact-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.quick-contact-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    justify-content: center;
}

.quick-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-contact-item:hover::before {
    left: 100%;
}

.quick-contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.quick-contact-item-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.quick-contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
}

.quick-contact-item-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.quick-contact-item-action {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

.quick-contact-item-detail {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    word-break: break-all;
    text-align: center;
}

.quick-contact-item:hover .quick-contact-item-name,
.quick-contact-item:hover .quick-contact-item-action {
    color: #ffffff;
}

.quick-contact-item:hover .quick-contact-item-detail {
    color: rgba(255, 255, 255, 0.95);
}

/* Quick Contact Platform Colors - Tema Uyumlu */
.quick-contact-phone {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-color: var(--accent-color);
}

.quick-contact-phone:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    box-shadow: 0 10px 30px rgba(237, 25, 9, 0.5);
    transform: translateY(-8px);
}

.quick-contact-phone .quick-contact-item-icon {
    background: rgba(255, 255, 255, 0.25);
}

.quick-contact-phone .quick-contact-item-detail {
    color: rgba(255, 255, 255, 0.95);
}

.quick-contact-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    border-color: #25D366;
}

.quick-contact-whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-8px);
}

.quick-contact-whatsapp .quick-contact-item-icon {
    background: rgba(255, 255, 255, 0.25);
}

.quick-contact-whatsapp .quick-contact-item-detail {
    color: rgba(255, 255, 255, 0.95);
}

.quick-contact-mobile {
    background: linear-gradient(135deg, #ed1909 0%, #c01405 100%);
    border-color: var(--accent-color);
}

.quick-contact-mobile:hover {
    background: linear-gradient(135deg, #ed1909 0%, #c01405 100%);
    box-shadow: 0 10px 30px rgba(237, 25, 9, 0.5);
    transform: translateY(-8px);
}

.quick-contact-mobile .quick-contact-item-icon {
    background: rgba(255, 255, 255, 0.25);
}

.quick-contact-mobile .quick-contact-item-detail {
    color: rgba(255, 255, 255, 0.95);
}

.quick-contact-email {
    background: linear-gradient(135deg, #ed1909 0%, #ff4d4d 100%);
    border-color: var(--accent-color);
}

.quick-contact-email:hover {
    background: linear-gradient(135deg, #ed1909 0%, #ff4d4d 100%);
    box-shadow: 0 10px 30px rgba(237, 25, 9, 0.5);
    transform: translateY(-8px);
}

.quick-contact-email .quick-contact-item-icon {
    background: rgba(255, 255, 255, 0.25);
}

.quick-contact-email .quick-contact-item-detail {
    color: rgba(255, 255, 255, 0.95);
}

/* Desktop için özel düzenlemeler */
@media (min-width: 992px) {
    .quick-contact-item {
        padding: 2.25rem 1.75rem;
    }
    
    .quick-contact-item-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
    }
    
    .quick-contact-item-name {
        font-size: 1.3rem;
    }
    
    .quick-contact-item-detail {
        font-size: 1rem;
        word-break: break-word;
    }
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .quick-contact-title {
        font-size: 1.75rem;
    }
    
    .quick-contact-item {
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-contact-item {
        padding: 1.5rem;
    }
    
    .quick-contact-item-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .quick-contact-title {
        font-size: 1.5rem;
    }
    
    .quick-contact-subtitle {
        font-size: 0.9rem;
    }
    
    .quick-contact-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .quick-contact-header {
        margin-bottom: 2rem;
    }
    
    .quick-contact-item-content {
        gap: 0.25rem;
    }
    
    .quick-contact-item-name {
        font-size: 1rem;
    }
    
    .quick-contact-item-action {
        font-size: 0.85rem;
    }
    
    .quick-contact-item-detail {
        font-size: 0.9rem;
    }
}

.working-hours {
    list-style: none;
    padding: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.working-hours .day {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* ================================================
   FLOATING WIDGETS
   ================================================ */

.floating-widgets {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-widget {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* Floating Order Button */
.floating-order-wrapper {
    position: relative;
}

.floating-order-btn {
    background: var(--gradient-primary);
    position: relative;
}

.floating-order-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.floating-order-dropdown {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    min-width: 280px;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.floating-order-wrapper.active .floating-order-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-order-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bg-card);
}

.floating-order-dropdown .order-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.floating-order-dropdown .order-option:last-child {
    margin-bottom: 0;
}

.floating-order-dropdown .order-option:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.floating-order-dropdown .order-option i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.floating-order-dropdown .order-option:hover i {
    background: var(--accent-color);
    color: #ffffff;
    transform: scale(1.1);
}

.floating-order-dropdown .order-option div {
    flex: 1;
}

.floating-order-dropdown .order-option strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.floating-order-dropdown .order-option span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.floating-order-dropdown .order-option:first-child i {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.floating-order-dropdown .order-option:first-child:hover i {
    background: #25D366;
    color: #ffffff;
}

.floating-order-dropdown .order-option:nth-child(2) i,
.floating-order-dropdown .order-option:last-child i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .floating-widgets {
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-order-dropdown {
        right: 0;
        min-width: 260px;
    }
    
    .floating-order-dropdown::after {
        right: 15px;
    }
}

.scroll-to-top {
    background: var(--gradient-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ================================================
   FLOATING WIDGETS LEFT (THEME & LANGUAGE)
   ================================================ */

.floating-widgets-left {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

[data-theme="red"] .floating-theme-toggle {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 1);
    color: var(--accent-color);
}

.floating-theme-toggle .theme-icon-dark,
.floating-theme-toggle .theme-icon-red {
    position: absolute;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.floating-theme-toggle .theme-icon-dark {
    color: #ffffff;
}

.floating-theme-toggle .theme-icon-red {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="red"] .floating-theme-toggle .theme-icon-dark {
    opacity: 0;
    transform: rotate(-180deg);
}

[data-theme="red"] .floating-theme-toggle .theme-icon-red {
    opacity: 1;
    transform: rotate(0deg);
    color: var(--accent-color);
}

.floating-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="red"] .floating-theme-toggle:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(237, 25, 9, 0.3);
}

.floating-language-wrapper {
    position: relative;
}

.floating-language-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

[data-theme="red"] .floating-language-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 1);
    color: var(--accent-color);
}

.floating-language-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="red"] .floating-language-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(237, 25, 9, 0.3);
}

.floating-language-dropdown {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.floating-language-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bg-card);
}

/* Mobile Menu Actions */
.mobile-menu-actions {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInLeft 0.5s ease 0.45s backwards;
    order: 3;
}

@media (min-width: 992px) {
    .mobile-menu-actions {
        display: none;
    }
}

.btn-theme-toggle-mobile,
.btn-language-mobile {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-theme-toggle-mobile:hover,
.btn-language-mobile:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.btn-theme-toggle-mobile .theme-icon-dark,
.btn-theme-toggle-mobile .theme-icon-red {
    font-size: 1.2rem;
}

.btn-theme-toggle-mobile .theme-icon-red {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="red"] .btn-theme-toggle-mobile .theme-icon-dark {
    opacity: 0;
    transform: rotate(-180deg);
}

[data-theme="red"] .btn-theme-toggle-mobile .theme-icon-red {
    opacity: 1;
    transform: rotate(0deg);
}

@media (max-width: 768px) {
    .floating-widgets-left {
        left: 1rem;
        bottom: 1rem;
    }
    
    .floating-language-dropdown {
        left: 0;
        min-width: 180px;
    }
    
    .floating-language-dropdown::after {
        left: 15px;
    }
}

@media (max-width: 991px) {
    .floating-widgets-left {
        left: 1rem;
        bottom: 1rem;
    }
    
    .floating-widgets-left .floating-widget {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* AOS Overrides */
[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    
    .floating-widgets {
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-widget {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-search-container {
        max-width: 500px;
        padding: 0 1rem;
    }
    
    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding: 100px 1rem 60px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-search-container {
        max-width: 100%;
        margin: 1.5rem auto 0;
    }
    
    .hero-search {
        border-radius: 40px;
    }
    
    .hero-search input {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .hero-search button {
        padding: 0.9rem 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Mobile landscape */
@media (max-width: 576px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding: 90px 1rem 50px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-buttons {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .hero-search-container {
        margin-top: 1rem;
    }
    
    .hero-search input {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-search button {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices (very small phones) */
@media (max-width: 375px) {
    .hero-section {
        padding: 80px 0.75rem 40px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-hero {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .hero-search-container {
        margin-top: 0.8rem;
    }
    
    .hero-search input {
        padding: 0.7rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .hero-search button {
        padding: 0.7rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* Ultra small devices (320px and below) */
@media (max-width: 350px) {
    .hero-section {
        padding: 70px 0.5rem 30px;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    
    .btn-hero {
        padding: 0.65rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-search-container {
        margin-top: 0.6rem;
    }
    
    .hero-search {
        border-radius: 30px;
    }
    
    .hero-search input {
        padding: 0.65rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .hero-search button {
        padding: 0.65rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero-search button i {
        font-size: 0.9rem;
    }
}

/* Landscape mode optimization for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 80px 1rem 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .btn-hero {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-search-container {
        margin-top: 0.8rem;
    }
}

/* ================================================
   UTILITIES
   ================================================ */

.badge.bg-gradient {
    color: #ffffff !important;
}

[data-theme="red"] .badge.bg-gradient {
    color: #000000 !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.border-gradient {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Image Placeholder */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    color: var(--text-muted);
    font-size: 3rem;
    border-radius: inherit;
}

.card-img-top.error {
    display: none;
}

.card-img-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    color: var(--text-muted);
    font-size: 3rem;
    border-radius: 15px 15px 0 0;
}

