/*
Theme Name: Studio Inserto
Theme URI: https://studioinserto.ba
Author: Studio Inserto
Author URI: https://studioinserto.ba
Description: Premium minimalisticki theme za arhitektonski studio STUDIO INSERTO. Moderan, elegantan dizajn sa fokusom na portfolio projekata.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studio-inserto
Tags: portfolio, architecture, minimal, modern, responsive, custom-logo, featured-images

STUDIO INSERTO - Arhitektura koja traje.
*/

/* ==========================================================================
   CSS Variables - Design System (DARK THEME)
   ========================================================================== */
:root {
    /* Colors - Matte Black Theme with Green Accents */
    --color-primary: #00D26A;
    --color-primary-dark: #00B85C;
    --color-primary-light: #33E088;
    --color-secondary: #0A0A0A;
    --color-dark: #000000;

    /* Grayscale for matte black theme */
    --color-gray-900: #FFFFFF;
    --color-gray-800: #F5F5F5;
    --color-gray-700: #E0E0E0;
    --color-gray-600: #BDBDBD;
    --color-gray-500: #9E9E9E;
    --color-gray-400: #757575;
    --color-gray-300: #424242;
    --color-gray-200: #2A2A2A;
    --color-gray-100: #1A1A1A;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Matte black backgrounds */
    --color-bg: #0D0D0D;
    --color-bg-elevated: #141414;
    --color-bg-card: #1A1A1A;
    --color-text: #FFFFFF;
    --color-text-muted: #B0B0B0;
    --color-border: #2A2A2A;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1440px;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

@media (max-width: 768px) {
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }
}

p {
    margin-bottom: var(--space-4);
}

.lead {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-lg {
    max-width: var(--container-2xl);
}

.section {
    padding: var(--space-20) 0;
}

.section-sm {
    padding: var(--space-12) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-bg-card);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-bg-elevated);
}

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

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

.btn-outline-white {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-gray-900);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: var(--transition-base);
}

.site-header.scrolled {
    background-color: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .nav-link {
    color: var(--color-text);
}

.site-header.scrolled .site-logo {
    color: var(--color-text);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.site-logo span {
    color: var(--color-primary);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-base);
}



@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-gray-900);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: var(--space-8);
        gap: var(--space-6);
        transition: var(--transition-base);
    }

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

    .nav-link {
        font-size: var(--text-2xl);
        color: var(--color-white);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-900);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 var(--space-6);
}

.hero-subtitle {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-title span {
    color: var(--color-primary);
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--color-gray-300);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-description {
        font-size: var(--text-lg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--color-white);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    padding: var(--space-8);
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 210, 106, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    color: var(--color-primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

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

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Portfolio / Projects
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.filter-btn {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text-muted);
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

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

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

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

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-bg-card);
    aspect-ratio: 16/9;
}

.project-card-image {
    position: absolute;
    inset: 0;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

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

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover .project-card-content {
    transform: translateY(0);
    opacity: 1;
}

.project-card-category {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

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

.project-card-meta {
    font-size: var(--text-sm);
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    padding: var(--space-6);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}

.process-step h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Benefits / Why Us Section
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

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

.benefit-item {
    display: flex;
    gap: var(--space-4);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.benefit-content h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.benefit-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
    background-color: var(--color-bg-elevated);
}

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

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

.testimonial-card {
    background-color: var(--color-bg-card);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
}

.testimonial-quote {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    font-size: var(--text-4xl);
    color: var(--color-primary);
    line-height: 0;
    vertical-align: middle;
    margin-right: var(--space-2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    overflow: hidden;
}

.testimonial-info h5 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--color-white);
}

.cta-section .section-description {
    color: var(--color-gray-400);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-gray-400);
    padding-top: var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--color-gray-800);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer-logo span {
    color: var(--color-primary);
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-menu li {
    margin-bottom: var(--space-3);
}

.footer-menu a {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.footer-contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-800);
    border-radius: var(--radius-md);
    color: var(--color-gray-400);
    transition: var(--transition-base);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.footer-bottom {
    padding: var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

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

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

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

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

/* ==========================================================================
   Single Project Page
   ========================================================================== */
.project-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background-color: var(--color-gray-900);
}

.project-hero-image {
    position: absolute;
    inset: 0;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-12) 0;
    color: var(--color-white);
}

.project-category {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.project-title {
    font-size: var(--text-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.project-meta-hero {
    display: flex;
    gap: var(--space-8);
    font-size: var(--text-base);
    color: var(--color-gray-300);
}

.project-meta-hero span {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-12);
}

@media (max-width: 968px) {
    .project-details {
        grid-template-columns: 1fr;
    }
}

.project-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    margin-top: var(--space-8);
}

.project-content h2:first-child {
    margin-top: 0;
}

.project-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.project-info-card {
    background-color: var(--color-bg-card);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    border: 1px solid var(--color-border);
}

.project-info-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.project-info-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.project-info-item:last-child {
    border-bottom: none;
}

.project-info-item span:first-child {
    color: var(--color-text-muted);
}

.project-info-item span:last-child {
    font-weight: var(--font-medium);
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-8) 0;
}

@media (max-width: 640px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }
}

/* Project Sections with Numbers */
.project-section {
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid var(--color-border);
}

.project-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.project-section-title {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
}

.gallery-count {
    margin-left: auto;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-card);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.project-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-muted);
}

.project-description p {
    margin-bottom: var(--space-4);
}

/* 3D Visualization Section */
.project-3d-viz {
    margin: var(--space-6) 0;
}

.project-3d-viz > a {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #00D26A 0%, #00A555 100%);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.project-3d-viz img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
}

.project-3d-viz > a:hover img {
    transform: scale(1.02);
    opacity: 0.95;
}

.viz-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.8) 0%, rgba(0, 165, 85, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    opacity: 0;
    transition: var(--transition-base);
    color: #fff;
}

.viz-overlay svg {
    color: #fff;
}

.viz-overlay span {
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-3d-viz > a:hover .viz-overlay {
    opacity: 1;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

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

@media (max-width: 640px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }
}

.project-gallery img {
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.project-gallery img:hover {
    transform: scale(1.02);
}

/* Gallery Item with Overlay */
.project-gallery .gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.project-gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item-overlay svg {
    color: #fff;
}

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

/* Project Floorplan Section */
.project-floorplan {
    margin: var(--space-8) 0;
}

.project-floorplan > a {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.project-floorplan img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
}

.project-floorplan > a:hover img {
    transform: scale(1.02);
}

.floorplan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    opacity: 0;
    transition: var(--transition-base);
    color: #fff;
}

.floorplan-overlay svg {
    color: #fff;
}

.floorplan-overlay span {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.project-floorplan > a:hover .floorplan-overlay {
    opacity: 1;
}

/* PDF Download Section */
.project-pdf-download {
    margin: var(--space-10) 0;
}

.pdf-download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-decoration: none;
}

.pdf-download-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-elevated);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 106, 0.2);
}

.pdf-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdf-icon svg {
    color: #fff;
}

.pdf-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pdf-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-text);
}

.pdf-filename {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    word-break: break-all;
}

.pdf-download-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.pdf-download-icon svg {
    color: #fff;
}

.pdf-download-btn:hover .pdf-download-icon {
    transform: scale(1.1);
}

/* PDF Sidebar Card */
.pdf-sidebar-card {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, var(--color-bg-card) 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* CTA Sidebar Card */
.cta-card {
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.1) 0%, var(--color-bg-card) 100%);
    border: 1px solid rgba(0, 210, 106, 0.3);
}

.cta-card h4 {
    color: var(--color-text);
}

.cta-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

/* Responsive */
@media (max-width: 640px) {
    .pdf-download-btn {
        flex-wrap: wrap;
    }

    .pdf-icon {
        width: 50px;
        height: 50px;
    }

    .pdf-icon svg {
        width: 30px;
        height: 30px;
    }

    .pdf-download-icon {
        width: 40px;
        height: 40px;
    }

    .pdf-title {
        font-size: var(--text-base);
    }

    .project-gallery .gallery-item img {
        height: 150px;
    }

    /* Project Sections Mobile */
    .project-section {
        margin-bottom: var(--space-8);
        padding-bottom: var(--space-6);
    }

    .project-section-title {
        font-size: var(--text-xl);
        gap: var(--space-3);
        flex-wrap: wrap;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .gallery-count {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .project-3d-viz > a {
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

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

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

.contact-info-list {
    margin-top: var(--space-8);
}

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

.contact-info-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-info-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.contact-info-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background-color: var(--color-bg-card);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-elevated);
    color: var(--color-text);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 210, 106, 0.1);
}

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

/* Map */
.contact-map {
    margin-top: var(--space-12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Blog / Archive
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

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

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

.blog-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

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

.blog-card-category {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.blog-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.blog-card-meta {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-header {
    background-color: var(--color-secondary);
    padding: var(--space-32) 0 var(--space-16);
    text-align: center;
}

.page-header-title {
    font-size: var(--text-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.page-header-description {
    font-size: var(--text-lg);
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    font-size: var(--text-sm);
}

.breadcrumbs a {
    color: var(--color-gray-400);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs span {
    color: var(--color-gray-600);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-500); }

.bg-light { background-color: var(--color-bg-elevated); }
.bg-dark { background-color: var(--color-secondary); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.hidden { display: none; }

@media (max-width: 768px) {
    .hidden-mobile { display: none; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

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

/* ==========================================================================
   Hero Pencil Drawing Animation
   ========================================================================== */

/* Pencil Overlay */
.pencil-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: #0D0D0D;
    animation: pencilFadeOut 0.5s ease forwards;
    animation-delay: 2.5s;
    pointer-events: none;
}

@keyframes pencilFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* SVG Drawing Lines */
.pencil-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.draw-line {
    fill: none;
    stroke: #00D26A;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 1.5s ease forwards;
}

.draw-line-1 { animation-delay: 0s; }
.draw-line-2 { animation-delay: 0.1s; stroke: #fff; stroke-width: 1; }
.draw-line-3 { animation-delay: 0.2s; }
.draw-line-4 { animation-delay: 0.3s; stroke: #fff; stroke-width: 1; }
.draw-line-5 { animation-delay: 0.15s; stroke-width: 1; }
.draw-line-6 { animation-delay: 0.25s; stroke: #fff; stroke-width: 1; }
.draw-line-7 { animation-delay: 0.35s; stroke-width: 1; }
.draw-line-8 { animation-delay: 0.45s; stroke: #fff; stroke-width: 1; }
.draw-line-9 { animation-delay: 0.5s; stroke-width: 3; }

@keyframes drawLine {
    0% {
        stroke-dashoffset: 2000;
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Pencil Wipe Effect */
.pencil-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 210, 106, 0.3) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(0, 210, 106, 0.3) 55%,
        transparent 100%
    );
    animation: wipeAcross 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
}

@keyframes wipeAcross {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Clean Overlay (subtle) */
.hero-overlay-clean {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

/* Hero Pencil Content Styles */
.hero-pencil .hero-content {
    opacity: 0;
    animation: contentReveal 1s ease forwards;
    animation-delay: 2.5s;
}

@keyframes contentReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */
.hero-pencil .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: #00D26A;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* Title Styling */
.hero-pencil .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-pencil .title-word {
    display: block;
    line-height: 1;
}

.hero-pencil .title-word:first-child {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.5em;
    color: #FFFFFF;
}

.hero-pencil .title-green {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #00D26A;
    text-shadow: 0 0 60px rgba(0, 210, 106, 0.5);
}

/* Description - WHITE TEXT */
.hero-pencil .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.hero-pencil .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-pencil .btn {
    position: relative;
    overflow: hidden;
}

.hero-pencil .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-pencil .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Scroll Mouse Indicator */
.hero-pencil .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 3.5s;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #00D26A;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-pencil .title-word:first-child {
        letter-spacing: 0.3em;
    }

    .hero-pencil .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .draw-line-5,
    .draw-line-6,
    .draw-line-7,
    .draw-line-8 {
        display: none;
    }

    .scroll-mouse {
        width: 22px;
        height: 36px;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    overflow: hidden;
    padding-top: 80px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-dark) 100%);
    opacity: 0.9;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--space-12) var(--space-6);
}

.about-hero .hero-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.about-hero h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.about-hero h1 span {
    color: var(--color-primary);
}

.about-hero p {
    font-size: var(--text-xl);
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: var(--text-4xl);
    }
}

/* About Studio Section */
.about-studio-section {
    background-color: var(--color-bg);
}

.about-studio-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-12);
    align-items: start;
}

@media (max-width: 968px) {
    .about-studio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

.about-studio-content .section-label {
    text-align: left;
}

.about-studio-content .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.about-studio-text p {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.about-studio-text p:last-child {
    margin-bottom: 0;
}

.about-studio-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.about-stat-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: var(--transition-base);
}

.about-stat-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.about-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 210, 106, 0.1);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.about-stat-icon svg {
    width: 28px;
    height: 28px;
}

.about-stat-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.about-stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* About Services Section */
.about-services-section {
    background-color: var(--color-bg-elevated);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 968px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.about-service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: var(--transition-base);
}

.about-service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 210, 106, 0.1);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.about-service-icon svg {
    width: 28px;
    height: 28px;
}

.about-service-card h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.about-service-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* About Values Section */
.about-values-section {
    background-color: var(--color-bg-elevated);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 968px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

.about-value-item {
    text-align: center;
    padding: var(--space-6);
}

.about-value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-4);
    color: var(--color-white);
}

.about-value-icon svg {
    width: 28px;
    height: 28px;
}

.about-value-item h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.about-value-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   About Architect Section
   ========================================================================== */
.about-architect-section {
    background-color: var(--color-bg);
}

.about-architect-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-16);
    align-items: center;
}

@media (max-width: 968px) {
    .about-architect-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

.about-architect-image {
    position: relative;
}

.architect-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-elevated) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

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

.architect-placeholder-icon {
    width: 120px;
    height: 120px;
    color: var(--color-gray-400);
}

.architect-credentials {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.credential-item {
    flex: 1;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-align: center;
}

.credential-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.credential-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-architect-content {
    max-width: 600px;
}

.about-architect-content .section-label {
    text-align: left;
}

.about-architect-content .section-title {
    text-align: left;
    margin-bottom: var(--space-2);
}

.architect-role {
    font-size: var(--text-lg);
    color: var(--color-primary);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-6);
}

.architect-bio {
    margin-bottom: var(--space-6);
}

.architect-bio p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.architect-bio p:last-child {
    margin-bottom: 0;
}

.architect-focus {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.focus-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.focus-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.focus-item span {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text);
}

@media (max-width: 640px) {
    .about-architect-grid {
        gap: var(--space-8);
    }

    .architect-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .architect-credentials {
        max-width: 300px;
        margin: var(--space-4) auto 0;
    }

    .about-architect-content {
        text-align: center;
    }

    .about-architect-content .section-label,
    .about-architect-content .section-title {
        text-align: center;
    }

    .architect-focus {
        align-items: center;
    }
}




