:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --primary: #cba153; /* Premium Altın/Bronz */
    --primary-hover: #b58d42;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    padding: 15px 0;
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Logo ve menü arasında esnek boşluk */
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0; /* Logo küçülmesin */
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(203, 161, 83, 0.5);
}

.logo span {
    color: var(--primary);
    position: relative;
}

.menu {
    display: flex;
    gap: 35px; /* Menü öğeleri arası boşluk */
    align-items: center;
    flex-wrap: nowrap; /* Menü sarmalanmasın */
}

.menu a:not(.btn-primary) {
    position: relative;
    font-size: 14px; /* Font boyutunu biraz küçülttüm */
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap; /* Metin kırılmasın */
}

/* Animated underline effect */
.menu a:not(.btn-primary)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.4s ease;
}

.menu a:not(.btn-primary):hover::before {
    width: 100%;
}

.menu a:not(.btn-primary):hover {
    color: var(--primary);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(203, 161, 83, 0.3);
}

/* Active page indicator */
.menu a:not(.btn-primary).active {
    color: var(--primary);
}

.menu a:not(.btn-primary).active::before {
    width: 100%;
}

.lang-switcher a {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.lang-switcher a:hover {
    opacity: 1;
    background: rgba(203, 161, 83, 0.1);
    transform: translateY(-2px);
}

.lang-switcher a.active {
    opacity: 1;
    color: var(--primary);
    font-weight: bold;
    background: rgba(203, 161, 83, 0.15);
    box-shadow: 0 0 15px rgba(203, 161, 83, 0.2);
}

/* Desktop'ta dil seçici sağda */
@media (min-width: 901px) {
    .lang-switcher {
        display: flex;
        gap: 10px;
        margin-left: auto;
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--bg-darker);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(203, 161, 83, 0.3);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 161, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Navbar ile arasında boşluk */
    /* Unsplash'ten premium lüks banyo/fayans arka planı */
    background: url('https://images.unsplash.com/photo-1620626011761-996317b8d101?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

.badge {
    background: rgba(203, 161, 83, 0.15);
    color: var(--primary);
    border: 1px solid rgba(203, 161, 83, 0.3);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: inline-block;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Grid & Sections */
.section-padding {
    padding: 120px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.dark-bg {
    background-color: var(--bg-darker);
}

/* Glass Component */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.service-card {
    transition: all 0.4s ease;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 83, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.highlight {
    border-color: rgba(203, 161, 83, 0.3);
    background: linear-gradient(135deg, rgba(203,161,83,0.05), transparent);
}

.image-placeholder {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    border-radius: 20px;
    text-align: center;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 50px; }
.mb-4 h2 { font-size: 42px; }

footer {
    padding: 60px 0 30px;
    background: #050505;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}
.footer-logo span {
    color: var(--primary);
}

footer p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

/* Responsive */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 48px; }
    .hero .subtitle { font-size: 18px; }
    /* Mobile menu is handled in the MOBILE MENU section below */
}


/* Page Header */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(203,161,83,0.05), transparent);
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-header .subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-detail-section .about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
}

.priority-box ul li {
    border-bottom: 1px solid var(--glass-border);
}

.priority-box ul li:last-child {
    border-bottom: none;
}

.cta-section h2 {
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Page */
.services-detail-section .service-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.services-detail-section .service-item:last-child {
    border-bottom: none;
}

.services-detail-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.services-detail-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.highlight-service {
    background: linear-gradient(135deg, rgba(203,161,83,0.03), transparent);
    padding: 40px;
    border-radius: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Contact Page */
.contact-form-wrapper, .contact-info-wrapper {
    width: 100%;
}

.contact-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-info {
    padding: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.info-item p {
    color: var(--text-muted);
}

.social-icon {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    color: #25D366;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Projects Page */
.coming-soon {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Updates */
@media (max-width: 900px) {
    .page-header h1 { font-size: 38px; }
    .page-header .subtitle { font-size: 16px; }
    .grid-3 { grid-template-columns: 1fr; }
    .service-icon { height: 150px; }
    .contact-form, .contact-info { padding: 30px; }
}


/* ============================================
   MODERN ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?q=80&w=2070') center/cover;
    background-attachment: fixed;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.badge-large {
    display: inline-block;
    background: rgba(203, 161, 83, 0.15);
    color: var(--primary);
    border: 2px solid rgba(203, 161, 83, 0.4);
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: 68px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* About Main Grid */
.about-main {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sidebar - Master Card */
.about-sidebar {
    position: sticky;
    top: 120px;
}

.master-card {
    padding: 40px;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.master-image {
    margin-bottom: 25px;
}

.image-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(203,161,83,0.1), transparent);
    border: 3px solid rgba(203,161,83,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.master-card:hover .image-frame {
    transform: scale(1.05);
    border-color: var(--primary);
}

.master-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.master-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Main */
.about-content-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.content-block {
    animation: fadeInUp 0.8s ease forwards;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(203, 161, 83, 0.1);
    border: 1px solid rgba(203, 161, 83, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.badge-icon {
    font-size: 20px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.body-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.expertise-item {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.expertise-item:hover {
    transform: translateX(10px);
    border-color: rgba(203, 161, 83, 0.5);
    background: rgba(203, 161, 83, 0.05);
}

.check-icon {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Additional Services Tags */
.additional-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(203, 161, 83, 0.1);
    border-color: rgba(203, 161, 83, 0.4);
    transform: translateY(-3px);
}

/* Specialty Box */
.specialty-box {
    padding: 35px;
    background: linear-gradient(135deg, rgba(203,161,83,0.08), transparent);
    border: 2px solid rgba(203, 161, 83, 0.3);
    display: flex;
    align-items: center;
    gap: 25px;
}

.specialty-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.specialty-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Priorities List */
.priorities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.priority-item:hover {
    background: rgba(203, 161, 83, 0.08);
    transform: translateX(10px);
}

.priority-number {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.priority-text {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

/* Closing Statement */
.closing-statement {
    padding: 40px;
    background: linear-gradient(135deg, rgba(203,161,83,0.1), transparent);
    border: 2px solid rgba(203, 161, 83, 0.3);
    text-align: center;
}

.closing-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* CTA Section Updates */
.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-sidebar {
        position: relative;
        top: 0;
    }
    
    .about-hero h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .about-main {
        margin-top: -40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .body-text {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
}


/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Updates */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        position: relative;
    }
    
    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        padding: 40px 20px;
    }
    
    .menu.active {
        transform: translateX(0);
    }
    
    .menu a {
        font-size: 24px;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .menu a.btn-primary {
        width: 100%;
        max-width: 300px;
        display: block;
        text-align: center;
    }
    
    /* Dil seçiciyi mobilde gizle, menü içine al */
    .lang-switcher {
        position: static;
        transform: none;
        display: flex;
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--glass-border);
    }
    
    .lang-switcher a {
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        font-size: 16px;
        min-width: 60px;
    }
    
    .lang-switcher a.active {
        background: var(--primary);
        color: #000;
        border-color: var(--primary);
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .menu a {
        font-size: 20px;
    }
}
