/* ==========================================
   ATLAS AGENCY - Main Stylesheet
   Modern, Professional, Agency Design
   Inspired by malycha.agency
   ========================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors - Professional Black/White/Accent */
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --color-text: #000000;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-accent: #0066ff;
    --color-accent-hover: #0052cc;
    --color-border: #e5e5e5;
    --color-dark: #111111;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --section-padding: 120px;
    --gap-xs: 8px;
    --gap-sm: 16px;
    --gap-md: 24px;
    --gap-lg: 40px;
    --gap-xl: 60px;

    /* Transitions - Smooth Cubic Bezier with elastic returns */
    --transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-bounce: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

/* ===== NAV ITEM (each <li>) ===== */
.nav-item {
    position: relative;
    isolation: isolate;
    padding: 0 20px;
}

/* Prevent hover bleed: the CTA <li> gets a left margin for clear separation */
.nav-item--cta {
    margin-left: 8px;
}

/* ===== REGULAR NAV LINKS ===== */
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    padding: 10px 0;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
    pointer-events: none;
}

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

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

/* ===== DEMO KLIENTA (standalone, no .nav-link inheritance) ===== */
.nav-link-special {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    padding: 10px 0;
    cursor: pointer;
}

.nav-link-special::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
    pointer-events: none;
}

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

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

/* ===== KONTAKT CTA BUTTON ===== */
.nav-link-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-dark);
    color: white;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-link-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.nav-link-cta:hover {
    background: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.nav-link-cta:hover::before {
    left: 100%;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 2px;
    background: var(--color-bg-alt);
}

.lang-btn {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-text-lighter);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    background: var(--color-dark);
    color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 118, 247, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: hero-float 8s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: hero-float 12s ease-in-out infinite reverse;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -15px);
    }
}

.hero-container {
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin-bottom: var(--gap-xl);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    min-height: 176px;
    width: 100%;
    max-width: 900px;
    display: block;
}

.cursor {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    animation: blink 1s step-end infinite;
    margin-left: 0px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.highlight {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #222222 100%);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    border: 2px solid var(--color-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(0) scale(1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-dark);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    border-color: var(--color-dark);
    background: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-dark);
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    height: 100%;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
    padding-top: var(--gap-xl);
    border-top: 1px solid var(--color-border);
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-stats .stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-wrapper {
    display: flex;
    align-items: center;
    /* Center alignment looks better for icons/symbols */
    gap: 2px;
    white-space: nowrap;
    /* Prevent wrapping */
}

.hero-stats .stat-plus {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-stats .stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-stats .stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-stats .stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

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

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

.hero-stats .stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== SECTIONS ========== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: var(--gap-xl);
}

.section-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
}

.section-cta {
    margin-top: var(--gap-xl);
    text-align: center;
}

/* ========== WORK SECTION ========== */
.work-section {
    background: var(--color-bg-alt);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.project-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-accent) 100%);
}

.project-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-info {
    padding: 32px;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tags span {
    padding: 6px 12px;
    background: var(--color-bg-alt);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
}

/* Coming Soon Card */
.project-card.coming-soon {
    border: 2px dashed var(--color-border);
    background: transparent;
}

.coming-soon .project-placeholder {
    background: var(--color-bg-alt);
}

.coming-soon-content {
    text-align: center;
    color: var(--color-text-light);
}

.coming-soon-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-text);
}

/* ========== SERVICES SECTION ========== */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--gap-lg);
    padding: var(--gap-xl) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.service-item .service-content-wrapper {
    display: contents;
}

.service-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-border);
    line-height: 1;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        color 0.4s ease,
        background 0.4s ease,
        -webkit-text-fill-color 0.4s ease;
    transform: translateX(0) scale(1);
}

.service-content {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(0);
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0066ff 0%, #0052cc 100%);
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.15s;
}

.service-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 118, 247, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-item:hover .service-number {
    transform: translateX(20px) scale(1.1);
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item:hover .service-content {
    transform: translateX(20px);
}

.service-item:hover::before {
    height: 100%;
    transition-delay: 0.15s;
}

.service-item:not(:hover)::before {
    transition-delay: 0s;
}

.service-item:hover::after {
    opacity: 1;
}


.service-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-features li {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 118, 247, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.about-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text .lead {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--color-text);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition);
}

.value-item:hover h4 {
    color: var(--color-accent);
}

.value-item p {
    font-size: 14px;
    color: var(--color-text-light);
}

.about-image {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    transform: scale(1);
}

.logo-display:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.logo-display img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}

.logo-display:hover img {
    transform: scale(1.05);
}

.workspace-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    transform: scale(1);
}

.workspace-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.workspace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}

.workspace-image:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-accent) 100%);
    border-radius: 12px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding-left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        padding-top 0.3s ease,
        padding-bottom 0.3s ease;
    position: relative;
}

.contact-method::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff 0%, #0052cc 100%);
    transition: width 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-method:hover {
    padding-left: 15px;
}

.contact-method:hover::before {
    width: 100%;
}

.method-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.method-value {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.contact-availability {
    display: flex;
    align-items: center;
    gap: 12px;
}

.availability-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.contact-availability span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background: white;
    color: var(--color-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a:hover {
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {

    .container,
    .nav-container {
        padding: 0 32px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-item {
        grid-template-columns: 80px 1fr;
    }

    .service-number {
        font-size: 48px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-slow);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 40px;
    }

    .nav-item {
        padding: 0;
    }

    .nav-item--cta {
        margin-left: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ========== UTILITIES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========== SCROLL REVEAL ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== STAT PLUS SUFFIX ========== */
.stat-plus {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    color: var(--color-accent);
}

/* FIX: Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
}
