/* ============================================================================
   FORGED DIGITAL DESIGN - Fresh Build v2
   Mobile-first | Fluid Scaling | Modern CSS
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap&font-display=swap');

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #262626;
    --color-gold: #E4C788;
    --color-gold-dark: #D4B976;
    --color-gold-light: #f0d799;
    --color-gold-muted: #C5A572;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-gray: #cccccc;
    --color-gray-dark: #888888;
    --color-border: #2d2d2d;
    --color-star: #FFD700;

    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
    --text-base: clamp(1rem, 0.92rem + 0.4vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.1rem + 1.5vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.2rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.17rem, 1.5rem + 3vw, 4.34rem);

    --space-xs: clamp(0.25rem, 0.2rem + 0.2vw, 0.5rem);
    --space-sm: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
    --space-md: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
    --space-lg: clamp(1.5rem, 1rem + 2vw, 3rem);
    --space-xl: clamp(2rem, 1.2rem + 3vw, 4rem);
    --space-2xl: clamp(3rem, 2rem + 4vw, 6rem);

    --max-width: 1200px;
    --header-height: clamp(75px, 65px + 2vw, 95px);
    --transition: 0.3s ease;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth removed - was causing scroll-to-top on refresh */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul { list-style: none; }

strong { color: var(--color-white); }

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(228, 199, 136, 0.3);
}

.nav-link:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Global Particles */
.global-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.global-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: globalFloat 8s infinite ease-out;
    box-shadow: 0 0 6px var(--color-gold);
}

@keyframes globalFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    5% { opacity: 0.7; }
    95% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* Section Containers */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md);
}

.section-box {
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(228, 199, 136, 0.4);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================================================
   HEADER
   ============================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    animation: headerFloat 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.95) 70%, rgba(10, 10, 10, 0) 100%);
}


@keyframes headerFloat {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    60% {
        opacity: 1;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px var(--space-lg) 0;
}

@media (max-width: 768px) {
    .header-container {
        padding-top: 10px;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(228, 199, 136, 0.4);
    border-radius: var(--radius-sm);
    padding: 0 var(--space-md);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    height: 100%;
    position: relative;
    top: 4px;
}

.logo img {
    height: clamp(51px, 47px + 1.5vw, 63px);
    margin-left: -20px;
}

.nav-desktop {
    display: none;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray);
    padding: var(--space-xs) 0;
    position: relative;
}

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

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

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

.nav-link[aria-current="page"] {
    color: var(--color-gold);
}

.nav-link[aria-current="page"]::after {
    width: 100%;
}

.nav-link-special {
    border: 1px solid rgba(228, 199, 136, 0.4);
    padding: 8px 12px 6px;
    border-radius: 6px;
    font-size: var(--text-xs);
    position: relative;
    top: 0;
}

.nav-link-special::after {
    display: none;
}

.nav-link-special:hover {
    background: rgba(228, 199, 136, 0.1);
    border-color: var(--color-gold);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    justify-content: center;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

/* Hamburger to X animation when menu is active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(228, 199, 136, 0.3);
    flex-direction: column;
    align-items: center;
    padding: 0 var(--space-md);
    gap: 0;
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    display: flex;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
    padding: var(--space-md) var(--space-md) var(--space-lg);
}

/* Push content down when mobile menu is open */
body.mobile-menu-open main,
body.mobile-menu-open footer {
    transform: translateY(350px);
    transition: transform 0.3s ease;
}

body main,
body footer {
    transition: transform 0.3s ease;
}

.mobile-menu-close {
    display: none;
}

.mobile-menu .nav-link {
    font-size: var(--text-base);
    color: var(--color-white);
    padding: var(--space-sm) 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(228, 199, 136, 0.1);
}

.mobile-menu .nav-link:last-of-type {
    border-bottom: none;
}

.mobile-menu .btn {
    margin-top: var(--space-md);
    width: 100%;
    justify-content: center;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
    color: #333;
    border: 1px solid var(--color-gold-dark);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(228, 199, 136, 0.35);
}

.btn-secondary {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
    color: var(--color-gold);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(26,26,26,0.05));
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--text-base);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: var(--header-height);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: var(--space-lg);
}

.hero-brand-wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: -15px;
}

.hero-brand {
    font-size: clamp(2.5rem, 2rem + 5vw, 5.5rem);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-shadow: 0 0 60px rgba(228, 199, 136, 0.3);
    white-space: nowrap;
}

.hero-tagline {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-value {
    font-size: clamp(1.55rem, 1.3rem + 1vw, 2.05rem);
    font-weight: 400;
    color: var(--color-gray);
    margin-top: var(--space-xs);
}

.hero-services {
    margin-top: -5px;
    min-height: 2.5em;
}

.scramble-text {
    font-size: clamp(1.2rem, 1.1rem + 1vw, 1.8rem);
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    font-family: 'Courier New', monospace;
    margin-left: 2px;
}

/* ============================================================================
   PORTFOLIO SECTION
   ============================================================================ */
.portfolio-section {
    padding: var(--space-xl) 0;
    margin-top: -30px;
    position: relative;
}

@media (min-width: 1024px) {
    .portfolio-section {
        margin-top: -90px;
    }
}

.portfolio-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.portfolio-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
    text-align: center;
}

.portfolio-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.portfolio-item:hover {
    border-color: rgba(228, 199, 136, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-image {
    width: 100%;
    height: auto;
    overflow: visible;
    flex-shrink: 0;
}

.portfolio-image img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-info {
    padding: 14px 16px 12px;
    background: rgba(10, 10, 10, 0.95);
}

.portfolio-info h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.portfolio-industry {
    font-size: 12px;
    color: var(--color-gold);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ============================================================================
   WHY WORK WITH ME SECTION
   ============================================================================ */
.why-work-section {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

.why-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.why-work-title {
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-white);
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .why-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .why-work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-work-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.why-work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.why-work-card:hover::before {
    left: 100%;
}

.why-work-card:hover {
    border-color: rgba(228, 199, 136, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
    background: rgba(20, 20, 20, 0.8);
}

.why-work-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 199, 136, 0.1);
    border-radius: 50%;
}

.why-work-icon svg {
    stroke: var(--color-gold);
}

.why-work-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.why-work-card p {
    font-size: var(--text-sm);
    color: var(--color-gray);
    line-height: 1.6;
}

/* ============================================================================
   PROCESS TIMELINE SECTION
   ============================================================================ */
.process-timeline-section {
    padding: var(--space-xl) 0;
    margin-top: -20px;
}

.process-timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.process-timeline-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--space-xs);
}

.process-timeline-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.process-services-link {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.process-services-link:hover {
    color: var(--color-gold-light);
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(228, 199, 136, 0.2));
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -49px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--color-bg);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-gold);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(228, 199, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(228, 199, 136, 0.6), 0 0 30px rgba(228, 199, 136, 0.3);
    }
}

.timeline-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    font-size: var(--text-base);
    color: var(--color-gray);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-right: var(--space-lg);
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: var(--space-lg);
    }

    .timeline-number {
        left: auto;
        right: -20px;
    }

    .timeline-item:nth-child(even) .timeline-number {
        right: auto;
        left: -20px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: right;
    }
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */
.about-section {
    padding: var(--space-md) 0;
}

.about-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

.about-text {
    color: var(--color-gray);
}

.about-text p {
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-white);
    font-weight: 700;
}

/* ============================================================================
   SECTION COMMON
   ============================================================================ */
.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-md);
}

.section-link {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-link a {
    color: var(--color-gold-muted);
    font-weight: 600;
}

.section-link a:hover {
    color: var(--color-gold);
}

/* ============================================================================
   PROCESS SECTION
   ============================================================================ */
.process-section {
    padding: var(--space-md) 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.3), transparent);
}

.process-layout {
    display: grid;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 1024px) {
    .process-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

/* Device Carousel */
.device-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-frame {
    width: 100%;
    max-width: 320px;
    background: #111;
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.device-screen {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

/* Process Boxes */
.process-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 500px) {
    .process-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(228, 199, 136, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 199, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-card:hover::before {
    opacity: 1;
}

.process-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: var(--text-lg);
    color: var(--color-gray-light);
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: var(--text-sm);
    color: var(--color-gray);
    position: relative;
    z-index: 1;
}

/* ============================================================================
   REVIEWS SECTION
   ============================================================================ */
.reviews-section {
    padding: var(--space-xl) 0;
    margin-top: -20px;
}

.reviews-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.reviews-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
    text-align: center;
}

.reviews-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* First row - 3 cards spanning 2 columns each */
    .reviews-grid .review-card:nth-child(1) {
        grid-column: 1 / 3;
    }

    .reviews-grid .review-card:nth-child(2) {
        grid-column: 3 / 5;
    }

    .reviews-grid .review-card:nth-child(3) {
        grid-column: 5 / 7;
    }

    /* Second row - 2 cards centered */
    .reviews-grid .review-card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .reviews-grid .review-card:nth-child(5) {
        grid-column: 4 / 6;
    }
}

.review-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    border-color: rgba(228, 199, 136, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
    background: rgba(20, 20, 20, 0.8);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-md);
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-star);
}

.review-text {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.review-author {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
}

/* Reviews Grid - 2 column variant for portfolio page */
.reviews-grid-2 {
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reviews-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid-2 .review-card:nth-child(1),
    .reviews-grid-2 .review-card:nth-child(2) {
        grid-column: auto;
    }
}

/* Small Portfolio CTA */
.portfolio-cta-small {
    padding: var(--space-lg) 0 var(--space-xl);
    text-align: center;
}

.portfolio-cta-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.portfolio-cta-small p {
    font-size: var(--text-lg);
    color: var(--color-gray-light);
}

.cta-link-inline {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link-inline:hover {
    color: var(--color-cream);
}

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */
.about-intro-section {
    padding: var(--space-xl) 0;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.about-intro-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: start;
}

@media (min-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 300px 1fr;
        gap: var(--space-xl);
    }
}

.about-image {
    text-align: left;
}

@media (max-width: 767px) {
    .about-image {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .about-portrait {
        margin: 0 auto;
    }

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

    .about-bio p {
        text-align: center;
    }
}

.about-portrait {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(228, 199, 136, 0.3);
    object-fit: cover;
    object-position: center top;
}

.about-bio h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.about-name {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.about-name.gold {
    color: var(--color-gold);
}

/* About Skills Grid (under bio) */
.about-skills-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (min-width: 600px) {
    .about-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-skill-box {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.about-skill-box:hover {
    border-color: rgba(228, 199, 136, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-skill-box h4 {
    font-size: var(--text-lg);
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.about-skill-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-skill-box li {
    color: var(--color-gray-light);
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    font-size: var(--text-sm);
}

.about-skill-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* About Benefits Section (combined Why Work + How I Work) */
.about-benefits-section {
    padding: var(--space-xl) 0;
}

.about-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.about-benefits-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .about-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-benefit-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.15);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    text-align: center;
    transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.about-benefit-card:hover {
    border-color: rgba(228, 199, 136, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-benefit-icon {
    margin-bottom: var(--space-sm);
}

.about-benefit-icon svg {
    stroke: var(--color-gold);
}

.about-benefit-card h3 {
    font-size: var(--text-base);
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.about-benefit-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    margin: 0;
    line-height: 1.5;
}

.about-title {
    font-size: var(--text-base);
    color: var(--color-white);
    font-weight: 400;
    font-style: italic;
}

.about-bio p {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

/* Experience Section */
.about-experience-section {
    padding: var(--space-xl) 0;
    background: rgba(228, 199, 136, 0.02);
}

.about-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.about-section-title {
    font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-cream);
}

.experience-grid {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.experience-card {
    text-align: center;
    padding: var(--space-md);
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: var(--radius-sm);
}

.experience-number {
    font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.experience-card h3 {
    font-size: var(--text-lg);
    color: var(--color-cream);
    margin: var(--space-xs) 0;
}

.experience-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    margin: 0;
}

.skills-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.skills-column {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}

.skills-column h4 {
    font-size: var(--text-lg);
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.skills-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-column li {
    color: var(--color-gray-light);
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
}

.skills-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Why Work With Me - 4 column variant */
.why-work-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .why-work-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Philosophy Section */
.about-philosophy-section {
    padding: var(--space-xl) 0;
}

.about-philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.philosophy-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.philosophy-item {
    padding: var(--space-md);
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(228, 199, 136, 0.15);
    border-radius: var(--radius-sm);
}

.philosophy-item h4 {
    font-size: var(--text-base);
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.philosophy-item p {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-section {
    padding: var(--space-xl) 0;
}

.services-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.services-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
    text-align: center;
}

.services-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.service-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: rgba(228, 199, 136, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
    background: rgba(20, 20, 20, 0.8);
}

.service-number {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.6;
    margin-bottom: var(--space-sm);
}

.service-card h3 {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-card p strong {
    color: var(--color-white);
}

.service-target {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin-bottom: var(--space-md);
    flex-grow: 1;
    font-style: italic;
}

.service-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--color-gold-light);
}

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

.services-cta .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

.services-cta p {
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-gray);
}

/* Gold text utility */
.gold {
    color: var(--color-gold);
}

/* ============================================================================
   COLLABORATION CTA SECTION
   ============================================================================ */
.collab-section {
    padding: var(--space-xl) 0;
    margin-top: -40px;
}

.collab-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.collab-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-xl);
    border: 1px solid rgba(228, 199, 136, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(15, 15, 15, 0.4);
}

.collab-title {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.collab-text {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.collab-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.collab-link:hover {
    color: var(--color-gold-light);
}

/* ============================================================================
   COLLABORATE PAGE
   ============================================================================ */
.page-hero {
    padding: calc(var(--space-xl) * 2.5 + 20px) 0 var(--space-xl);
    text-align: center;
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: calc(var(--space-xl) * 2.5 + 90px);
        padding-bottom: calc(var(--space-xl) + 20px);
    }
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.page-hero-title {
    font-size: clamp(1.8rem, 1.5rem + 2vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.page-hero-title.gold {
    color: var(--color-gold);
}

.page-hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-light);
}

.collab-intro {
    padding: var(--space-lg) 0;
}

.collab-intro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.collab-intro-text {
    font-size: var(--text-lg);
    color: var(--color-gray-light);
    line-height: 1.8;
}

.collab-types-section {
    padding: var(--space-xl) 0;
}

.collab-types-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.collab-types-title {
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.collab-types-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .collab-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.collab-type-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    transition: all 0.4s ease;
}

.collab-type-card:hover {
    border-color: rgba(228, 199, 136, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
}

.collab-type-number {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.6;
    margin-bottom: var(--space-sm);
    display: block;
}

.collab-type-card h3 {
    font-size: var(--text-xl);
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.collab-type-card p {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.collab-type-card p strong {
    color: var(--color-white);
}

.collab-type-list {
    list-style: none;
    padding: 0;
}

.collab-type-list li {
    font-size: var(--text-sm);
    color: var(--color-gray);
    padding-left: var(--space-md);
    position: relative;
    margin-bottom: var(--space-xs);
}

.collab-type-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.collab-why-section {
    padding: var(--space-xl) 0;
}

.collab-why-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.collab-why-title {
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.collab-why-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .collab-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.collab-why-item h4 {
    font-size: var(--text-lg);
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.collab-why-item p {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    line-height: 1.6;
}

.collab-cta-section {
    padding: var(--space-xl) 0;
    text-align: center;
}

.collab-cta-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.collab-cta-title {
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.collab-cta-text {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    margin-bottom: var(--space-lg);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(228, 199, 136, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-lg);
}

@media (min-width: 1024px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

@media (min-width: 1024px) {
    .footer-brand {
        align-items: flex-start;
    }
}

.footer-logo {
    font-size: clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin-top: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: var(--space-sm);
}

.footer-contact a {
    font-size: var(--text-base);
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

/* Footer Right Column */
.footer-right {
    display: none;
}

@media (min-width: 1024px) {
    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: var(--space-md);
    }
}

/* Footer Blog Preview */
.footer-blog-preview {
    display: none;
}

@media (min-width: 1024px) {
    .footer-blog-preview {
        display: flex;
        flex-direction: column;
        gap: 8px;
        max-width: 280px;
        align-items: flex-end;
    }
}

.footer-blog-label {
    font-size: var(--text-xs);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-blog-card {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(228, 199, 136, 0.15);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-blog-card:hover {
    border-color: rgba(228, 199, 136, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.footer-blog-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.footer-blog-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.footer-blog-title {
    font-size: var(--text-xs);
    color: var(--color-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-blog-link {
    font-size: 11px;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.footer-blog-card:hover .footer-blog-link {
    color: var(--color-white);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

@media (min-width: 1024px) {
    .footer-nav {
        gap: var(--space-sm) var(--space-md);
        justify-content: flex-end;
    }
}

.footer-nav a {
    font-size: var(--text-sm);
    color: var(--color-gray);
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-gold);
}

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

.footer-divider {
    height: 1px;
    background: rgba(228, 199, 136, 0.1);
    margin-bottom: var(--space-md);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(156, 163, 175, 0.6);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
}

.footer-legal a {
    color: rgba(156, 163, 175, 0.6);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-legal span {
    color: rgba(156, 163, 175, 0.3);
}

/* ============================================================================
   PHONE/EMAIL LINK BEHAVIOR
   ============================================================================ */

/* Desktop: Phone/email links not clickable (display as text) */
@media (min-width: 769px) {
    a[href^="tel:"],
    .footer-phone {
        pointer-events: none;
        cursor: text;
        text-decoration: none;
    }
}

/* Mobile: Phone/email links are clickable */
@media (max-width: 768px) {
    a[href^="tel:"],
    .footer-phone {
        pointer-events: auto;
        cursor: pointer;
    }
}

/* ============================================================================
   FLOATING CONTACT BUTTON (Mobile Only)
   ============================================================================ */

.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #D4B976 100%);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(228, 199, 136, 0.4);
    z-index: 9998;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(228, 199, 136, 0.6);
}

.floating-call-btn svg {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
}

/* Contact Popup */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background: #1a1a1a;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    padding: 30px;
    max-width: 300px;
    width: 90%;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.contact-popup-content h3 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(228, 199, 136, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: var(--color-gold);
    color: #1a1a1a;
}

.contact-option svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-option span {
    font-size: 1.1rem;
}

/* Show floating button on mobile only */
@media (max-width: 768px) {
    .floating-call-btn {
        display: flex;
    }
}

/* ============================================================================
   MOBILE OPTIMIZATIONS (393px - 768px)
   ============================================================================ */

/* Small mobile (393px and below) */
@media (max-width: 480px) {
    /* Hero adjustments */
    .hero {
        min-height: 45vh;
        justify-content: center;
        padding-right: var(--space-md);
        padding-left: var(--space-md);
    }

    .hero-brand-wrapper {
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

    .hero-brand {
        font-size: clamp(2.4rem, 1.8rem + 5vw, 3.5rem);
        white-space: normal;
        text-align: center;
    }

    .hero-value {
        font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
        text-align: center;
    }

    .scramble-text {
        font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
        margin-left: 0;
    }

    /* Portfolio adjustments */
    .portfolio-title {
        font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    }

    .portfolio-item {
        width: 100%;
        max-width: 100%;
    }

    .portfolio-image {
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
    }

    .portfolio-image img {
        width: 100%;
        height: auto;
        object-fit: unset;
    }

    .portfolio-info {
        padding: var(--space-sm);
    }

    .portfolio-info h3 {
        font-size: var(--text-base);
    }

    /* Timeline adjustments */
    .process-timeline-title {
        font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
    }

    .process-timeline-subtitle {
        font-size: var(--text-sm);
    }

    .timeline-content h3 {
        font-size: var(--text-lg);
    }

    .timeline-content p {
        font-size: var(--text-sm);
    }

    /* Reviews adjustments */
    .reviews-title {
        font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    }

    .review-card {
        padding: var(--space-md);
    }

    .review-text {
        font-size: var(--text-sm);
    }

    /* Services adjustments */
    .services-title {
        font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    }

    .service-card {
        padding: var(--space-md);
    }

    .service-card h3 {
        font-size: var(--text-lg);
    }

    /* Collaboration CTA adjustments */
    .collab-content {
        padding: var(--space-md);
    }

    .collab-title {
        font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
    }

    .collab-text {
        font-size: var(--text-sm);
    }

    /* Footer adjustments */
    .footer-logo {
        font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
    }

    .footer-contact a {
        font-size: var(--text-sm);
    }

    .footer-nav {
        grid-template-columns: repeat(2, 90px);
        gap: 10px 40px;
    }

    .footer-bottom {
        gap: var(--space-xs);
    }
}

/* Tablet adjustments (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }

    .portfolio-image {
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
    }

    .portfolio-image img {
        width: 100%;
        height: auto;
        object-fit: unset;
    }

    .review-card {
        padding: var(--space-md);
    }
}

/* Fix reviews grid on mobile - stack properly */
@media (max-width: 599px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid .review-card:nth-child(4),
    .reviews-grid .review-card:nth-child(5) {
        grid-column: auto;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Fix reviews centering between 600px and 1023px */
@media (min-width: 600px) and (max-width: 1023px) {
    .reviews-grid .review-card:nth-child(4),
    .reviews-grid .review-card:nth-child(5) {
        grid-column: auto;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Ensure touch targets are large enough */
@media (max-width: 768px) {
    .nav-link,
    .footer-nav a,
    .service-link,
    .collab-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 48px;
        padding: var(--space-sm) var(--space-lg);
    }

    /* Reduce particle count effect on mobile for performance */
    .global-particle {
        opacity: 0.3;
    }
}

/* ============================================================================
   SERVICES PAGE - TIER CARDS & ADDITIONAL SERVICES
   ============================================================================ */

/* Services/Work Hero Title - gold color variant */
.services-hero-title,
.work-hero-title {
    color: var(--color-gold);
}

/* Services Overview Section */
.services-overview {
    padding: var(--space-lg) 0 var(--space-xl);
    margin-top: -20px;
}

.services-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Service Tiers Grid */
.service-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .service-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-tiers .tier-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .service-tiers {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-tiers .tier-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }
}

/* Tier Card Base Styles */
.tier-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    position: relative;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.tier-card:hover::before {
    left: 100%;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
    border-color: rgba(228, 199, 136, 0.8);
    background: rgba(20, 20, 20, 0.8);
}

.tier-card.featured {
    border: 2px solid var(--color-gold);
    position: relative;
}

.tier-card.premium {
    border: 2px solid #9b59b6;
    position: relative;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(60, 40, 70, 0.5) 100%);
}

.tier-card.premium .tier-header {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.tier-card.premium .tier-header h2 strong {
    color: white;
}

/* Tier Header */
.tier-header {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #1a1a1a;
    padding: 30px;
    text-align: center;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tier-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.tier-header h2 strong {
    color: #1a1a1a;
}

/* Tier Content */
.tier-content {
    padding: 40px;
}

.tier-content > p {
    color: var(--color-gray);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: 30px;
}

.tier-content h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

/* Tier Features List */
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tier-features li {
    color: var(--color-gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.tier-features li::before {
    content: "✓";
    color: var(--color-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Tier Timeline & Note */
.tier-timeline {
    background: rgba(228, 199, 136, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: var(--color-gold);
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.tier-pricing {
    background: rgba(228, 199, 136, 0.15);
    padding: 15px;
    border-radius: 8px;
    color: var(--color-gold);
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

.tier-note {
    background: rgba(155, 89, 182, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-top: 15px;
    border-left: 3px solid #9b59b6;
}

.tier-card.premium .tier-timeline {
    background: rgba(155, 89, 182, 0.1);
    color: #b19cd9;
}

/* Website Audit - Simple Callout */
.audit-callout {
    margin-top: 50px;
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: var(--radius-sm);
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.audit-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.audit-callout:hover::before {
    left: 100%;
}

.audit-callout:hover {
    border-color: rgba(228, 199, 136, 0.8);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
}

.audit-callout h3 {
    font-size: var(--text-xl);
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.audit-callout p {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.audit-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.audit-link:hover {
    color: var(--color-gold-light);
}

/* Additional Services Section */
.additional-services {
    padding: var(--space-xl) 0;
}

.additional-services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.additional-services h2 {
    color: var(--color-gold);
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 700;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 600px) {
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
}

.additional-service-item {
    background: rgba(15, 15, 15, 0.6);
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(228, 199, 136, 0.5);
    transition: all 0.15s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.additional-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.additional-service-item:hover::before {
    left: 100%;
}

.additional-service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 199, 136, 0.8);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
    background: rgba(20, 20, 20, 0.8);
}

.additional-service-item .service-number {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.6;
    margin-bottom: var(--space-sm);
}

.additional-service-item h3 {
    color: var(--color-gold);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.additional-service-item > p {
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.additional-service-item .service-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.additional-service-item .service-link:hover {
    color: var(--color-gold-light);
}

/* Services CTA Section */
.services-cta-section {
    padding: var(--space-xl) 0;
}

.services-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.services-cta-content {
    text-align: center;
    padding: var(--space-xl);
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: var(--radius-sm);
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.services-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.services-cta-content:hover::before {
    left: 100%;
}

.services-cta-content:hover {
    border-color: rgba(228, 199, 136, 0.8);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
}

.services-cta-content h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.services-cta-content p {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.cta-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--color-gold-light);
}

/* Mobile adjustments for tier cards */
@media (max-width: 480px) {
    .tier-content {
        padding: 25px 20px;
    }

    .tier-header h2 {
        font-size: 1.5rem;
    }

    .tier-features li {
        padding: 8px 0;
        font-size: 0.9rem;
        padding-left: 28px;
    }

    .additional-service-item {
        padding: 25px 20px;
    }

    .services-cta-content {
        padding: var(--space-lg);
    }
}

/* ============================================================================
   BLOG PAGE STYLES
   ============================================================================ */

/* Blog Hero - gold color variant */
.blog-hero-title {
    color: var(--color-gold);
}

/* Blog Section */
.blog-section {
    padding: var(--space-xl) 0;
    margin-top: -20px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.blog-empty {
    text-align: center;
    padding: var(--space-xl);
    color: var(--color-gray);
}

.blog-empty p {
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 600px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Card */
.blog-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(228, 199, 136, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    border-color: rgba(228, 199, 136, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 199, 136, 0.1);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    opacity: 0.5;
}

.blog-card-content {
    padding: var(--space-md);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
}

.blog-card-category {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-date {
    color: var(--color-gray);
}

.blog-card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
    color: var(--color-gold-light);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    gap: var(--space-xs);
}

.pagination-link {
    padding: 8px 16px;
    border: 1px solid rgba(228, 199, 136, 0.3);
    border-radius: 6px;
    color: var(--color-gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--text-sm);
}

.pagination-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.pagination-current {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg);
    font-weight: 600;
}

/* ============================================================================
   BLOG POST (INDIVIDUAL ARTICLE) STYLES
   ============================================================================ */

.blog-post-article {
    padding-top: calc(var(--space-xl) + 70px);
}

/* Post Header */
.blog-post-header {
    padding: calc(var(--space-xl) * 2) 0 var(--space-lg);
    text-align: center;
}

.blog-post-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    flex-wrap: wrap;
}

.blog-post-category {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-date,
.blog-post-readtime {
    color: var(--color-gray);
}

.blog-post-title {
    font-size: clamp(1.8rem, 1.5rem + 2vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.blog-post-excerpt {
    font-size: var(--text-lg);
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-post-author {
    color: var(--color-gray);
    font-size: var(--text-sm);
}

.author-name {
    color: var(--color-gold);
    font-weight: 600;
}

/* Featured Image */
.blog-post-featured-image {
    margin-bottom: var(--space-xl);
}

.blog-post-image-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.3);
}

/* Post Content */
.blog-post-content {
    padding: var(--space-lg) 0;
}

.blog-post-content-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.blog-post-body {
    color: var(--color-gray-light);
    font-size: var(--text-base);
    line-height: 1.8;
}

.blog-post-body h2 {
    color: var(--color-gold);
    font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
    font-weight: 700;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.blog-post-body h3 {
    color: var(--color-white);
    font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.blog-post-body p {
    margin-bottom: var(--space-md);
}

.blog-post-body ul,
.blog-post-body ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.blog-post-body li {
    margin-bottom: var(--space-xs);
}

.blog-post-body a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-body a:hover {
    color: var(--color-gold-light);
}

.blog-post-body strong {
    color: var(--color-white);
    font-weight: 600;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--color-gold);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--color-gray);
}

/* Tags */
.blog-post-tags {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(228, 199, 136, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
}

.tags-label {
    color: var(--color-gray);
    font-size: var(--text-sm);
    margin-right: var(--space-xs);
}

.tag {
    background: rgba(228, 199, 136, 0.1);
    border: 1px solid rgba(228, 199, 136, 0.3);
    color: var(--color-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--text-xs);
    text-transform: lowercase;
}

/* Share Section */
.blog-post-share {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(228, 199, 136, 0.2);
    border-bottom: 1px solid rgba(228, 199, 136, 0.2);
}

.blog-post-share-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.share-label {
    color: var(--color-gray);
    font-size: var(--text-sm);
}

.share-buttons {
    display: flex;
    gap: var(--space-sm);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 199, 136, 0.1);
    border: 1px solid rgba(228, 199, 136, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-2px);
}

/* Post Navigation */
.blog-post-navigation {
    padding: var(--space-xl) 0;
}

.blog-post-nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.post-nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (max-width: 768px) {
    .post-nav-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .post-nav-prev,
    .post-nav-next {
        order: 2;
    }

    .post-nav-back {
        order: 1;
    }
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
}

.post-nav-back {
    text-align: center;
}

.post-nav-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.post-nav-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: var(--text-sm);
}

.post-nav-link:hover {
    color: var(--color-gold-light);
}

.post-nav-back-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(228, 199, 136, 0.5);
    border-radius: 6px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.post-nav-back-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* ============================================================================
   DEV LAB PAGE
   ============================================================================ */
.page-hero-intro {
    max-width: 700px;
    margin: var(--space-md) auto 0;
    color: var(--color-gray-light);
    font-size: var(--text-base);
    line-height: 1.8;
    text-align: center;
}

.gold-subtle {
    color: var(--color-gold);
    opacity: 0.85;
}

.dev-lab-projects {
    padding: var(--space-lg) 0 var(--space-xl);
}

.dev-lab-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    gap: var(--space-lg);
}

/* Project Card */
.dev-lab-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(228, 199, 136, 0.25);
    border-radius: var(--radius-sm);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.dev-lab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, #c9a85c 50%, var(--color-gold) 100%);
}

.dev-lab-card:hover {
    border-color: rgba(228, 199, 136, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.dev-lab-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(228, 199, 136, 0.15);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(228, 199, 136, 0.3);
}

.dev-lab-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-top: var(--space-sm);
}

.dev-lab-icon {
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.dev-lab-icon svg {
    stroke: var(--color-gold);
}

.dev-lab-title {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.dev-lab-tagline {
    color: var(--color-gray-light);
    font-size: var(--text-base);
    font-style: italic;
}

/* Project Content */
.dev-lab-content {
    display: grid;
    gap: var(--space-md);
}

.dev-lab-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.dev-lab-description p {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.dev-lab-description p:last-child {
    margin-bottom: 0;
}

/* Meta Row */
.dev-lab-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(228, 199, 136, 0.1);
}

.dev-lab-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: var(--text-sm);
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dev-lab-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(228, 199, 136, 0.1);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(228, 199, 136, 0.2);
}

/* Feature Grid */
.feature-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(228, 199, 136, 0.1);
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(228, 199, 136, 0.3);
}

.feature-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.feature-text span {
    color: var(--color-gray-light);
    font-size: var(--text-sm);
}

/* Project CTA */
.dev-lab-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(228, 199, 136, 0.1);
}

.dev-lab-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a85c 100%);
    color: var(--color-bg);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dev-lab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(228, 199, 136, 0.3);
}

/* Coming Soon Section */
.dev-lab-coming-soon {
    text-align: center;
    padding: var(--space-xl);
    border: 2px dashed rgba(228, 199, 136, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(228, 199, 136, 0.03);
}

.coming-soon-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.dev-lab-coming-soon h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.dev-lab-coming-soon p {
    color: var(--color-gray-light);
    margin: 0;
}

/* Dev Lab Responsive */
@media (max-width: 768px) {
    .dev-lab-card {
        padding: var(--space-lg);
    }

    .dev-lab-badge {
        position: static;
        display: inline-block;
        margin-bottom: var(--space-md);
    }

    .dev-lab-header {
        padding-top: 0;
    }

    .dev-lab-meta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .dev-lab-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================
   DICE PROTOCOL - Custom Theme
   ================================ */

/* Dice Protocol Color Variables */
.dice-protocol-card {
    --dp-primary: #dc2626;
    --dp-primary-hover: #b91c1c;
    --dp-accent: #f59e0b;
    --dp-accent-light: #fcd34d;
    --dp-silver: #a1a1aa;
    --dp-silver-light: #d4d4d8;
    --dp-dark: #27272a;
    --dp-border: #3f3f46;
}

/* Card Override */
.dice-protocol-card {
    border: 1px solid rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.9) 0%, rgba(24, 24, 27, 0.95) 100%);
    padding-top: var(--space-lg);
}

.dice-protocol-card::before {
    background: var(--dp-primary);
}

.dice-protocol-card:hover {
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

/* Header Override */
.dice-protocol-header {
    padding-top: 0;
}

/* Title Row - Logo, Title, Badge inline */
.dice-protocol-title-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Logo */
.dice-protocol-logo {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.4));
}

/* Title */
.dice-protocol-title {
    color: var(--dp-primary) !important;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    margin: 0 !important;
}

/* Badge - inline style */
.dice-protocol-badge {
    position: static !important;
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-hover) 100%);
    color: #fff;
}

/* Status */
.dice-protocol-dot {
    background-color: var(--dp-primary) !important;
    box-shadow: 0 0 8px var(--dp-primary) !important;
}

/* Tech Tags */
.dice-protocol-tag {
    background: rgba(220, 38, 38, 0.15) !important;
    border-color: rgba(220, 38, 38, 0.3) !important;
    color: var(--dp-silver-light) !important;
}

/* Section Headings */
.dice-protocol-heading {
    color: var(--dp-primary) !important;
}

/* Button */
.dice-protocol-btn {
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-hover) 100%) !important;
    color: #fff !important;
}

.dice-protocol-btn:hover {
    box-shadow: 0 4px 25px rgba(220, 38, 38, 0.4) !important;
}

/* Feature Status Labels */
.feature-status {
    position: relative;
}

.feature-status-label {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 1;
}

.status-coming {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-in-dev {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ================================
   DEV LAB - Image Gallery
   ================================ */

.dev-lab-gallery {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(228, 199, 136, 0.1);
}

.dev-lab-gallery h3 {
    margin-bottom: var(--space-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xs);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
    background: var(--color-bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #18181b;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 500;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .dice-protocol-logo {
        width: 50px;
    }

    .dice-protocol-title-row {
        gap: var(--space-sm);
    }

    .dice-protocol-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    /* Status labels on mobile - move below content */
    .feature-status {
        padding-bottom: 28px;
    }

    .feature-status-label {
        top: auto;
        bottom: 6px;
        right: 6px;
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* ================================
   IMAGE MODAL
   ================================ */

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.image-modal.active {
    display: flex;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10001;
}

.image-modal-close:hover {
    color: var(--color-gold);
}

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-xs);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-section {
    padding: var(--space-lg) 0 var(--space-2xl);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: var(--color-bg-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(228, 199, 136, 0.1);
    overflow: hidden;
}

.contact-info-text {
    overflow: hidden;
    min-width: 0;
}

.contact-info-sidebar h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.contact-info-sidebar > p {
    color: var(--color-gray-light);
    margin-bottom: var(--space-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(228, 199, 136, 0.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--color-gold);
}

.contact-info-text h3 {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-link-large {
    font-size: var(--text-base);
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    word-break: break-word;
}

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

.contact-location {
    font-size: var(--text-lg);
    color: var(--color-cream);
    font-weight: 500;
    margin: 0;
}

.contact-subtext {
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin: 4px 0 0 0;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--color-bg-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(228, 199, 136, 0.1);
}

.contact-form-container h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-row .form-group {
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-group label {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: var(--color-bg);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: var(--radius-xs);
    padding: 12px 16px;
    font-size: var(--text-base);
    color: var(--color-cream);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(228, 199, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--color-bg);
    color: var(--color-cream);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a85c 100%);
    color: var(--color-bg);
    border: none;
    padding: 14px 32px;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--space-sm);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(228, 199, 136, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-messages {
    margin-top: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-xs);
    display: none;
}

.form-messages.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-messages.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 0 0 var(--space-2xl);
    background: var(--color-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.faq-section h2 {
    text-align: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-bg-light);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(228, 199, 136, 0.1);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active:hover {
    border-color: rgba(228, 199, 136, 0.3);
    box-shadow: 0 4px 20px rgba(228, 199, 136, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(228, 199, 136, 0.05);
}

.faq-question h3 {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-cream);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
    color: var(--color-gray-light);
    line-height: 1.7;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .contact-info-sidebar {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .contact-info-sidebar,
    .contact-form-container {
        padding: var(--space-lg);
    }

    .faq-question {
        padding: var(--space-md);
    }

    .faq-question h3 {
        font-size: var(--text-sm);
    }
}

/* ============================================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================================================ */
.legal-page {
    min-height: 100vh;
}

.legal-content {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--color-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.legal-text {
    background: rgba(38, 38, 38, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-xl);
}

.legal-text h2 {
    color: var(--color-gold);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(228, 199, 136, 0.2);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-text ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
    list-style: disc;
}

.legal-text li {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.legal-text a {
    color: var(--color-gold);
    transition: color var(--transition);
}

.legal-text a:hover {
    color: var(--color-gold-light);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-text {
        padding: var(--space-lg);
    }

    .legal-text h2 {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 0 var(--space-md);
    }

    .legal-text {
        padding: var(--space-md);
    }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */
@media print {
    *,
    *::before,
    *::after {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Hide non-essential elements */
    .header,
    .mobile-menu,
    .global-particles,
    .skip-link,
    .floating-call-btn,
    .contact-popup,
    .footer-blog-preview,
    .btn,
    nav {
        display: none !important;
    }

    /* Show URLs after links */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666 !important;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after,
    a[href^="tel:"]::after,
    a[href^="mailto:"]::after {
        content: "";
    }

    /* Page breaks */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important;
    }

    p, blockquote, ul, ol {
        orphans: 3;
        widows: 3;
    }

    /* Reset main content */
    main {
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer {
        border-top: 1px solid #ccc;
        padding-top: 20px;
        margin-top: 40px;
    }

    .footer-nav,
    .footer-blog-preview {
        display: none !important;
    }
}

/* ============================================================================
   COOKIE CONSENT BANNER
   ============================================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(228, 199, 136, 0.3);
    padding: var(--space-md) var(--space-lg);
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-consent.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-consent-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-consent-text {
    color: var(--color-gray-light);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
}

.cookie-btn-accept:hover {
    background: var(--color-gold-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-gray);
    border: 1px solid var(--color-gray);
}

.cookie-btn-decline:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

/* ============================================================================
   DISABLE ANIMATIONS ON MOBILE (except particles)
   ============================================================================ */
@media (max-width: 768px) {
    /* Disable scroll animations - show content immediately */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Disable header float animation */
    .header {
        animation: none !important;
        opacity: 1 !important;
    }

    /* Disable animations on most elements */
    *:not(.global-particle) {
        transition: none !important;
    }

    /* Keep particle animations running on mobile - let JS control duration */
    .global-particle {
        animation-name: globalFloat !important;
        animation-iteration-count: infinite !important;
        animation-timing-function: ease-out !important;
    }

    /* Disable hover/active scale effects */
    *:hover,
    *:active,
    *:focus {
        transform: none !important;
    }

    /* Hero text adjustments for mobile */
    .hero-brand {
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: var(--text-lg);
        margin-top: var(--space-xs);
    }

    .scramble-text {
        font-size: clamp(1.1rem, 1rem + 0.8vw, 1.4rem);
    }
}
