:root {
    --lux-bg: #fbfbfd;
    --lux-text: #121213;
    --lux-sub: #6e6e73;
    --lux-accent: #000000;
    --lux-blue: #0071e3;
    --lux-border: rgba(0, 0, 0, 0.06);
    --lux-glass: rgba(255, 255, 255, 0.85);
}

body {
    background-color: var(--lux-bg);
    color: var(--lux-text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

.glass-header {
    background: var(--lux-glass);
    backdrop-filter: saturate(180%) blur(40px);
    border-bottom: 0.5px solid var(--lux-border);
}

/* Majestic Editorial Typography */
.editorial-title {
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.85;
    display: inline-block;
    background: linear-gradient(
        to right,
        #d61f2d 0%,
        #e63946 20%,
        #ff6b7a 40%,
        #4db8ff 60%,
        #20A2F5 80%,
        #0d8ae8 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientMove 5s linear infinite;
}

@keyframes textGradientMove {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.editorial-sub {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 500;
    color: var(--lux-sub);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Trust & Identity Elements */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f2f2f7;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lux-text);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff80;
    box-shadow: 0 0 12px rgba(0, 255, 128, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 3D Sculptural Model */
.combi-sculpture {
    position: relative;
    width: 320px;
    height: 520px;
    background: linear-gradient(165deg, #ffffff 0%, #f2f2f7 100%);
    border-radius: 56px;
    box-shadow:
        0 80px 160px -30px rgba(0, 0, 0, 0.08),
        0 40px 80px -40px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 60px;
    border: 0.5px solid rgba(0, 0, 0, 0.02);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.digital-eye {
    width: 150px;
    height: 110px;
    background: #000;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 20px rgba(255, 255, 255, 0.05);
}

.digital-eye::after {
    content: "20";
    color: #00fff2;
    font-family: inherit;
    font-size: 42px;
    font-weight: 200;
    text-shadow: 0 0 15px rgba(0, 255, 242, 0.4);
}

/* Buttons: Squircle Luxury */
.btn-lux {
    background: var(--lux-accent);
    color: #fff;
    padding: 24px 64px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-lux:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-lux {
    background: #ffffff;
    color: #121213;
    border: 2px solid var(--lux-border);
    padding: 24px 48px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp-lux:hover {
    border-color: #25d366;
    color: #25d366;
    background: #fcfcfd;
}

/* Mobile Action Bar */
.ios-action-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(200%) blur(30px);
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    border-radius: 100px;
    padding: 6px;
    display: flex;
    gap: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    z-index: 2000;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.action-btn-ios {
    flex: 1;
    padding: 10px 14px;
    min-height: 52px;
    border-radius: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.action-btn-ios:active {
    transform: scale(0.96);
    opacity: 0.9;
}

.action-btn-ios .btn-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-btn-ios .btn-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.action-btn-ios .btn-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.action-btn-ios .btn-label span:first-child {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.action-btn-ios .btn-label span:last-child {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Telefon butonu */
.action-btn-ios.btn-call {
    background: #111111;
    color: #ffffff;
}

/* WhatsApp butonu */
.action-btn-ios.btn-wa {
    background: #25D366;
    color: #ffffff;
}

@keyframes wa-pulse-soft {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.action-btn-ios.btn-wa {
    animation: wa-pulse-soft 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.section-padding {
    padding: 160px 0;
}

.card-lux {
    background: #ffffff;
    border-radius: 48px;
    padding: 60px;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--lux-border);
}

.card-lux:hover {
    transform: translateY(-12px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
}

.reveal-majestic {
    animation: majesticReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes majesticReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .btn-lux,
    .btn-whatsapp-lux {
        width: 100%;
        padding: 20px;
        font-size: 18px;
    }

    .combi-sculpture {
        transform: scale(0.85);
    }
}


/* Lazy Loading Styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img.lazy-loading {
    opacity: 0.5;
    filter: blur(5px);
}

img.lazy-loaded {
    opacity: 1;
    filter: blur(0);
}

img.lazy-error {
    opacity: 0.3;
    border: 2px solid #ef4444;
}
