/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations for animations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Video optimization */
video {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    object-fit: cover;
}

/* Optimize animations for better performance */
.gallery-item,
.service-card,
.branch-card,
.hero,
.navbar {
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Gallery item optimization */
.gallery-item img,
.gallery-item video {
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* Video background optimization */
.video-background video {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Lazy loading placeholder */
.gallery-item.placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* New Branch Popup Styles */
.new-branch-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2147483647 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.new-branch-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-backdrop {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(5px);
    z-index: 2147483646 !important;
}

.popup-content {
    position: relative !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    border: 2px solid #ffd700 !important;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 2147483647 !important;
    margin: auto !important;
}

.new-branch-popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 215, 0, 0.2) !important;
    border: 2px solid #ffd700 !important;
    color: #ffd700 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2147483647 !important;
}

.popup-close:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.1);
}

.popup-body {
    padding: 30px 25px 25px;
    text-align: center;
}

.popup-header {
    margin-bottom: 20px;
}

.popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.popup-subtitle {
    font-size: 26px;
    font-weight: 800;
    color: #ffd700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.brand-name {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-slogan {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-message {
    margin-bottom: 20px;
    line-height: 1.4;
}

.popup-message p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 8px;
}

.highlight-text {
    color: #ffd700 !important;
    font-weight: 700;
    font-size: 16px;
}

.popup-campaign {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.campaign-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.campaign-offer {
    color: #ffd700;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.instagram-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.instagram-btn i {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.contact-label {
    color: #ffd700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: block;
    width: 100%;
    text-align: center;
}

.contact-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-width: none;
        max-height: 95vh;
    }
    
    .popup-body {
        padding: 40px 25px 25px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-subtitle {
        font-size: 28px;
    }
    
    .brand-name {
        font-size: 32px;
    }
    
    .brand-slogan {
        font-size: 24px;
    }
    
    .campaign-offer {
        font-size: 22px;
    }
    
    .popup-contact {
        flex-direction: column;
        gap: 15px;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    /* Performance optimizations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: scroll-position;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Performance optimizations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style paint;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    body {
        overflow-x: visible;
        word-wrap: normal;
        overflow-wrap: normal;
    }
    
    * {
        max-width: none;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    body {
        font-size: 13px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow-x: hidden;
}

/* Hide content initially */
body:not(.loaded) .navbar,
body:not(.loaded) .hero,
body:not(.loaded) section {
    opacity: 0;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2147483647; /* ensure always on top */
    font-family: 'Poppins', sans-serif;
    pointer-events: auto;
}

/* Avoid overlapping the mobile hamburger menu */
@media (max-width: 768px) {
    .language-switcher {
        right: auto;
        left: 20px;
        top: 90px; /* below the navbar (80px) */
    }
}

.lang-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.lang-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.lang-btn i {
    font-size: 12px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    display: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 2147483647; /* above all */
}

.language-switcher.active .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lang-option:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.lang-option .flag {
    font-size: 16px;
}

/* Welcome Screen */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.welcome-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.welcome-container {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.welcome-logo {
    margin-bottom: 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.logo-circle i {
    font-size: 3rem;
    color: #000000;
    z-index: 2;
    animation: bounce 1.5s ease-in-out infinite;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.welcome-title span {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.welcome-text {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: fadeInOut 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Welcome Animations */

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Enhanced Scroll Animations */
.animate-in {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-stagger {
    animation: staggerIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.animate-glow {
    animation: headerGlow 1s ease-in-out;
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes staggerIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes headerGlow {
    0% {
        text-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scroll-based section effects */
section {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section:hover {
    transform: scale(1.01);
}

/* Enhanced card animations on scroll */
.service-card,
.branch-card,
.gallery-item {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.branch-card:hover,
.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    .container {
        padding: 0 20px;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    p {
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.4;
    }
    
    p {
        line-height: 1.8;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.nav-logo span {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}


.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    .hero {
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Hero video specific styles */
#hero-video {
    opacity: 0 !important;
    transition: opacity 0.8s ease !important;
    will-change: opacity;
    transform: translateZ(0);
}

#hero-video[data-loaded="true"] {
    opacity: 1 !important;
}

/* Video performance optimization */
.video-background {
    will-change: transform;
    transform: translateZ(0);
}

.video-background video {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Video Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-loading {
    display: none;
}

.video-loading p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.4) 0%, 
        rgba(26, 26, 26, 0.3) 50%, 
        rgba(15, 15, 15, 0.4) 100%);
    z-index: 2;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* ===== HERO SECTION - MASAÜSTÜ STİLLERİ ===== */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 3;
}

.hero-text {
    animation: fadeInLeft 1s ease 0.5s both;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease 1s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    animation: fadeInUp 1s ease 1.5s both;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 2s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 1s both;
    padding: 20px;
    margin: 20px;
}

.hero-graphic {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    overflow: visible;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.hero-graphic i {
    font-size: 4.5rem;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: bounce 2s ease-in-out infinite;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero-motto {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 2.5s both;
}

.motto-text {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-text {
    animation: fadeInLeft 1s ease 0.5s both;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.gym-text {
    color: #ffffff;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.labs-text {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease 1s both;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    .hero-subtitle {
        word-wrap: normal;
        overflow-wrap: normal;
        font-size: 1.5rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}

@media (max-width: 360px) {
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    animation: fadeInUp 1s ease 1.5s both;
    line-height: 1.6;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    .hero-description {
        word-wrap: normal;
        overflow-wrap: normal;
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 360px) {
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.9;
        margin-bottom: 1rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 2s both;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        max-width: 280px;
        padding: 12px 20px;
    }
}

@media (max-width: 360px) {
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        max-width: 250px;
        padding: 10px 18px;
        font-size: 13px;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 1s both;
}

@media (max-width: 768px) {
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .hero-graphic {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 360px) {
    .hero-graphic {
        width: 180px;
        height: 180px;
    }
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-graphic i {
    font-size: 8rem;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

.hero-motto {
    text-align: center;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 2.5s both;
}

.hero-motto .motto-text {
    transition: all 0.3s ease;
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    .hero-motto {
        overflow: visible;
        word-wrap: normal;
    }
}

@media (max-width: 768px) {
    .hero-motto {
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-motto {
        margin-top: 1.5rem;
        padding: 0 0.8rem;
    }
}

.motto-text {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Masaüstü için özel stiller */
@media (min-width: 769px) {
    .motto-text {
        word-wrap: normal;
        overflow-wrap: normal;
        hyphens: none;
        font-size: 1.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .motto-text {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .motto-text {
        font-size: 1.3rem;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .motto-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease both;
}

.section-header h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.feature i {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 700px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

.image-placeholder i {
    font-size: 5rem;
    color: #ffd700;
    z-index: 2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    filter: brightness(0.95) contrast(1.05) saturate(1.05);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: fadeIn 1s ease-in-out;
    transform: translateY(0) !important;
    transition: none !important;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    min-height: 400px;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

.service-icon i {
    font-size: 2rem;
    color: #000000;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.gallery-item:hover .gallery-placeholder::before {
    left: 100%;
}

.gallery-placeholder i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    z-index: 2;
}

.gallery-placeholder p {
    color: #ffffff;
    font-weight: 600;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.contact-details h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: #cccccc;
    margin-bottom: 0;
}

.branches {
    margin-top: 1rem;
}

.branch {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.branch:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.branch h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.branch p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-branches p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-branches strong {
    color: #ffd700;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ffed4e;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Email link styling */
.contact-details a[href^="mailto:"] {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a[href^="mailto:"]:hover {
    color: #ffed4e;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: translateY(-1px);
}


/* Address links styling */
.branch-address a,
.contact-details a,
.footer-branch-info a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.branch-address a:hover,
.contact-details a:hover,
.footer-branch-info a:hover {
    color: #ffed4e;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: translateY(-1px);
}

.branch-address a i,
.contact-details a i,
.footer-branch-info a i {
    font-size: 0.9em;
    color: #ffa500;
}

/* Working Hours Grid - Small horizontal layout */
.working-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.working-hours-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 180px;
}

.working-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.working-hours-card:hover::before {
    left: 100%;
}

.working-hours-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.working-hours-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.working-hours-icon i {
    font-size: 1rem;
    color: #000000;
    z-index: 2;
}

.working-hours-card h4 {
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    flex-shrink: 0;
}

.hours-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    flex: 1;
    justify-content: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hours-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.hours-item .day {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.2;
}

.hours-item .time {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Responsive for working hours - Small horizontal */
@media (max-width: 768px) {
    .working-hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .working-hours-card {
        padding: 12px;
        height: 160px;
    }
    
    .working-hours-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .working-hours-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 6px;
    }
    
    .working-hours-icon i {
        font-size: 0.9rem;
    }
    
    .hours-item {
        padding: 3px 6px;
    }
    
    .hours-item .day,
    .hours-item .time {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .working-hours-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .working-hours-card {
        padding: 10px;
        height: 140px;
    }
    
    .working-hours-card h4 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .working-hours-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 4px;
    }
    
    .working-hours-icon i {
        font-size: 0.8rem;
    }
    
    .hours-item {
        padding: 2px 4px;
    }
    
    .hours-item .day,
    .hours-item .time {
        font-size: 0.65rem;
    }
}

.contact-form {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.whatsapp-section {
    text-align: center;
    padding: 2rem;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

.whatsapp-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 2;
}

.whatsapp-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.whatsapp-section p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #ffffff;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Social Links in Footer */
.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.social-link-item span {
    font-size: 12px;
    color: #ffd700;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: #888888;
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.8rem;
        margin: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .gallery-item {
        margin: 0;
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .branch-card {
        padding: 2rem;
        margin: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-buttons .btn {
        margin: 0;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .branch-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .branch-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .branch-address {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .gallery-item {
        margin: 0 5px;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .section-header p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .service-card {
        padding: 1rem;
        margin: 0 5px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .branch-card {
        padding: 1rem;
        margin: 0 5px;
    }

    .branch-card h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .branch-address {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
        max-width: 250px;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }
}

/* Branches Section */
.branches {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.branches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.branch-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.branch-card:hover::before {
    left: 100%;
}

.branch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.branch-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.branch-image i {
    font-size: 3rem;
    color: #000000;
    z-index: 2;
}

.branch-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.branch-address {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.branch-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.branch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.branch-features span {
    background: rgba(255, 215, 0, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-features i {
    color: #ffd700;
    font-size: 0.8rem;
}

.branch-social {
    margin-top: 1.5rem;
    text-align: center;
}

.branch-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.branch-social a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.branch-social i {
    font-size: 1rem;
}

/* Contact Branches */
.contact-branches {
    margin-top: 1rem;
}

.contact-branch {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-branch:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

.contact-branch h4 {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-branch p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.contact-branch-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-branch-icon i {
    font-size: 1.2rem;
    color: #000000;
}

.contact-branch-info {
    flex: 1;
}

.contact-branch-info h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-branch-info p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Footer Branches */
.footer-branches {
    margin-bottom: 1rem;
}

.footer-branch {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-branch:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.footer-branch i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-branch span {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-branch-info {
    flex: 1;
}

.footer-branch-info strong {
    color: #ffd700;
    font-weight: 600;
}

/* Responsive for branches */
@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .branch-card {
        padding: 2rem;
    }
    
    .branch-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== HERO SECTION - MOBİL STİLLERİ ===== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
        text-align: center !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
    }
    
    .hero-text {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 5px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        margin: 0 !important;
    }
    
    .hero-image {
        max-width: 100% !important;
        overflow: hidden !important;
        order: -1 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-graphic {
        width: 180px !important;
        height: 180px !important;
    }
    
    .hero-graphic i {
        font-size: 3rem !important;
    }
    
    .hero-motto {
        margin-top: 1.5rem !important;
        padding: 0 10px !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
    }
    
    .motto-text {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        margin: 0 !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 0.5rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 1rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
}

/* Küçük Tablet (480px ve altı) */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 8px !important;
        gap: 1rem !important;
        margin: 0 !important;
    }
    
    .hero-text {
        padding: 0 3px !important;
        margin: 0 !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 0.5rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 0.8rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 1.2rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-graphic {
        width: 150px !important;
        height: 150px !important;
    }
    
    .hero-graphic i {
        font-size: 2.5rem !important;
    }
    
    .motto-text {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 !important;
        padding: 0 5px !important;
    }
    
    .hero-buttons .btn {
        max-width: 260px !important;
        padding: 10px 18px !important;
        font-size: 13px !important;
    }
    
    .hero-motto {
        margin-top: 1rem !important;
        padding: 0 8px !important;
    }
}

/* Mobil (360px ve altı) */
@media (max-width: 360px) {
    .hero-content {
        padding: 0 5px !important;
        gap: 0.8rem !important;
        margin: 0 !important;
    }
    
    .hero-text {
        padding: 0 2px !important;
        margin: 0 !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 0.4rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 0.6rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-description {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 0 1rem 0 !important;
        padding: 0 !important;
    }
    
    .hero-graphic {
        width: 130px !important;
        height: 130px !important;
    }
    
    .motto-text {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 !important;
        padding: 0 3px !important;
    }
    
    .hero-buttons .btn {
        max-width: 240px !important;
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    
    .hero-motto {
        margin-top: 0.8rem !important;
        padding: 0 5px !important;
    }
}

/* Section Highlight Effect */
.section-highlight {
    position: relative;
    animation: sectionGlow 2s ease-in-out;
}

@keyframes sectionGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}


/* ===== EK MOBİL GÜVENLİK ÖNLEMLERİ ===== */
@media (max-width: 768px) {
    /* Tüm hero elementleri için kesin sığma garantisi */
    .hero * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    /* Metin elementleri için kesin sığma */
    .hero h1, .hero h2, .hero h3, .hero p, .hero span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Container overflow kontrolü */
    .hero .container {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ===== ABOUT SECTION - MOBİL STİLLERİ ===== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .about-text {
        max-width: 100% !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .about-text h3 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 1.5rem !important;
    }
    
    .about-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    .features {
        gap: 0.8rem !important;
    }
    
    .feature {
        padding: 0.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .feature span {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .about-image {
        order: -1 !important;
        margin-bottom: 1rem !important;
    }
    
    .image-placeholder {
        width: 280px !important;
        height: 450px !important;
        max-width: 90vw !important;
    }
    
    .about-video {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Küçük Tablet (480px ve altı) */
@media (max-width: 480px) {
    .about-content {
        padding: 0 0.8rem !important;
        gap: 1.5rem !important;
    }
    
    .about-text h3 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .about-text p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .feature span {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    .image-placeholder {
        width: 220px !important;
        height: 350px !important;
        max-width: 85vw !important;
    }
    
    .about-video {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Mobil (360px ve altı) */
@media (max-width: 360px) {
    .about-content {
        padding: 0 0.5rem !important;
        gap: 1rem !important;
    }
    
    .about-text h3 {
        font-size: 1.6rem !important;
        line-height: 1.4 !important;
    }
    
    .about-text p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .feature span {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .image-placeholder {
        width: 180px !important;
        height: 280px !important;
        max-width: 80vw !important;
    }
    
    .about-video {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* ===== SECTION HEADER - MOBİL STİLLERİ ===== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .section-header {
        padding: 0 1rem !important;
        margin-bottom: 3rem !important;
    }
    
    .section-header h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
}

/* Küçük Tablet (480px ve altı) */
@media (max-width: 480px) {
    .section-header {
        padding: 0 0.8rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

/* Mobil (360px ve altı) */
@media (max-width: 360px) {
    .section-header {
        padding: 0 0.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
    }
    
    .section-header p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
}

/* ===== ABOUT SECTION - EK GÜVENLİK ÖNLEMLERİ ===== */
@media (max-width: 768px) {
    /* Tüm about elementleri için kesin sığma garantisi */
    .about * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    /* About metin elementleri için kesin sığma */
    .about h2, .about h3, .about p, .about span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* About container overflow kontrolü */
    .about .container {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* About content overflow kontrolü */
    .about-content {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* About text overflow kontrolü */
    .about-text {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ===== HERO MOTTO - MOBİL STİLLERİ ===== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .hero-motto {
        text-align: center !important;
        margin-top: 1.5rem !important;
        padding: 0 1rem !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .motto-text {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
}

/* Küçük Tablet (480px ve altı) */
@media (max-width: 480px) {
    .hero-motto {
        margin-top: 1.2rem !important;
        padding: 0 0.8rem !important;
    }
    
    .motto-text {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
    }
}

/* Mobil (360px ve altı) */
@media (max-width: 360px) {
    .hero-motto {
        margin-top: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    .motto-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 3px !important;
    }
}

/* ===== HERO MOTTO - EK GÜVENLİK ÖNLEMLERİ ===== */
@media (max-width: 768px) {
    /* Hero motto için kesin sığma garantisi */
    .hero-motto * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    /* Motto text için kesin sığma */
    .motto-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: normal !important;
    }
    
    /* Hero motto container overflow kontrolü */
    .hero-motto {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
    }
    
    /* Hero motto için ek güvenlik */
    .hero-motto::before,
    .hero-motto::after {
        content: none !important;
        display: none !important;
    }
}

/* ===== HERO SECTION - GENEL MOBİL GÜVENLİK ===== */
@media (max-width: 768px) {
    /* Tüm hero section için kesin sığma garantisi */
    .hero {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 3rem 0 !important;
    }
    
    /* Hero container için kesin sığma */
    .hero .container {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Hero content için daha fazla padding */
    .hero-content {
        padding: 60px 20px !important;
        margin-top: 2rem !important;
    }
    
    /* Hero text için daha fazla margin */
    .hero-text {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Hero image için daha fazla margin */
    .hero-image {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Hero graphic için küçük boyut */
    .hero-graphic {
        width: 200px !important;
        height: 200px !important;
    }
    
    .hero-graphic i {
        font-size: 3.5rem !important;
    }
    
    /* Hero video background overflow kontrolü */
    .hero .video-background {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Hero overlay overflow kontrolü */
    .hero .video-overlay {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Hero before pseudo-element overflow kontrolü */
    .hero::before {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Video Gallery Styles */
.video-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1a1a1a;
}

.video-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-gallery-item:hover video {
    transform: scale(1.05);
}

/* Video Gallery Responsive */
@media (max-width: 768px) {
    .video-gallery {
        padding: 60px 0;
    }
    
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .video-gallery-item video {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .video-gallery-item video {
        height: 180px;
    }
}

/* Compact Gallery Styles */
.gallery-grid.compact-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.gallery-item.compact-item {
    position: relative !important;
    aspect-ratio: 1 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background: #1a1a1a !important;
    height: auto !important;
    margin: 0 !important;
    content-visibility: auto;
    contain-intrinsic-size: 200px;
}

/* Lightweight placeholder tiles */
.gallery-item.compact-item.placeholder {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), rgba(255, 215, 0, 0.03)) !important;
    border: 1px dashed rgba(255, 215, 0, 0.2) !important;
}

.compact-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.gallery-item.compact-item img,
.gallery-item.compact-item video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

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

.gallery-overlay i {
    font-size: 24px;
    color: #ffa500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-item .gallery-overlay i {
    font-size: 28px;
}

.gallery-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    color: #000;
}

.btn-gallery i {
    font-size: 18px;
}

/* Compact Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid.compact-gallery {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
        gap: 12px !important;
    }
    
    .gallery-overlay i {
        font-size: 20px;
    }
    
    .video-item .gallery-overlay i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-grid.compact-gallery {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) !important;
        gap: 10px !important;
    }
    
    .gallery-overlay i {
        font-size: 18px;
    }
    
    .video-item .gallery-overlay i {
        font-size: 20px;
    }
    
    .btn-gallery {
        padding: 12px 24px;
        font-size: 14px;
    }
}



/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2147483646;
}

.lightbox.open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 95vw;
    height: 100%;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
}
