/* Temel Ayarlar ve Modern Değişkenler */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-light: #121212;
    --bg-card: rgba(22, 22, 22, 0.6);
    --gold: #d4af37;
    --gold-bright: #f3e5ab;
    --gold-dark: #aa7c11;
    --gold-gradient: linear-gradient(135deg, #f5e4a9 0%, #d4af37 50%, #aa7c11 100%);
    --gold-glow: 0 0 25px rgba(212, 175, 55, 0.18);
    --text-light: #f7f7f7;
    --text-muted: #b0b0b0;
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(212, 175, 55, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 10px;
}

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

/* Floating Glass Navbar */
nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    z-index: 1000;
}

nav.scrolled {
    margin-top: 10px;
    padding: 12px 40px;
    background: rgba(10, 10, 10, 0.85);
    border-color: var(--border-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    user-select: none;
}

.logo span {
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone a {
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.nav-phone a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.45);
}

/* Mobil Hamburger Menü Butonu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(18, 18, 18, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%), 
                linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.85)),
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: 1;
    animation: heroPanZoom 20s infinite alternate ease-in-out;
}

@keyframes heroPanZoom {
    0% {
        transform: scale(1.03) translate(0, 0);
    }
    100% {
        transform: scale(1.10) translate(-0.5%, -0.5%);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    cursor: pointer;
    opacity: 0.65;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold-dark);
    border-radius: 12px;
    position: relative;
    display: block;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

.scroll-indicator .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    transform: rotate(45deg);
    animation: scrollArrow 1.8s infinite ease-in-out;
}

@keyframes scrollArrow {
    0%, 100% {
        transform: rotate(45deg) translate(-2px, -2px);
        opacity: 0.3;
    }
    50% {
        transform: rotate(45deg) translate(2px, 2px);
        opacity: 1;
    }
}

/* Premium Uyarı Şeridi */
.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-bright);
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 45px;
    letter-spacing: 0.8px;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.03);
    animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% {
        border-color: rgba(212, 175, 55, 0.25);
        box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.03);
    }
    50% {
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1), 0 0 10px rgba(212, 175, 55, 0.1);
    }
}

.btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--gold-glow);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-bright);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* Sections */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 24px;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 70px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

.owner-name {
    display: inline-block;
    font-size: 1.25rem;
    color: var(--gold-bright) !important;
    border-left: 2px solid var(--gold);
    padding: 5px 0 5px 20px;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-dark);
    border-radius: 12px;
    z-index: 1;
    transition: var(--transition-smooth);
}

.about-image img {
    position: relative;
    width: 100%;
    border-radius: 12px;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    filter: grayscale(15%);
}

.about-image:hover img {
    transform: translate(-10px, -10px);
    filter: grayscale(0%);
}

.about-image:hover::before {
    transform: translate(10px, 10px);
    border-color: var(--gold);
}

/* Services Grid (Yaptığımız İşler) */
.services-section {
    background: var(--bg-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

/* Glassmorphic Service Card */
.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.services-grid .service-card.show:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card.show:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card.show:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card.show:nth-child(4) { transition-delay: 0.2s; }
.services-grid .service-card.show:nth-child(5) { transition-delay: 0.05s; }
.services-grid .service-card.show:nth-child(6) { transition-delay: 0.1s; }
.services-grid .service-card.show:nth-child(7) { transition-delay: 0.15s; }
.services-grid .service-card.show:nth-child(8) { transition-delay: 0.2s; }
.services-grid .service-card.show:nth-child(9) { transition-delay: 0.05s; }
.services-grid .service-card.show:nth-child(10) { transition-delay: 0.1s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-card-img-wrapper {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-info {
    padding: 35px;
    position: relative;
    z-index: 3;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.service-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.service-info h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Card Hover States */
.service-card:hover {
    transform: translateY(-12px) rotateX(3deg) rotateY(2deg);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), var(--gold-glow), inset 0 0 15px rgba(212, 175, 55, 0.05);
    transition-delay: 0s !important;
}

.service-card:hover img {
    transform: scale(1.08) rotate(0.5deg);
}

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

.service-card:hover .service-info {
    background: rgba(22, 22, 22, 0.7);
}

/* Footer Section */
.footer {
    background: #050505;
    position: relative;
    padding: 100px 24px 40px;
    border-top: 1px solid var(--border-light);
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
}

.phone-huge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 3.6rem;
    font-weight: 700;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    text-decoration: none;
    margin: 40px 0;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.15));
}

.phone-huge:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.35));
}

.warning-text {
    color: #ef4444;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* Animasyonlar & Scroll Reveal */
.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(6, 6, 6, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.show-modal {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 950px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: -15px;
    right: 15px;
    color: var(--text-muted);
    font-size: 50px;
    font-weight: 200;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
    z-index: 2100;
    user-select: none;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 1px;
}

.modal-main-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 30px;
}

.modal-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    min-height: 350px;
    max-height: 550px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.modal-arrow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 3.5rem;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    user-select: none;
}

.modal-arrow:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.modal-thumbnails {
    display: flex;
    gap: 12px;
    margin: 25px 0 20px;
    overflow-x: auto;
    max-width: 100%;
    padding: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255,255,255,0.05);
}

.modal-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.modal-thumbnails::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.modal-thumbnails img {
    width: 85px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    opacity: 0.45;
}

.modal-thumbnails img.active,
.modal-thumbnails img:hover {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.05);
}

/* Premium Saydam Lightbox Banner'ı */
.modal-premium-banner {
    width: 100%;
    max-width: 780px;
    background: rgba(15, 15, 15, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 24px 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 15px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.modal-premium-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 0 0 5px 5px;
}

.modal-premium-banner p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #e8dfc9;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* ============================================================
   RESPONSIVE DESIGN (MOBİL UYUMLULUK VE PREMIUM EFEKTLER)
============================================================ */

@media(max-width: 1024px) {
    .hero-content h1 { font-size: 3.8rem; }
    .about-section .container { gap: 40px; }
    .section-title { font-size: 3rem; }
    .phone-huge { font-size: 3rem; }
}

@media(max-width: 768px) {
    /* Responsive Float Navbar */
    nav {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        padding: 14px 24px;
        border-radius: 30px;
    }
    
    nav.scrolled {
        padding: 10px 24px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    /* Mobil Yan Menü (Hamburger ile açılan Drawer) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.94);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 40px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -15px 0 40px rgba(0,0,0,0.8);
    }
    
    .nav-links a {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .nav-phone {
        display: none; /* Mobilde hamburger tuşu sığsın diye ana nav'da sakla */
    }
    
    /* Yan Menüye Mobilde Telefon Linkini Kopyalamak ya da Hamburgeri Göstermek */
    .menu-toggle {
        display: flex;
    }
    
    /* Hamburger Animasyonu (Morphing to X) */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold);
    }
    
    /* Hero */
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .warning-badge { font-size: 0.75rem; padding: 8px 18px; margin-bottom: 30px; }
    .btn-primary { padding: 14px 35px; font-size: 0.85rem; }
    
    /* About */
    .about-section .container { flex-direction: column; text-align: center; }
    .about-text h2 { font-size: 2.6rem; }
    .about-text p { font-size: 1.05rem; }
    .owner-name { border-left: none; border-bottom: 2px solid var(--gold); padding: 0 0 10px 0; }
    .about-image { max-width: 480px; width: 100%; margin: 20px auto 0; }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer h2 { font-size: 2.2rem; }
    .phone-huge { font-size: 2.2rem; margin: 25px 0; }
    .warning-text { font-size: 0.75rem; letter-spacing: 1.5px; }
    
    /* Lightbox Modal Mobil Optimizasyon */
    .modal {
        padding: 15px;
    }
    .modal-close {
        top: -30px;
        right: 5px;
        font-size: 40px;
    }
    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .modal-main-display {
        gap: 5px;
    }
    .modal-arrow {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    .modal-image-container {
        height: 45vh;
        min-height: 250px;
    }
    .modal-premium-banner {
        padding: 15px 20px;
        margin-top: 10px;
        border-radius: 12px;
    }
    .modal-premium-banner p {
        font-size: 0.95rem;
    }
    .modal-thumbnails {
        margin: 15px 0 10px;
        gap: 8px;
    }
    .modal-thumbnails img {
        width: 60px;
        height: 42px;
        border-radius: 4px;
    }
}

@media(max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .phone-huge { font-size: 1.75rem; }
    .section-title { font-size: 2.3rem; }
    .modal-image-container { height: 35vh; }
}