/* ===================== */
/* ===== MOAJZA - ULTRA PREMIUM MAIN CSS ===== */
/* ===================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,200;14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

/* ===================== */
/* ===== ROOT VARIABLES ===== */
/* ===================== */

:root {
    /* Light Mode Colors */
    --color-black: #0a0a0a;
    --color-black-soft: #141414;
    --color-white: #ffffff;
    --color-white-off: #fafafa;
    --color-gray-50: #f7f7f7;
    --color-gray-100: #efefef;
    --color-gray-200: #e0e0e0;
    --color-gray-300: #c0c0c0;
    --color-gray-400: #9a9a9a;
    --color-gray-500: #6a6a6a;
    --color-gray-600: #404040;
    --color-gray-700: #2a2a2a;
    --color-gray-800: #1a1a1a;
    --color-gray-900: #0f0f0f;
    --color-accent: #c8a97e;
    --color-accent-light: #e8d5b5;
    --color-accent-dark: #a88b62;
    --color-gold: #d4af37;
    --color-gold-light: #f5e6b8;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.1, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
    --transition-premium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 80px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(200, 169, 126, 0.15);
    --shadow-accent: 0 10px 40px rgba(200, 169, 126, 0.2);
}

/* ===================== */
/* ===== GLOBAL RESET ===== */
/* ===================== */

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-gray-200);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

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

::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* ===================== */
/* ===== PRELOADER ULTRA PREMIUM ===== */
/* ===================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
}

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

.preloader-logo-container {
    position: relative;
    margin-bottom: 40px;
}

.preloader-logo {
    width: 100px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: preloaderGlow 1.8s ease-in-out infinite;
}

.preloader-line-container {
    margin-top: 20px;
}

.preloader-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 0 auto;
    animation: preloaderLine 1.2s ease-in-out infinite;
}

.preloader-text {
    margin-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--color-gray-400);
    font-weight: 300;
    animation: preloaderFade 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes preloaderGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes preloaderLine {
    0%, 100% { width: 60px; opacity: 0.5; }
    50% { width: 120px; opacity: 1; }
}

@keyframes preloaderFade {
    0%, 100% { opacity: 0.4; letter-spacing: 4px; }
    50% { opacity: 1; letter-spacing: 6px; }
}

/* ===================== */
/* ===== CUSTOM CURSOR (Laptop Only) ===== */
/* ===================== */

@media (min-width: 1024px) {
    .cursor {
        width: 6px;
        height: 6px;
        background-color: var(--color-accent);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 10001;
        transition: transform 0.08s ease;
    }
    
    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 1.5px solid var(--color-accent);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 10000;
        transition: transform 0.2s ease, width 0.3s, height 0.3s;
        backdrop-filter: blur(2px);
    }
    
    .cursor-dot {
        width: 2px;
        height: 2px;
        background-color: var(--color-black);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 10002;
        transition: transform 0.05s ease;
    }
    
    .cursor.active {
        transform: scale(2);
        background-color: var(--color-accent-dark);
    }
    
    .cursor-follower.active {
        transform: scale(0.6);
        opacity: 0.6;
        border-color: var(--color-black);
    }
}

/* ===================== */
/* ===== LAPTOP STYLES (1024px+) ===== */
/* ===================== */

@media (min-width: 1024px) {
    
    /* Container */
    .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 80px;
    }
    
    /* Typography Premium */
    h1 {
        font-size: 5.5rem;
        font-weight: 500;
        letter-spacing: -2px;
        line-height: 1.08;
    }
    
    h2 {
        font-size: 3rem;
        font-weight: 500;
        letter-spacing: -1.5px;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: -0.3px;
    }
    
    /* Section Label Premium */
    .section-label {
        font-size: 0.7rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--color-accent);
        display: inline-block;
        margin-bottom: 20px;
        font-weight: 400;
    }
    
    .section-accent-line {
        width: 40px;
        height: 2px;
        background: var(--color-accent);
        margin-bottom: 20px;
    }
    
    .section-accent-line.center {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Buttons Premium */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 32px;
        background-color: var(--color-black);
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        transition: var(--transition-smooth);
        border: none;
        cursor: pointer;
        font-weight: 400;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .btn-primary:hover::before {
        left: 100%;
    }
    
    .btn-primary:hover {
        background-color: var(--color-accent);
        transform: translateY(-2px);
    }
    
    .btn-primary.large {
        padding: 18px 42px;
        font-size: 0.9rem;
        gap: 15px;
    }
    
    .btn-primary svg {
        transition: transform 0.3s ease;
    }
    
    .btn-primary:hover svg {
        transform: translateX(5px);
    }
    
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 32px;
        background-color: transparent;
        color: var(--color-black);
        text-decoration: none;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        border: 1px solid var(--color-gray-300);
        transition: var(--transition-smooth);
    }
    
    .btn-secondary:hover {
        background-color: var(--color-black);
        color: var(--color-white);
        border-color: var(--color-black);
        transform: translateY(-2px);
    }
    
    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 28px;
        background-color: transparent;
        color: var(--color-black);
        text-decoration: none;
        font-size: 0.75rem;
        letter-spacing: 2px;
        border: 1px solid var(--color-gray-300);
        transition: var(--transition-smooth);
    }
    
    .btn-outline:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
        transform: translateY(-2px);
    }
    
    .btn-outline svg {
        transition: transform 0.3s ease;
    }
    
    .btn-outline:hover svg {
        transform: translateX(5px);
    }
    
    /* ===== LAPTOP NAVBAR GLASSMORPHISM ===== */
    .nav-laptop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 24px 0;
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: var(--transition-smooth);
    }
    
    .nav-laptop.scrolled {
        padding: 16px 0;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-sm);
    }
    
    .nav-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }
    
    .nav-logo img {
        height: 38px;
        width: auto;
    }
    
    .nav-logo-text {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--color-black);
    }
    
    .nav-links {
        display: flex;
        gap: 56px;
    }
    
    .nav-link {
        text-decoration: none;
        color: var(--color-gray-600);
        font-size: 0.75rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        transition: var(--transition-smooth);
        position: relative;
        font-weight: 400;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 1.5px;
        background-color: var(--color-accent);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--color-black);
    }
    
    .nav-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--color-black);
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 10px 20px;
        border: 1px solid var(--color-gray-300);
        transition: var(--transition-smooth);
        background: transparent;
    }
    
    .nav-btn:hover {
        background-color: var(--color-black);
        color: var(--color-white);
        border-color: var(--color-black);
        transform: translateY(-2px);
    }
    
    .nav-btn svg {
        transition: transform 0.3s ease;
    }
    
    .nav-btn:hover svg {
        transform: translateX(4px);
    }
    
    .nav-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
        width: 0%;
        transition: width 0.1s ease;
    }
    
    /* ===== LAPTOP FOOTER PREMIUM ===== */
    .footer-laptop {
        background-color: var(--color-black-soft);
        padding: 80px 0 40px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .footer-logo {
        height: 35px;
        width: auto;
        filter: brightness(0) invert(1);
        margin-bottom: 20px;
        opacity: 0.9;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
        color: var(--color-accent);
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .footer-desc {
        font-size: 0.8rem;
        color: var(--color-gray-500);
        line-height: 1.6;
        max-width: 280px;
    }
    
    .footer-col h4 {
        color: var(--color-white);
        font-size: 0.7rem;
        letter-spacing: 2.5px;
        margin-bottom: 25px;
        font-weight: 500;
    }
    
    .footer-col a {
        display: block;
        color: var(--color-gray-500);
        text-decoration: none;
        font-size: 0.8rem;
        margin-bottom: 14px;
        transition: var(--transition-smooth);
    }
    
    .footer-col a:hover {
        color: var(--color-accent);
        transform: translateX(4px);
    }
    
    .footer-location {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        color: var(--color-gray-500);
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        color: var(--color-gray-600);
        letter-spacing: 0.5px;
    }
    
    .footer-credits span {
        font-size: 0.7rem;
        color: var(--color-gray-600);
        letter-spacing: 1px;
    }
    
    /* Contact Banner Premium */
    .contact-banner-laptop {
        padding: 120px 0;
        background-color: var(--color-gray-50);
        position: relative;
        overflow: hidden;
    }
    
    .banner-content {
        position: relative;
    }
    
    .banner-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(var(--color-gray-200) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.5;
        pointer-events: none;
    }
    
    .banner-inner {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .banner-tag {
        font-size: 0.7rem;
        letter-spacing: 4px;
        color: var(--color-accent);
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .banner-content h2 {
        margin-bottom: 20px;
    }
    
    .banner-content p {
        color: var(--color-gray-500);
        margin-bottom: 40px;
        font-size: 1rem;
    }
}

/* ===================== */
/* ===== MOBILE STYLES (767px-) ===== */
/* ===================== */

@media (max-width: 767px) {
    
    .container-mobile {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.6rem;
        letter-spacing: -0.3px;
    }
    
    .section-label-mobile {
        font-size: 0.6rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-accent);
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .btn-primary-mobile {
        display: inline-block;
        padding: 14px 28px;
        background-color: var(--color-black);
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        border: none;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    
    .btn-primary-mobile:hover {
        background-color: var(--color-accent);
    }
    
    /* ===== MOBILE NAVBAR ===== */
    .nav-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-mobile .nav-container {
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-mobile .nav-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }
    
    .nav-mobile .nav-logo img {
        height: 28px;
    }
    
    .nav-logo-text {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--color-black);
    }
    
    /* Hamburger Menu Premium */
    .menu-toggle {
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    
    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--color-black);
        transition: var(--transition-smooth);
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Menu Premium */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 999;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    .menu-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
    }
    
    .menu-inner {
        position: relative;
        z-index: 2;
        padding: 100px 24px 40px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--color-gray-200);
    }
    
    .menu-header span {
        font-size: 0.7rem;
        letter-spacing: 3px;
        color: var(--color-accent);
    }
    
    .menu-link {
        text-decoration: none;
        color: var(--color-black);
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: -0.5px;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-gray-100);
        transition: var(--transition-smooth);
    }
    
    .menu-link:hover,
    .menu-link.active {
        color: var(--color-accent);
        padding-left: 10px;
    }
    
    .menu-footer {
        margin-top: auto;
        padding-top: 40px;
    }
    
    .menu-footer a {
        color: var(--color-gray-500);
        text-decoration: none;
        font-size: 0.8rem;
        display: block;
        margin-bottom: 12px;
    }
    
    .menu-social {
        display: flex;
        gap: 24px;
        margin-top: 20px;
    }
    
    .menu-social a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    /* ===== MOBILE FOOTER ===== */
    .footer-mobile {
        background-color: var(--color-black-soft);
        padding: 50px 24px 40px;
        text-align: center;
    }
    
    .footer-logo-mobile {
        height: 28px;
        width: auto;
        filter: brightness(0) invert(1);
        margin-bottom: 25px;
    }
    
    .footer-links-mobile {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-links-mobile a {
        color: var(--color-gray-400);
        text-decoration: none;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .footer-social-mobile {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    
    .footer-social-mobile a {
        color: var(--color-gray-400);
        text-decoration: none;
        font-size: 0.7rem;
        letter-spacing: 1px;
        transition: var(--transition-fast);
    }
    
    .footer-social-mobile a:hover {
        color: var(--color-accent);
    }
    
    .footer-copyright-mobile {
        font-size: 0.6rem;
        color: var(--color-gray-600);
    }
}

/* ===================== */
/* ===== TABLET STYLES (768px - 1023px) ===== */
/* ===================== */

@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-wrap {
        display: none !important;
    }
    
    .laptop-wrap {
        display: block !important;
    }
    
    .container {
        padding: 0 40px;
    }
    
    .nav-container {
        padding: 0 40px;
    }
    
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

/* ===================== */
/* ===== HIDE/SHOW CONTROLS ===== */
/* ===================== */

@media (min-width: 1024px) {
    .mobile-wrap {
        display: none !important;
    }
    .laptop-wrap {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .laptop-wrap {
        display: none !important;
    }
    .mobile-wrap {
        display: block !important;
    }
}

/* ===================== */
/* ===== REVEAL ANIMATIONS ===== */
/* ===================== */

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease forwards;
}

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

/* ===================== */
/* ===== TAG DOT ===== */
/* ===================== */

.tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}