/* ========================================
   SKYHOOK MODULAR ARCHITECTS
   Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #A56133;
    --color-primary-dark: #8a5129;
    --color-secondary: #AC8C66;
    --color-dark: #171717;
    --color-darker: #0d0d0d;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #e5e5e5;

    /* Typography */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;

    /* Sizes */
    --header-height: 80px;
    --container-max: 1400px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* Screen reader only (visually hidden) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { font-size: 52px; }
h2 { font-size: 42px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-dark);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    position: relative;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    left: 0;
    transition: transform var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* ========================================
   HERO SECTION - InteriorArc Style
   ======================================== */
.hero-section {
    margin-top: var(--header-height);
}

.hero-carousel {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
    background: var(--color-dark);
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

/* Split Layout: Content Left, Image Right */
.slide-content-wrapper {
    width: 50%;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.slide-content {
    max-width: 550px;
    color: var(--color-white);
    text-align: left;
}

.slide-tag {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
}

.slide-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 1px;
    background: var(--color-primary);
}

.slide-content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.carousel-slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.carousel-slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s, background 0.3s, color 0.3s, border-color 0.3s;
}

.carousel-slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.slide-content .btn:hover svg {
    transform: translateX(5px);
}

/* Image Side */
.slide-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-dark) 0%, transparent 30%);
}

/* Navigation Controls */
.carousel-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.carousel-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-control:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.carousel-control svg {
    width: 20px;
    height: 20px;
}

/* Slide Counter */
.carousel-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

.carousel-counter .current-slide {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
}

.carousel-counter .separator {
    opacity: 0.5;
}

.carousel-counter .total-slides {
    opacity: 0.6;
}

/* Vertical Indicators */
.carousel-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--color-white);
    transition: height 0.3s ease;
}

.indicator.active::before,
.indicator:hover::before {
    height: 100%;
}

.indicator.active {
    height: 50px;
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-carousel {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .carousel-slide {
        flex-direction: column-reverse;
    }

    .slide-content-wrapper,
    .slide-image {
        width: 100%;
    }

    .slide-image {
        height: 50vh;
        min-height: 300px;
    }

    .slide-image::after {
        background: linear-gradient(180deg, transparent 50%, var(--color-dark) 100%);
    }

    .slide-content-wrapper {
        padding: 50px 30px 100px;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .carousel-nav {
        bottom: 30px;
    }

    .carousel-indicators {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .carousel-indicators {
        display: none;
    }

    .carousel-control {
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   STATS (legacy - kept for other pages)
   ======================================== */

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   SERVICES SECTION - Trusted Experience
   ======================================== */
.services-section {
    position: relative;
    padding: 100px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(247,247,247,0.95) 100%);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

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

/* Left Column */
.services-text-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-text-col.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.services-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 25px;
}

/* Text Rotator - Vertical Slide */
.txt-rotate {
    display: inline-block;
    position: relative;
    color: var(--color-primary);
    overflow: hidden;
    vertical-align: bottom;
    height: 1.2em;
}

.txt-rotate .rotate-word {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(80%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}

.txt-rotate .rotate-word.active {
    opacity: 1;
    transform: translateY(0);
}

.txt-rotate .rotate-word.exit {
    opacity: 0;
    transform: translateY(-80%);
}

.services-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

/* Bullet Lists */
.services-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.services-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
}

.services-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Right Column - Counter */
.services-counter-col {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.services-counter-col.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-counter-box {
    background: url('/media/misc/Drawing.png') center / contain no-repeat;
    padding: 80px 60px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.services-counter-number {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.services-counter-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

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

.project-card {
    display: block;
    background: var(--color-white);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-image-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform var(--transition-slow);
    user-select: none;
    -webkit-user-drag: none;
}

.project-image img.active {
    opacity: 1;
    position: relative;
}

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

.project-card.swiping .project-image img.active {
    transform: none;
}

.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.project-card:hover .gallery-counter,
.project-card.swiping .gallery-counter {
    opacity: 1;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background var(--transition-normal);
}

.project-card:hover .project-overlay {
    background: rgba(0,0,0,0.5);
}

.project-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

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

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-location {
    font-size: 14px;
    color: var(--color-text-light);
}

.project-location i {
    color: var(--color-primary);
    margin-right: 5px;
}

.no-items {
    text-align: center;
    padding: 40px;
    color: var(--color-text-light);
    grid-column: 1 / -1;
}

/* ========================================
   PROCESS SECTION - Partner With Us
   ======================================== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.process-divider {
    width: 60px;
    height: 20px;
    margin-bottom: 30px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 2px,
        var(--color-primary) 2px,
        var(--color-primary) 3px
    );
    opacity: 0.6;
}

.process-intro h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
}

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

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.process-step {
    position: relative;
}

.step-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

/* ========================================
   SHOWREEL SECTION - See How We Build
   ======================================== */
.showreel-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showreel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.showreel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showreel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.showreel-section .container {
    position: relative;
    z-index: 2;
}

.showreel-content {
    text-align: center;
    color: var(--color-white);
    padding: 80px 0;
}

.showreel-content h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.showreel-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.showreel-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.showreel-meta p {
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    white-space: nowrap;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-divider {
    width: 60px;
    height: 20px;
    margin-bottom: 30px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 2px,
        var(--color-primary) 2px,
        var(--color-primary) 3px
    );
    opacity: 0.6;
}

.faq-intro h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
}

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

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: var(--color-dark);
    transition: color var(--transition-normal);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    position: absolute;
    color: var(--color-primary);
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

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

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 0 22px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

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

.blog-card {
    display: block;
    background: var(--color-white);
    overflow: hidden;
    transition: all var(--transition-normal);
}

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

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

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

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

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.read-more i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--color-darker);
    background-image: url('/media/misc/BG2-1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-white);
}

.footer-main {
    padding: 70px 0 60px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Left */
.footer-heading {
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(150,150,150,0.16);
    color: var(--color-white);
    font-size: 15px;
    transition: border-color var(--transition-normal);
}

.newsletter-form input:focus {
    outline: none;
    border-bottom-color: var(--color-white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(150,150,150,0.16);
    color: var(--color-white);
    cursor: pointer;
    font-size: 16px;
    transition: color var(--transition-normal);
}

.newsletter-form button:hover {
    color: var(--color-primary);
}

.footer-logo {
    margin-top: 10px;
}

.footer-logo img {
    height: 43px;
    width: auto;
}

/* Footer Right */
.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 60px;
}

.footer-contact {
    text-align: right;
}

.footer-locations {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-locations span {
    display: block;
}

.footer-contact-block {
    margin-bottom: 25px;
}

.footer-contact-block:last-child {
    margin-bottom: 0;
}

.footer-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.footer-contact-block a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}

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

.footer-bottom p {
    color: rgba(130,130,130,1);
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(150,150,150,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    border-color: var(--color-white);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--color-white);
    font-size: 56px;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

/* Blog Page Header - dark text on light background */
.blog-header .page-header-overlay {
    background: rgba(255,255,255,0.3);
}

.blog-header h1 {
    color: #333;
}

.blog-header p {
    color: #555;
}

/* Contact Page Header - light text on dark background */
.contact-header .page-header-overlay {
    background: rgba(0,0,0,0.4);
}

.contact-header h1 {
    color: #e0e0e0;
}

.contact-header p {
    color: #ccc;
}

/* ========================================
   PROJECTS PAGE
   ======================================== */
.projects-page-section {
    padding: var(--section-padding) 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--color-border);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

.no-projects {
    text-align: center;
    padding: 60px;
    color: var(--color-text-light);
    grid-column: 1 / -1;
}

.no-projects i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* ========================================
   PROJECT DETAIL PAGE
   ======================================== */
.project-header {
    height: 500px;
}

.project-header .container {
    text-align: left;
    max-width: 800px;
}

.project-category-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 20px;
}

.project-header .project-meta {
    display: flex;
    gap: 30px;
    color: rgba(255,255,255,0.8);
}

.project-header .project-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-content {
    padding: var(--section-padding) 0;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.project-description .lead {
    font-size: 20px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.project-body {
    color: var(--color-text-light);
    line-height: 1.8;
}

.project-gallery {
    margin-top: 50px;
}

.project-gallery h3 {
    margin-bottom: 25px;
}

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

.gallery-item img {
    width: 100%;
    border-radius: 8px;
}

.project-info-card {
    background: var(--color-light);
    padding: 30px;
    margin-bottom: 30px;
}

.project-info-card h3 {
    margin-bottom: 20px;
    font-size: 16px;
}

.project-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-details-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.project-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-weight: 500;
    color: var(--color-text-light);
}

.detail-value {
    text-transform: capitalize;
}

.project-cta {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 30px;
    text-align: center;
}

.project-cta h3 {
    margin-bottom: 10px;
}

.project-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.related-projects {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

.related-projects h2 {
    margin-bottom: 40px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-content .section-tag {
    color: var(--color-white);
    margin-bottom: 20px;
    display: block;
}

.about-hero-content h1 {
    color: var(--color-white);
    font-size: 56px;
    margin-bottom: 25px;
}

.about-hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
}

/* About Services */
.about-services {
    padding: 40px 0 30px;
    background: #e3e3e3;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-service-col {
    text-align: center;
    padding: 25px 20px;
}

.about-service-icon {
    width: 55px;
    height: 55px;
    background: var(--color-dark);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}

.about-service-col h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.about-service-subtitle {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.about-service-subtitle strong {
    color: var(--color-primary);
}

.about-service-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.about-service-list li {
    position: relative;
    padding: 7px 0;
    padding-left: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    color: var(--color-text);
}

.about-service-list li:last-child {
    border-bottom: none;
}

.about-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* About Stages Slider */
.about-stages {
    padding: 50px 0 40px;
    background: var(--color-dark);
}

.stages-header {
    text-align: center;
    margin-bottom: 30px;
}

.stages-header .section-tag {
    color: var(--color-primary);
    display: block;
    margin-bottom: 15px;
}

.stages-header h2 {
    color: var(--color-white);
}

.stages-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.stages-slider-track {
    position: relative;
}

.stage-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 0;
}

.stage-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.stage-slide-image {
    margin-bottom: 15px;
}

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

.stage-slide-info .stage-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 6px;
}

.stage-slide-info h3 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.stage-slide-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    max-width: 450px;
    margin: 0 auto;
}

/* Slider Arrows */
.stages-slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition-normal);
    z-index: 2;
}

.stages-slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.stages-slider-prev {
    left: -80px;
}

.stages-slider-next {
    right: -80px;
}

/* Slider Dots */
.stages-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.stages-dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.stages-dot.active {
    background: var(--color-primary);
    width: 45px;
}

/* About Disciplines */
.about-disciplines {
    padding: var(--section-padding) 0;
    background: var(--color-darker);
}

.disciplines-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.discipline-overlay-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
}

.discipline-overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discipline-overlay-card:hover img {
    transform: scale(1.1);
}

.discipline-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-white);
    transition: padding 0.3s ease;
}

.discipline-overlay-card:hover .discipline-overlay-content {
    padding-bottom: 40px;
}

.discipline-overlay-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.discipline-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.discipline-link i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.discipline-overlay-card:hover .discipline-link i {
    transform: translateX(5px);
}

/* ========================================
   OUR STUDIO PAGE
   ======================================== */

/* Studio Hero */
.studio-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

.studio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.studio-hero .container {
    position: relative;
    z-index: 1;
}

.studio-hero-content {
    max-width: 650px;
}

.studio-hero-content .section-tag {
    color: var(--color-primary);
    margin-bottom: 20px;
    display: block;
}

.studio-hero-content h1 {
    color: var(--color-white);
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.studio-hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
    max-width: 500px;
}

/* Studio Intro */
.studio-intro {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

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

.studio-intro-left .process-divider {
    margin-bottom: 25px;
}

.studio-intro-left h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.studio-intro-left p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.studio-intro-left p:last-child {
    margin-bottom: 0;
}

.studio-intro-image {
    overflow: hidden;
}

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

.studio-intro-image:hover img {
    transform: scale(1.03);
}

/* Studio Values */
.studio-values {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

.studio-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.studio-values-header .section-tag {
    display: block;
    margin-bottom: 15px;
}

.studio-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.studio-value-card {
    background: var(--color-white);
    padding: 40px 30px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.studio-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.studio-value-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
    transition: opacity var(--transition-normal);
}

.studio-value-card:hover .studio-value-number {
    opacity: 1;
}

.studio-value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.studio-value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

/* Client Logos */
.client-logos {
    padding: 80px 0;
    background: var(--color-dark);
}

.client-logos-header {
    text-align: center;
    margin-bottom: 50px;
}

.client-logos-header .section-tag {
    display: block;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.client-logos-header h2 {
    color: var(--color-white);
    font-size: 32px;
    margin: 0;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    width: 100%;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.client-logo-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.client-logo-item img {
    max-width: 160px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logo-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.client-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.client-logo-item:hover .client-logo-text {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-logo-item {
        height: 80px;
        padding: 20px 15px;
    }

    .client-logo-item img {
        max-width: 120px;
        max-height: 40px;
    }

    .client-logos-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo-text {
        font-size: 16px;
    }
}

/* Studio Team */
.studio-team {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.studio-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.studio-team-header .section-tag {
    display: block;
    margin-bottom: 15px;
}

.studio-team-header h2 {
    margin-bottom: 20px;
}

.studio-team-header p {
    color: var(--color-text-light);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}

.studio-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

a.team-member-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-member-card {
    text-align: center;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 20px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-member-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transition: gap var(--transition-normal);
}

.team-member-card:hover .team-member-view {
    gap: 12px;
}

.team-member-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.team-member-role {
    font-size: 13px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-top: 12px;
}

/* Studio Gallery */
.studio-gallery {
    overflow: hidden;
}

.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.studio-gallery-item {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.studio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ========================================
   TEAM MEMBER DETAIL PAGE
   ======================================== */

/* Member Hero */
.member-hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    background: var(--color-light);
}

.member-hero-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
    align-items: start;
}

.member-hero-image {
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

.member-hero-content .section-tag {
    display: block;
    margin-bottom: 15px;
}

.member-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.member-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.member-divider {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin-bottom: 25px;
}

.member-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition-normal);
}

.member-social a:hover {
    background: var(--color-primary);
}

/* Member Role Section */
.member-role-section {
    padding: 80px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.member-role-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.member-role-left h2 {
    font-size: 30px;
    line-height: 1.2;
}

.member-role-right p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* Member Expertise */
.member-expertise {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.member-expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.member-expertise-header h2 {
    color: var(--color-white);
}

.member-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.member-expertise-item {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.member-expertise-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.member-expertise-icon {
    width: 60px;
    height: 60px;
    background: rgba(165, 97, 51, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.member-expertise-item h3 {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 12px;
}

.member-expertise-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* Member Experience */
.member-experience {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.member-experience-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.member-experience-left h2 {
    font-size: 30px;
    line-height: 1.2;
}

.member-timeline {
    display: flex;
    flex-direction: column;
}

.member-timeline-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: baseline;
}

.member-timeline-item:first-child {
    padding-top: 0;
}

.member-timeline-item:last-child {
    border-bottom: none;
}

.member-timeline-period {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.member-timeline-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.member-timeline-org {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Member CTA */
.member-cta {
    padding: 50px 0;
    background: var(--color-light);
    border-top: 1px solid var(--color-border);
}

.member-cta-content {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.member-cta .btn-outline i {
    margin-right: 8px;
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-page-section {
    padding: var(--section-padding) 0;
}

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

.blog-card.featured {
    grid-column: 1 / -1;
}

.blog-card.featured .blog-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card.featured .blog-image {
    aspect-ratio: auto;
    height: 100%;
}

.blog-card.featured .blog-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card.featured h2 {
    font-size: 32px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 13px;
    color: var(--color-text-light);
}

.blog-meta i {
    color: var(--color-primary);
    margin-right: 5px;
}

.blog-excerpt {
    color: var(--color-text-light);
    line-height: 1.7;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: var(--color-light);
}

.no-posts i {
    font-size: 60px;
    color: var(--color-border);
    margin-bottom: 20px;
}

.no-posts h3 {
    margin-bottom: 10px;
}

.no-posts p {
    color: var(--color-text-light);
}

/* ========================================
   BLOG POST PAGE
   (Styles are self-contained in blog-post.ejs)
   ======================================== */

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.contact-info-card {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 40px;
}

.contact-info-card h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.info-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.info-content a {
    color: rgba(255,255,255,0.7);
}

.info-content a:hover {
    color: var(--color-white);
}

.contact-social h3 {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-primary);
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

/* ========================================
   ERROR PAGES
   ======================================== */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
    padding: 60px 0;
}

.error-content h1 {
    font-size: 120px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.error-details {
    background: var(--color-light);
    padding: 20px;
    margin: 20px 0;
    font-size: 14px;
    overflow-x: auto;
}
