/* ==========================================================================
   YALMA STUDIO — LUXURY EDITORIAL AGENCY DESIGN SYSTEM
   Palette: Soft Linen #FAF8F6, Warm Nude #F1ECE2, Terracotta #C1663A, Ink #1A1817
   Aesthetics: Clean, Soft, Scandinavian/Japanese Editorial, Pure Elegance
   ========================================================================== */

:root {
    --bg-base: #FAF8F6;
    --bg-surface: #F1ECE2;
    --bg-card: #FFFFFF;
    --accent-terracotta: #C1663A;
    --accent-terracotta-hover: #A85329;
    --accent-light: #F7EFE9;
    --text-dark: #1A1817;
    --text-muted: #6B6B6B;
    --text-light: #999999;
    --border-subtle: rgba(26, 24, 23, 0.08);
    --border-medium: rgba(26, 24, 23, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 12px 32px rgba(26, 24, 23, 0.04);
    --shadow-hover: 0 20px 48px rgba(26, 24, 23, 0.08);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   WORD-SAFE & TYPOGRAPHY WRAPPING RULES
   ========================================================================== */

h1, h2, h3, h4, p, span, a, label {
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: manual;
}

/* 1. Scroll Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(.16, 1, .3, 1), transform 0.7s cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform;
}

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

/* Stagger delay for grid items */
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.24s; }

/* 2. Character-by-character Typing Reveal (Zero Layout Jump & Word-Safe) */
.type-word {
    display: inline-block;
    white-space: nowrap;
}

.ch {
    display: inline;
    transition: opacity 0.12s ease-out;
}

.ch.pending {
    opacity: 0;
}

.space-ch {
    display: inline;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .ch.pending {
        opacity: 1 !important;
        transition: none !important;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.highlight-terracotta {
    color: var(--accent-terracotta);
    font-style: italic;
    font-weight: 500;
}

/* Authentic Hand-Drawn Highlighter Marker Effect */
.marker-highlight {
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    z-index: 1;
    padding: 0 6px;
}

.marker-highlight::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: -6px;
    width: 0%;
    height: 75%;
    background: linear-gradient(
        96deg, 
        rgba(193, 102, 58, 0.48) 0%, 
        rgba(193, 102, 58, 0.72) 48%, 
        rgba(193, 102, 58, 0.55) 100%
    );
    /* Organic hand-drawn chisel-tip stroke contours */
    border-radius: 4px 28px 6px 24px / 16px 8px 14px 8px;
    transform: rotate(-1.4deg) skewX(-3deg);
    transform-origin: left center;
    filter: url(#marker-rough);
    z-index: -1;
    transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.4s;
}

.marker-highlight.in::before,
[data-reveal].in .marker-highlight::before {
    width: 106%;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background-color: var(--text-dark);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-terracotta);
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-terracotta {
    background-color: var(--accent-terracotta);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(193, 102, 58, 0.25);
}

.btn-terracotta:hover {
    background-color: var(--accent-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 102, 58, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--bg-surface);
    border-color: var(--text-dark);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 90px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: var(--accent-light);
    color: var(--accent-terracotta);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-terracotta);
    border-radius: 50%;
}

.hero-title {
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.06;
    color: var(--text-dark);
    margin-bottom: 26px;
    letter-spacing: -0.035em;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
}

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.trust-pill {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-pill i {
    color: var(--accent-terracotta);
}

/* Soft Cream Showcase Card */
.soft-showcase-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.showcase-header {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.showcase-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-terracotta);
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.window-buttons span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(26, 24, 23, 0.2);
}

.showcase-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.showcase-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.showcase-item.active, .showcase-item:hover {
    border-color: var(--accent-terracotta);
    box-shadow: 0 4px 16px rgba(193, 102, 58, 0.1);
}

.item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: var(--accent-light);
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.showcase-item h4 {
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.showcase-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.showcase-footer {
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-footer i {
    color: var(--accent-terracotta);
}

/* Services Section */
.section {
    padding: 100px 0;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--accent-terracotta);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-terracotta);
}

.service-card.featured-card {
    background-color: #FFFFFF;
    border-color: var(--accent-terracotta);
    box-shadow: var(--shadow-soft);
}

.card-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background-color: var(--accent-terracotta);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: var(--accent-light);
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-box {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-terracotta);
    display: block;
    line-height: 1;
}

.price-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Card Checklist Styling - Fixed Flex Spacing */
.card-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    margin-top: auto;
}

.card-checklist li {
    font-size: 0.88rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
    text-align: left;
}

.card-checklist li i {
    color: var(--accent-terracotta);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.card-checklist li span {
    display: inline;
    width: 100%;
}

/* Showcase Section */
.showcase-section {
    background-color: var(--bg-surface);
}

.showcase-box {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-soft);
    margin-top: 50px;
}

.showcase-img-wrap {
    height: 380px;
    overflow: hidden;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-terracotta);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.showcase-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.showcase-info p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

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

.method-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--accent-light);
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.method-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.method-item span, .method-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-terracotta);
    box-shadow: 0 0 0 3px rgba(193, 102, 58, 0.15);
}

.form-status-msg {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #15803D;
}

/* Minimalist Ultra-Discreet SEO Footer Cities */
.seo-cities-section {
    padding: 20px 0;
    background-color: var(--bg-base);
    border-top: 1px solid var(--border-subtle);
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.seo-cities-section:hover {
    opacity: 1;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
}

.city-pill {
    font-size: 0.74rem;
    color: var(--text-light);
    background-color: transparent;
    padding: 2px 6px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: var(--transition);
}

.city-pill:hover {
    color: var(--accent-terracotta);
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .brand-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating Chatbot Widget (0€ Zero AI Cost Interactive Concierge) */
.chatbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chatbot-trigger {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--accent-terracotta);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(193, 102, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: var(--transition);
}

.chatbot-trigger:hover {
    transform: scale(1.08);
    background-color: var(--accent-terracotta-hover);
}

.chatbot-panel {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 32px);
    height: 490px;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 48px rgba(26, 24, 23, 0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background-color: var(--bg-surface);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.chat-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    background-color: var(--text-dark);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: #22C55E;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.chat-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.chat-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

@keyframes msgPop {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: var(--bg-base);
    scroll-behavior: smooth;
}

.msg {
    max-width: 88%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    animation: msgPop 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
    background-color: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation: msgPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    background-color: var(--accent-terracotta);
    border-radius: 50%;
    animation: pulseDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulseDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.1); opacity: 1; }
}

.bot-msg {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-subtle);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-msg {
    background-color: var(--accent-terracotta);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.chip-btn {
    background-color: #ffffff;
    border: 1px solid var(--border-medium);
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.chip-btn:hover {
    border-color: var(--accent-terracotta);
    background-color: var(--accent-light);
    color: var(--accent-terracotta);
}

.chat-input-row {
    padding: 12px 16px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 10px;
}

.chat-input-row input {
    flex: 1;
    border: 1px solid var(--border-medium);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 0.88rem;
    outline: none;
    font-family: var(--font-body);
}

.chat-input-row input:focus {
    border-color: var(--accent-terracotta);
}

.chat-input-row button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-terracotta);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-input-row button:hover {
    background-color: var(--accent-terracotta-hover);
}

/* Comprehensive Ultra-Responsive Media Queries (Smartphones & Tablets) */
@media (max-width: 1024px) {
    .hero-grid, .showcase-box, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 3.2rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .hero-section {
        padding: 50px 0 70px;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .service-card, .contact-form-card {
        padding: 26px 20px;
    }

    .showcase-info {
        padding: 28px 20px;
    }

    .chatbot-widget {
        right: 16px;
        bottom: 16px;
    }

    .chatbot-panel {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 68px;
        height: 450px;
    }
}

/* ==========================================================================
   Mobile Apps Showcase & Gallery Styles
   ========================================================================== */
.mobile-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.mobile-app-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-app-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-terracotta);
}

.app-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #1a1a1a;
    overflow: hidden;
}

.app-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mobile-app-card:hover .app-img-wrap img {
    transform: scale(1.04);
}

.app-collab-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-collab-badge i {
    color: var(--accent-terracotta);
}

.app-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app-header-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.app-header-meta h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.app-metric-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-terracotta);
}

.app-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
}

.app-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.app-features-list span {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-features-list i {
    color: var(--accent-terracotta);
}

/* ==========================================================================
   Blog & Actu Engine Styles
   ========================================================================== */
.blog-filters {
    margin-bottom: 30px;
}

.blog-filter-btn {
    background-color: #ffffff;
    border: 1px solid var(--border-medium);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-btn.active, .blog-filter-btn:hover {
    background-color: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-terracotta);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-card-cat {
    background-color: var(--accent-light);
    color: var(--accent-terracotta);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.blog-card h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-card-tags span {
    font-size: 0.72rem;
    color: var(--text-light);
    background-color: var(--bg-surface);
    padding: 2px 8px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .mobile-apps-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mobile-apps-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}
