/* ============================================
   NORTH M.I.C.E - WORLD CLASS STYLES
   ============================================ */

:root {
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --gold-dark: #a08540;
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.8);
    --white-muted: rgba(255, 255, 255, 0.5);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(201, 169, 98, 0.1);
    z-index: 10001;
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Language Modal */
.lang-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    transition: opacity 0.5s, visibility 0.5s;
}

.lang-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.lang-modal-content {
    text-align: center;
    padding: 3rem;
}

.lang-logo {
    width: 200px;
    margin: 0 auto 3rem;
}

.lang-logo img {
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(201, 169, 98, 0.4));
}

.lang-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.lang-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.lang-btn {
    padding: 1.5rem 3rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

.lang-flag {
    font-size: 2.5rem;
}

.lang-name {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 150px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 98, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gold);
    width: 0;
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(-20px);
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
}

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

.nav-logo {
    width: 100px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 100%;
    height: auto;
    display: block;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switcher:hover {
    border-color: var(--gold);
}

.lang-switcher svg {
    width: 12px;
    height: 12px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--black-light);
    border: 1px solid rgba(201, 169, 98, 0.2);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

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

.lang-dropdown button {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.8rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.lang-dropdown button:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--gold);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    margin-top: -5vh;
}

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

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.1;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
}

.hero-line-1 { animation: fadeUp 1s 0.3s forwards; }
.hero-line-2 { animation: fadeUp 1s 0.5s forwards; }

.title-line.accent {
    color: var(--gold);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--white-dim);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s 0.9s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta {
    opacity: 0;
    animation: fadeIn 1s 1.1s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.3s;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--black);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 0.85rem;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.3s forwards;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 98, 0.3);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gold);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Section Styles */
.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.section-line::before { left: -3px; }
.section-line::after { right: -3px; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-line {
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 10rem 0;
    background: var(--black);
}

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

.about-left .section-label,
.about-left .section-title,
.about-left .section-line {
    text-align: left;
    margin-left: 0;
}

.about-text {
    font-size: 1.1rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-top: 2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.3s;
}

.about-stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.about-stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.about-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: 10rem 0;
    background: var(--black-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 3rem;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.service-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.service-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Details - Yeni eklenen */
.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--white-muted);
}

.detail-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Why Us Section */
.why-us {
    padding: 10rem 0;
    background: var(--black);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-us-card {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.3s;
}

.why-us-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.why-us-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-us-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-us-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 10rem 0;
    background: var(--black-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 2rem;
    height: 1px;
    background: rgba(201, 169, 98, 0.2);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.process-step:hover .step-number {
    color: var(--gold);
}

.step-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-left .section-label,
.contact-left .section-title,
.contact-left .section-line {
    text-align: left;
    margin-left: 0;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--gold);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.contact-text a,
.contact-text p {
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--gold);
}

/* Social Links - Yeni eklenen */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--gold);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--black-light);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    width: 120px;
}

.footer-logo img {
    width: 100%;
    opacity: 0.7;
}

.footer-text p {
    font-size: 0.8rem;
    color: var(--white-muted);
}

.footer-tagline {
    font-size: 0.7rem !important;
    letter-spacing: 0.2em;
    color: var(--gold) !important;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        display: none;
    }
    
    .lang-buttons {
        flex-direction: column;
    }
}
