/* -------------------------------------------------------------
 * STUDIO ABDULLAH - DESIGN SYSTEM & PORTFOLIO STYLING (LIGHT)
 * ------------------------------------------------------------- */

/* Reset & Variables */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-card: #ffffff;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.16);
    --color-text-primary: #000000;
    --color-text-secondary: #4a4a52;
    --color-text-muted: #88888c;
    --color-accent-blue: #000000;
    --color-accent-purple: #1a1a1c;
    --gradient-accent: linear-gradient(135deg, #111111 0%, #000000 100%);
    --gradient-accent-hover: linear-gradient(135deg, #333333 0%, #111111 100%);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* Hide ambient glow effects for clean light monochrome layout */
.glow-bg {
    display: none;
}

/* Typography & Base Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

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

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

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

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reusable Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222222;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-quick);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

.btn-block {
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
    padding-bottom: 2px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-header {
    margin-bottom: 4rem;
}

/* -------------------------------------------------------------
 * Navigation Header
 * ------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 105;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.header:has(.mobile-menu-toggle.active) {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    backdrop-filter: none !important;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 0.5rem;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-quick);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.mobile-cta {
    margin-top: 1rem;
}

/* -------------------------------------------------------------
 * Hero Section
 * ------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.hero-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.0;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-secondary);
    max-width: 680px;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.scroll-down {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-dot {
    width: 6px;
    height: 18px;
    border: 1.5px solid var(--color-text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 5px;
    background: var(--color-text-primary);
    border-radius: 50%;
    animation: scrollScroll 1.5s infinite ease-in-out;
}

@keyframes scrollScroll {
    0% { top: 3px; opacity: 1; }
    100% { top: 9px; opacity: 0; }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* -------------------------------------------------------------
 * Work Section & Portfolio
 * ------------------------------------------------------------- */
.work-section {
    padding: 8rem 0;
    border-top: 1px solid var(--color-border);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-quick);
}

.filter-btn:hover, .filter-btn.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Large card sizing pattern */
.portfolio-item:nth-child(3n+1) {
    grid-column: span 2;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

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

.project-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #000000;
    transition: var(--transition-smooth);
}

.project-view-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
    transition: var(--transition-smooth);
}

.project-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.project-card:hover .project-img {
    transform: scale(1.03);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-view-btn {
    transform: scale(1);
}

.project-info {
    padding: 1.75rem;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.35rem;
    font-weight: 700;
    transition: var(--transition-quick);
}

/* -------------------------------------------------------------
 * About Section
 * ------------------------------------------------------------- */
.about-section {
    padding: 8rem 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 5rem;
    align-items: flex-start;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image-card {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-bg-alt);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.about-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-card:hover .about-featured-img {
    transform: scale(1.03);
}

.about-typography-box {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.big-char {
    font-family: var(--font-heading);
    font-size: 13rem;
    font-weight: 800;
    line-height: 0.8;
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.03;
    position: absolute;
    bottom: -20px;
    right: -10px;
    pointer-events: none;
}

.box-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.philosophy-statement {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    z-index: 1;
}

.about-bio {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.stat-item {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.skill-percentage {
    color: var(--color-text-secondary);
}

.skill-bar-wrapper {
    height: 4px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: #000000;
    border-radius: 10px;
}

/* -------------------------------------------------------------
 * Creative Process Section
 * ------------------------------------------------------------- */
.process-section {
    padding: 8rem 0;
    border-top: 1px solid var(--color-border);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.process-step {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    position: relative;
}

.process-step:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    opacity: 0.15;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* -------------------------------------------------------------
 * Contact Section
 * ------------------------------------------------------------- */
.contact-section {
    padding: 8rem 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.contact-minimal {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.contact-minimal-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.contact-details-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.detail-item-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}

.contact-divider {
    width: 1px;
    height: 60px;
    background-color: var(--color-border);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.scroll-reveal.revealed .contact-divider {
    transform: scaleY(1);
}

.detail-item-minimal .detail-value {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-quick);
}

.detail-item-minimal .detail-value::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-item-minimal .detail-value:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
}

@media (max-width: 768px) {
    .contact-details-minimal {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-divider {
        width: 60px;
        height: 1px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }
    .scroll-reveal.revealed .contact-divider {
        transform: scaleX(1);
    }
}

/* -------------------------------------------------------------
 * Footer Section
 * ------------------------------------------------------------- */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* -------------------------------------------------------------
 * Project Lightbox Modal
 * ------------------------------------------------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.lightbox-container {
    background: #ffffff;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    z-index: 1001;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.lightbox.open .lightbox-container {
    transform: translateY(0) scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border: 1px solid var(--color-border);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: var(--transition-quick);
}

.lightbox-close:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: #f8f9fa;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* -------------------------------------------------------------
 * Scroll Reveal Classes
 * ------------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
 * Responsive Media Queries
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-item:nth-child(3n+1) {
        grid-column: span 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-typography-box {
        aspect-ratio: 16/9;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .lightbox-content {
        grid-template-columns: 1fr;
    }
    
    .lightbox-media {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .lightbox-info {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Toggle active state */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        margin-bottom: 2.5rem;
        padding: 1.5rem 0;
    }
}

/* About lists and taglines */
.about-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.8rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.about-list-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.list-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-list li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.about-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-text-muted);
}

.about-closing {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.5;
}
