/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animasyonlu Arka Plan */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    will-change: transform;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 70%;
    animation-delay: -15s;
    animation-duration: 35s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 5%;
    animation-delay: -20s;
    animation-duration: 28s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    animation-delay: -25s;
    animation-duration: 32s;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 15s infinite ease-in-out;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2) 0%, rgba(255, 165, 0, 0.05) 50%, transparent 100%);
    top: 60%;
    left: 70%;
    animation-delay: -7s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.08) 50%, transparent 100%);
    top: 40%;
    left: 10%;
    animation-delay: -14s;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat 12s infinite linear;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 50%;
    left: 10%;
    animation-delay: -4s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 90%;
    animation-delay: -6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    top: 20%;
    left: 60%;
    animation-delay: -8s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.particle:nth-child(7) {
    top: 40%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    top: 60%;
    left: 30%;
    animation-delay: -14s;
    animation-duration: 17s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #1a1a1a;
    --accent-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-dark: #000000;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: transparent;
    min-height: 100vh;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
}

.brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand a:hover {
    opacity: 0.8;
}

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

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

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
}

.hero-inner {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.luxe-gradient {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.accent {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.primary {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.btn.primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn.ghost {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn.ghost:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

/* About Section */
.about {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-text {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stats-card {
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.stat {
    text-align: center;
    margin-bottom: 0;
    flex: 1;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat span {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Value Cards */
.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.9rem;
}


/* Gallery Section */
.gallery {
    background: transparent;
}

/* Brands Section */
.brands {
    background: transparent;
    padding: 4rem 0;
}

.brands h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}


.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-name {
    color: var(--primary-color);
    transform: scale(1.05);
}

.brand-image {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}


/* Responsive Brands */
@media (max-width: 768px) {
    .brands {
        padding: 3rem 0;
    }
    
    .brands h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .brand-item {
        padding: 1.5rem 0.5rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-image {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1rem 0.5rem;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
    
    .brand-image {
        max-height: 40px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: mainSimpleFadeIn 0.6s ease forwards;
}

/* Ana sayfa için sade tasarım - pseudo-elementleri kaldırıldı */

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
    border-radius: 10px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.gallery-item:hover img {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.02);
}

.gallery-cta {
    text-align: center;
}

.gallery-btn {
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: linear-gradient(45deg, #FFA500, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}



/* Sabit Instagram Butonu */
.fixed-instagram-button {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 1000;
    animation: pulse-instagram 2s infinite;
    filter: drop-shadow(0 4px 20px rgba(225, 48, 108, 0.6));
}

/* Sabit WhatsApp Butonu */
.fixed-whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
    filter: drop-shadow(0 4px 20px rgba(37, 211, 102, 0.6));
}


.instagram-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.call-now-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.call-now-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.instagram-btn:focus {
    outline: none;
}

.instagram-btn:active {
    transform: translateY(0);
}

.whatsapp-btn:focus {
    outline: none;
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.call-now-btn:focus {
    outline: none;
}

.call-now-btn:active {
    transform: translateY(0);
}

.instagram-icon {
    color: white;
    flex-shrink: 0;
}

.whatsapp-icon {
    color: white;
    flex-shrink: 0;
}

.phone-icon {
    color: white;
    flex-shrink: 0;
}


@keyframes pulse-instagram {
    0% {
        filter: drop-shadow(0 4px 20px rgba(225, 48, 108, 0.6));
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(225, 48, 108, 0.9));
    }
    100% {
        filter: drop-shadow(0 4px 20px rgba(225, 48, 108, 0.6));
    }
}

@keyframes pulse-whatsapp {
    0% {
        filter: drop-shadow(0 4px 20px rgba(37, 211, 102, 0.6));
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(37, 211, 102, 0.9));
    }
    100% {
        filter: drop-shadow(0 4px 20px rgba(37, 211, 102, 0.6));
    }
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(255, 215, 0, 0.9));
    }
    100% {
        filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.6));
    }
}

/* Ana Sayfa Galeri - Sade Animasyonlar */
@keyframes mainSimpleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ana sayfa için sade tasarım - karmaşık animasyonlar kaldırıldı */


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

.card {
    background: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}





/* Footer */
.site-footer {
    background: #000000;
    padding: 3rem 0 1rem;
}

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

.bf-col h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bf-col ul {
    list-style: none;
}

.bf-col ul li {
    margin-bottom: 0.5rem;
}

.bf-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bf-col a:hover {
    color: var(--primary-color);
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateX(5px);
}

.social-btn i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: transparent;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: transparent;
}

.no-social {
    color: var(--text-light);
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Social Media */
@media (max-width: 768px) {
    .social-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .social-btn span {
        display: none;
    }
    
    .social-btn i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        min-width: auto;
        justify-content: flex-start;
    }
    
    .social-btn span {
        display: block;
    }
}


.legal {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-light);
    opacity: 0.7;
}

.legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-login {
    background: var(--glass-bg);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.admin-login:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Dividers */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 2rem 0;
}

.divider.top {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .brand-logo {
        height: 38px !important;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .accent {
        font-size: 1.8rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        animation-duration: 0.4s; /* Mobilde daha hızlı animasyon */
        border-radius: 15px;
    }
    
    .gallery-item::before {
        border-radius: 17px;
    }
    
    .gallery-item::after {
        border-radius: 13px;
    }
    
    .gallery-item img {
        border-radius: 12px;
    }
    
    .gallery-item:hover {
        transform: translateY(-4px) scale(1.02) rotateX(2deg);
    }
    
    
    .legal-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-logo {
        height: 32px !important;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .accent {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        border-radius: 12px;
        animation-duration: 0.3s; /* Çok küçük ekranlarda daha hızlı */
    }
    
    .gallery-item::before {
        border-radius: 14px;
    }
    
    .gallery-item::after {
        border-radius: 10px;
    }
    
    .gallery-item img {
        height: 150px;
        border-radius: 10px;
    }
    
    .gallery-item:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    
    .instagram-symbol {
        font-size: 1.2rem;
    }
    
    
    /* Sabit butonlar mobil */
    .fixed-instagram-button {
        bottom: 75px;
        left: 15px;
    }
    
    .fixed-whatsapp-button {
        bottom: 15px;
        left: 15px;
    }
    
    .instagram-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Animasyonlu arka plan mobil optimizasyonu */
    .animated-background {
        animation: none;
    }
    
    .shape {
        animation-duration: 40s;
        animation-play-state: paused;
    }
    
    .orb {
        animation-duration: 25s;
        animation-play-state: paused;
    }
    
    .particle {
        animation-duration: 20s;
        animation-play-state: paused;
    }
    
    /* Mobilde animasyonları sadece hover'da çalıştır */
    .animated-background:hover .shape,
    .animated-background:hover .orb,
    .animated-background:hover .particle {
        animation-play-state: running;
    }
    
    .panel-text h3 {
        font-size: 1rem;
    }
    
    .panel-text p {
        font-size: 0.8rem;
    }
    
    
    
}
