/* ============================================
   LUMIÈRE BEAUTY STUDIO - STYLES
   Siyah & Rose Gold Tema
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-black-lighter: #2d2d2d;
    --color-rose-gold: #b76e79;
    --color-rose-gold-light: #d4a5ac;
    --color-rose-gold-dark: #8f4f5a;
    --color-white: #ffffff;
    --color-gray-100: #f8f8f8;
    --color-gray-200: #e0e0e0;
    --color-gray-300: #b0b0b0;
    --color-gray-400: #808080;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(183, 110, 121, 0.3);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-subtitle {
    display: inline-block;
    color: var(--color-rose-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle.light {
    color: var(--color-rose-gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--color-rose-gold);
}

.section-title.light {
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-rose-gold), var(--color-rose-gold-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(183, 110, 121, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-rose-gold);
}

.btn-secondary:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.3rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--color-rose-gold), var(--color-rose-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-300);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-rose-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-rose-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-rose-gold);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    color: var(--color-rose-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(183, 110, 121, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(183, 110, 121, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--color-rose-gold);
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-gray-300);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(183, 110, 121, 0.2);
    filter: none;
}

.hero-decoration {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Stats Section */
.stats-section {
    background: var(--color-black-light);
    padding: 60px 0;
    border-top: 1px solid rgba(183, 110, 121, 0.1);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-rose-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-rose-gold), var(--color-rose-gold-dark));
    color: var(--color-white);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--color-gray-300);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--color-gray-200);
}

.about-features i {
    color: var(--color-rose-gold);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--color-black-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-black);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(183, 110, 121, 0.3);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(183, 110, 121, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    position: relative;
    z-index: 2;
    border: 2px solid var(--color-rose-gold);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--color-rose-gold);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.service-content p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-details-bottom {
    background: transparent;
    color: var(--color-rose-gold);
    border: 1px solid var(--color-rose-gold);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-details-bottom:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-details-bottom i {
    font-size: 0.8rem;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--color-black);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-us-card {
    background: var(--color-black-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.1);
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: rgba(183, 110, 121, 0.3);
    box-shadow: var(--shadow-gold);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: rgba(183, 110, 121, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid var(--color-rose-gold);
}

.why-us-icon i {
    font-size: 1.8rem;
    color: var(--color-rose-gold);
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.why-us-card p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--color-black-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--color-gray-300);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(183, 110, 121, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(183, 110, 121, 0.3);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-white);
}

.contact-item p {
    color: var(--color-gray-400);
    margin: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--color-rose-gold);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-rose-gold-light);
}

.contact-form-wrapper {
    background: var(--color-black);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(183, 110, 121, 0.2);
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-white);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-black-light);
    border: 1px solid rgba(183, 110, 121, 0.2);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b76e79' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(183, 110, 121, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-gray-400);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(183, 110, 121, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose-gold);
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.3);
}

.social-links a:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-rose-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(183, 110, 121, 0.1);
}

.footer-bottom p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
}

.phone-btn {
    background: var(--color-rose-gold);
}

.fixed-btn:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none;
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-black-light);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.3);
}

.fixed-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(183, 110, 121, 0); }
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation-name: pulse-whatsapp;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--color-black-light);
    border-radius: var(--border-radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(183, 110, 121, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(183, 110, 121, 0.1);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 50%;
    color: var(--color-rose-gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-info {
    padding: 40px;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.modal-info h3 {
    font-size: 1.2rem;
    color: var(--color-rose-gold);
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-info p {
    color: var(--color-gray-300);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-200);
    font-size: 0.95rem;
}

.modal-features i {
    color: var(--color-rose-gold);
}

.modal-price {
    background: rgba(183, 110, 121, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border: 1px solid rgba(183, 110, 121, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-price span {
    color: var(--color-gray-300);
}

.modal-price strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-rose-gold);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================================
   GALLERY PAGE STYLES - OPTİMİZE EDİLMİŞ
   ============================================ */

.gallery-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
}

.gallery-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.gallery-hero p {
    color: var(--color-gray-300);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.gallery-section {
    padding: 40px 0 80px;
    background: var(--color-black);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(183, 110, 121, 0.3);
    color: var(--color-gray-300);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-rose-gold);
    color: var(--color-white);
    border-color: var(--color-rose-gold);
}

/* GALERİ GRID - OPTİMİZE EDİLMİŞ BOYUTLAR */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    height: 200px;
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(183, 110, 121, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 15px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.gallery-info p {
    color: var(--color-rose-gold);
    font-size: 0.85rem;
}

.gallery-zoom {
    width: 44px;
    height: 44px;
    background: var(--color-rose-gold);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom:hover {
    transform: scale(1.1);
    background: var(--color-rose-gold-light);
}

/* Lightbox - OPTİMİZE EDİLMİŞ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: rgba(183, 110, 121, 0.2);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 50%;
    color: var(--color-rose-gold);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(183, 110, 121, 0.2);
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 50%;
    color: var(--color-rose-gold);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

.lightbox-caption {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.9);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.95rem;
    border: 1px solid rgba(183, 110, 121, 0.3);
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBİL DÜZENLEMELER
   ============================================ */

@media (max-width: 1024px) {
    .hero-image {
        width: 40%;
        opacity: 0.8;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Galeri Tablet */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 800px;
    }
    
    .gallery-item {
        height: 160px;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        overflow: hidden;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-top: 1px solid rgba(183, 110, 121, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: 20px;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(183, 110, 121, 0.1);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin-top: 40px;
        transform: none;
        top: auto;
        right: auto;
        opacity: 1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-badge {
        right: 10px;
        bottom: -10px;
        padding: 20px 25px;
    }
    
    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .fixed-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Galeri Mobil */
    .gallery-hero {
        padding: 120px 0 40px;
    }
    
    .gallery-hero h1 {
        font-size: 1.7rem;
    }
    
    .gallery-hero p {
        font-size: 0.9rem;
    }
    
    .gallery-section {
        padding: 30px 0 60px;
    }
    
    .gallery-filter {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .gallery-item {
        height: 140px;
    }
    
    .gallery-info h4 {
        font-size: 0.95rem;
    }
    
    .gallery-info p {
        font-size: 0.75rem;
    }
    
    .gallery-zoom {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    /* Lightbox Mobil */
    .lightbox {
        padding: 15px;
    }
    
    .lightbox img {
        max-width: 95%;
        max-height: 65vh;
    }
    
    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    
    .lightbox-caption {
        font-size: 0.85rem;
        padding: 10px 18px;
        bottom: 15px;
        max-width: 90%;
        white-space: normal;
        text-align: center;
        border-radius: 20px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .modal-info {
        padding: 25px;
    }
    
    .modal-info h2 {
        font-size: 1.5rem;
    }
    
    .modal-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .service-image {
        height: 200px;
    }
    
    /* Galeri Küçük Mobil */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 12px;
    }
    
    .gallery-item {
        height: 120px;
        border-radius: 8px;
    }
    
    .gallery-info h4 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .gallery-info p {
        font-size: 0.7rem;
    }
    
    .gallery-zoom {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        margin-top: 8px;
    }
    
    .gallery-filter {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-rose-gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-rose-gold);
}

/* Selection Color */
::selection {
    background: rgba(183, 110, 121, 0.3);
    color: var(--color-white);
}