/* =============================================================
   LANDMECO Uzbekistan – Light Corporate Stylesheet
   ============================================================= */

/* ── Design System ── */
:root {
    --gold: #fdc41d;
    --gold-dark: #e0a800;
    --gold-light: #ffe066;
    --bg-light: #ffffff;
    --bg-alt: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --border-soft: rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-base: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Background ── */
.bg-image {
    position: fixed;
    inset: 0;
    background: url('../img/CAT_2420.jpg') no-repeat center center / cover;
    z-index: 0;
}

/* Cinematic dark overlay to reduce eye strain */
.bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.8) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.9) 100%);
}

/* ── Layout ── */
.page-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* ── Light Content Card ── */
.card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    /* Slightly softer for inviting feel */
    max-width: 1000px;
    width: 100%;
    padding: 80px 100px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.08);
    animation: slideUpFade 1s var(--transition-base) both;
}

/* Top accent line */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold);
    border-radius: 8px 8px 0 0;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ── Logo ── */
.logo-wrap {
    margin-bottom: 50px;
}

.logo {
    max-width: 280px;
    /* Even larger for absolute visibility */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ── Badge ── */
.badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-radius: 4px;
}

/* ── Typography ── */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
    color: #000;
    text-transform: uppercase;
}

h1 span {
    color: var(--gold-dark);
    /* Darker gold for better contrast on white */
}

h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Stats ── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg-alt);
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.stat {
    padding: 50px 20px;
    border-right: 1px solid var(--border-soft);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ── Body Content ── */
.body-text {
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.body-text p {
    margin-bottom: 28px;
}

/* ── Contact Person ── */
.contact-person {
    margin: 60px auto;
    padding: 40px;
    background: var(--bg-alt);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    max-width: 750px;
}

.contact-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.contact-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* ── CTA ── */
.cta-wrap {
    margin-top: 70px;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 26px 60px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(253, 196, 29, 0.3);
}

.button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.button:hover .btn-arrow {
    transform: translateX(5px);
}

/* ── Footer Branding ── */
.side-tag {
    position: fixed;
    right: 40px;
    bottom: 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.15);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ── Responsive ── */
@media (max-width: 950px) {
    .card {
        padding: 60px 50px;
    }
}

@media (max-width: 650px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
        padding: 30px 20px;
    }

    .card {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .logo {
        max-width: 200px;
    }

    .contact-person {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .contact-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .body-text {
        font-size: 1rem;
    }
}