/* ========================================
   SERVICES HERO
   ======================================== */

.services-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: var(--night-blue);
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('./img/alpha-img-site (1).png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6);
}

/* ========================================
   GALLERY HERO
   ======================================== */

.gallery-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: var(--night-blue);
    overflow: hidden;
}

.gallery-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('./img/alpha-img-site (2).png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.gallery-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    max-width: 700px;
}

/* ========================================
   CONTACT HERO UNIQUE
   ======================================== */

/* ========================================
   CONTACT HERO - MODERN PREMIUM
   ======================================== */

.contact-hero-unique {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/alpha-img-site (3).png') center/cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
}

.contact-hero-content {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(99, 102, 241, 0.12);
    backdrop-filter: blur(16px);
    padding: 10px 24px;
    border-radius: 100px;
    color: #a5b4fc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.25);
    animation: slideDown 0.8s ease-out 0.2s both;
    transition: all 0.3s ease;
}

.contact-hero-badge:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.badge-dot-green {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}

.contact-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.contact-hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out both;
}

.contact-hero-title .title-line:nth-child(1) { animation-delay: 0.3s; }
.contact-hero-title .title-line:nth-child(2) { animation-delay: 0.4s; }
.contact-hero-title .title-line:nth-child(3) { animation-delay: 0.5s; }

.contact-hero-title .title-line.highlight {
    color: var(--primary-bronze);
    background: linear-gradient(135deg, var(--primary-bronze) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.6s both;
    font-weight: 400;
}

.contact-hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.7s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #f8fafc;
    transform: translateX(4px);
}

.feature-item i {
    color: #4ade80;
    font-size: 0.85rem;
}

.contact-hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.contact-cta-phone,
.contact-cta-simulator,
.contact-cta-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-phone {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: #f8fafc;
}

.contact-cta-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-cta-simulator {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    border: none;
}

.contact-cta-simulator:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.contact-cta-form {
    background: linear-gradient(135deg, var(--primary-bronze) 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
    border: none;
}

.contact-cta-form:hover {
    background: linear-gradient(135deg, #b45309 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.45);
}

.contact-hero-visual {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card-visual {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 3.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: float 8s ease-in-out infinite;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(205, 127, 50, 0.1);
    transition: all 0.5s ease;
}

.contact-card-visual:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 120px rgba(205, 127, 50, 0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

.card-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-bronze) 0%, #b87333 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(205, 127, 50, 0.4);
    transition: all 0.3s ease;
}

.contact-card-visual:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.card-stat .stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-stat .stat-text {
    display: block;
    font-size: 1rem;
    color: #94a3b8;
    margin-top: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@media (max-width: 992px) {
    .contact-hero-unique {
        height: auto;
        min-height: auto;
        padding: 100px 0 60px;
    }

    .contact-hero-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 40px;
    }

    .contact-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .contact-hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-hero-visual {
        max-width: 100%;
    }

    .contact-card-visual {
        padding: 2.5rem;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero-unique {
        padding: 80px 0 40px;
    }

    .contact-hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .contact-hero-content {
        padding: 0;
    }

    .contact-hero-badge {
        font-size: 0.8rem;
        padding: 9px 20px;
    }

    .contact-hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .contact-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-hero-features {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-cta-phone,
    .contact-cta-simulator,
    .contact-cta-form {
        padding: 15px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .card-icon {
        width: 72px;
        height: 72px;
        font-size: 1.75rem;
    }

    .card-stat .stat-value {
        font-size: 2.75rem;
    }
}

/* ========================================
   PROJECTS FILTERS
   ======================================== */

.projects-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #eee;
    border-radius: 30px;
    font-weight: 600;
    color: var(--night-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary-bronze);
    background: rgba(205, 127, 50, 0.05);
    transform: translateY(-2px);
}

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

.filter-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .projects-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   CONTACT HERO
   ======================================== */

.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: var(--night-blue);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('./img/alpha-img-site (3).png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    max-width: 700px;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 280px;
    max-width: 700px;
}

.breadcrumb {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb .active {
    color: var(--primary-bronze);
}

.services-hero h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ========================================
   PROJECTS HERO
   ======================================== */

.projects-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--night-blue);
}

.projects-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.projects-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.projects-hero-slide.active {
    opacity: 1;
}

.projects-hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0.65) 100%);
}

.projects-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    max-width: 800px;
}

.projects-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s ease-out 0.2s both;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.projects-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.highlight {
    color: var(--primary-bronze);
    text-shadow: 0 0 40px rgba(205, 127, 50, 0.5);
}

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

.projects-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.projects-hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.7s both;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-bronze);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.projects-hero-ctas {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.projects-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-bronze);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(205, 127, 50, 0.4);
}

.projects-cta-primary:hover {
    background: var(--primary-bronze-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(205, 127, 50, 0.5);
}

.projects-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.projects-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.projects-hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: var(--primary-bronze);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .projects-hero-content {
        padding: 0 30px;
    }

    .projects-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .projects-hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .projects-hero-ctas {
        flex-direction: column;
    }

    .projects-hero-indicators {
        left: 30px;
        bottom: 30px;
    }
}

/* ========================================
   RECENT PROJECTS SECTION
   ======================================== */

.recent-projects-section {
    padding: 100px 0;
    background: #f5f4f0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-location {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(13, 27, 42, 0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

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

.project-gallery-trigger {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(205, 127, 50, 0.95);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-gallery-trigger:hover {
    background: rgba(205, 127, 50, 1);
    transform: scale(1.05);
}

.project-gallery-trigger i {
    margin-right: 6px;
}

.project-content {
    padding: 1.75rem;
}

.project-category {
    display: inline-block;
    background: rgba(205, 127, 50, 0.1);
    color: var(--primary-bronze);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.project-content h3 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--night-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.project-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.project-meta span {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-meta i {
    color: var(--primary-bronze);
}

@media (max-width: 768px) {
    .recent-projects-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.15rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   SIMULATOR HERO COMPACT
   ======================================== */

.simulator-hero-compact {
    background: linear-gradient(135deg, var(--night-blue) 0%, #0a1628 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.simulator-hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/alpha-img-site (1).png') center/cover;
    opacity: 0.08;
    pointer-events: none;
}

.simulator-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.simulator-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(205, 127, 50, 0.15);
    border: 2px solid var(--primary-bronze);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    color: var(--primary-bronze);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.simulator-hero-badge i {
    font-size: 1rem;
}

.simulator-hero-compact h1 {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: slideUp 0.7s ease-out 0.2s both;
}

.simulator-hero-compact p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideUp 0.7s ease-out 0.35s both;
}

.simulator-hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--primary-bronze);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .simulator-hero-compact {
        padding: 6rem 0 2rem;
    }
    
    .simulator-hero-compact h1 {
        font-size: 2rem;
    }
    
    .simulator-hero-compact p {
        font-size: 1rem;
    }
    
    .simulator-hero-features {
        gap: 1.5rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
}

/* ========================================
   SIMULATOR COMPACT DESIGN
   ======================================== */

.simulator-section-compact {
    padding: 3rem 0 5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.simulator-container-compact {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.simulator-form-container-compact {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.simulator-header-compact {
    margin-bottom: 2rem;
}

.step-progress {
    margin-bottom: 1.5rem;
}

.step-progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.step-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-bronze) 0%, var(--primary-bronze-light) 100%);
    width: 25%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

.step-progress-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--night-blue);
}

/* Results Preview Below Form */
.simulator-results-preview {
    max-width: 700px;
    margin: 0 auto;
}

.results-preview-card {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.05) 0%, rgba(205, 127, 50, 0.02) 100%);
    border: 2px solid var(--primary-bronze);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.results-preview-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.results-preview-card h3 i {
    color: var(--primary-bronze);
}

.preview-price {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.preview-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-bronze);
    line-height: 1.2;
}

.preview-details {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.preview-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.btn-contact-simulator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-bronze);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
}

.btn-contact-simulator:hover {
    background: var(--primary-bronze-light);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .simulator-container-compact {
        max-width: 100%;
    }
    
    .preview-details {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* ========================================
   SIMULATOR HERO (LEGACY - REMOVE)
   ======================================== */

.simulator-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background: var(--night-blue);
    overflow: hidden;
}

.simulator-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.85) 100%),
                url('./img/alpha-img-site (1).png') center/cover;
}

.simulator-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    max-width: 800px;
}

.simulator-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    animation: slideUp 0.8s ease-out 0.2s both;
}

.simulator-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.simulator-hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out both;
}

.simulator-hero-title .title-line:nth-child(1) { animation-delay: 0.3s; }
.simulator-hero-title .title-line:nth-child(2) { animation-delay: 0.4s; }

.simulator-hero-title .title-line.highlight {
    color: var(--primary-bronze);
    text-shadow: 0 0 40px rgba(205, 127, 50, 0.5);
}

.simulator-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.5s both;
}

.simulator-hero-info {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.simulator-hero-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.simulator-hero-info .info-item i {
    color: #4CAF50;
}

/* ========================================
   SIMULATOR SECTION
   ======================================== */

.simulator-section {
    padding: 40px 0;
    background: #f5f4f0;
}

.simulator-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.simulator-form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.simulator-header {
    margin-bottom: 2rem;
}

.simulator-header h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--night-blue);
    margin-bottom: 0.5rem;
}

.simulator-header p {
    color: #666;
    font-size: 0.95rem;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 2px solid #eee;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-bronze);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-indicator:not(.active) .step-number {
    background: #ddd;
    color: #666;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--night-blue);
    text-align: center;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.form-step h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.project-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.project-type-option input {
    display: none;
}

.option-card {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: var(--primary-bronze);
    background: rgba(205, 127, 50, 0.05);
}

.project-type-option input:checked + .option-card {
    border-color: var(--primary-bronze);
    background: rgba(205, 127, 50, 0.1);
}

.option-card i {
    font-size: 2rem;
    color: var(--primary-bronze);
    margin-bottom: 0.75rem;
}

.option-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 0.4rem;
}

.option-card p {
    font-size: 0.85rem;
    color: #666;
}

.surface-input-group {
    margin-bottom: 1.5rem;
}

.surface-input-group label {
    display: block;
    font-weight: 600;
    color: var(--night-blue);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.surface-input-group input {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.surface-input-group input:focus {
    outline: none;
    border-color: var(--primary-bronze);
}

.surface-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #888;
}

.surface-info i {
    color: var(--primary-bronze);
}

.room-quick-select {
    margin-bottom: 1.5rem;
}

.room-quick-select p {
    font-weight: 600;
    color: var(--night-blue);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.room-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.room-btn {
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 8px;
    font-weight: 600;
    color: var(--night-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.room-btn:hover {
    border-color: var(--primary-bronze);
    background: rgba(205, 127, 50, 0.05);
}

.details-group {
    margin-bottom: 1.25rem;
}

.details-group label {
    display: block;
    font-weight: 600;
    color: var(--night-blue);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.details-group input,
.details-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--night-blue);
    transition: all 0.3s ease;
    font-family: inherit;
}

.details-group input:focus,
.details-group select:focus {
    outline: none;
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 3px rgba(205, 127, 50, 0.1);
}

.details-group input::placeholder {
    color: #94a3b8;
}

.details-group select option {
    color: var(--night-blue);
    background: var(--white);
}

.details-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.faq-section .details-group input,
.faq-section .details-group select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.faq-section .details-group input:focus,
.faq-section .details-group select:focus {
    border-color: var(--primary-bronze);
    background: rgba(255, 255, 255, 0.15);
}

.faq-section .details-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-section .details-group select option {
    color: var(--night-blue);
    background: var(--white);
}

.faq-section .details-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-next-step,
.btn-prev-step,
.btn-calculate {
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 0.95rem;
}

.btn-next-step,
.btn-calculate {
    background: var(--primary-bronze);
    color: var(--white);
    margin-left: auto;
}

.btn-next-step:hover,
.btn-calculate:hover {
    background: var(--primary-bronze-light);
    transform: translateY(-2px);
}

.btn-prev-step {
    background: #eee;
    color: var(--night-blue);
}

.btn-prev-step:hover {
    background: #ddd;
}

.btn-request-quote {
    padding: 1rem 2rem;
    background: var(--primary-bronze);
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    transition: all 0.3s ease;
}

.btn-request-quote:hover {
    background: var(--primary-bronze-light);
    transform: translateY(-2px);
}

.estimation-results {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.result-summary {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.result-label {
    font-weight: 600;
    color: #666;
}

.result-value {
    font-weight: 700;
    color: var(--night-blue);
}

.result-price {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-bronze);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.result-breakdown {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
}

.result-breakdown h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

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

.breakdown-item.total {
    border-top: 2px solid #eee;
    border-bottom: none;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-bronze);
}

.simulator-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.info-card-icon {
    width: 45px;
    height: 45px;
    background: rgba(205, 127, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.info-card-icon i {
    font-size: 1.3rem;
    color: var(--primary-bronze);
}

.info-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 0.6rem;
}

.info-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.info-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-bronze);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.info-phone:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .simulator-container {
        grid-template-columns: 1fr;
    }
    
    .simulator-hero-content {
        padding: 0 30px;
    }
    
    .simulator-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .simulator-hero-info {
        flex-wrap: wrap;
    }
    
    .project-type-options {
        grid-template-columns: 1fr;
    }
    
    .room-buttons {
        flex-direction: column;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-next-step,
    .btn-calculate,
    .btn-request-quote {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: -60px;
    right: 0;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -50px;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-next {
        right: 10px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-image {
        max-height: 70vh;
    }
}

/* ========================================
   SECTION INTRO
   ======================================== */

.section-intro,
.section-intro-dark {
    text-align: left;
    margin-bottom: 60px;
}

.section-label,
.section-label-red {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-label {
    color: var(--primary-bronze);
}

.section-label-red {
    color: var(--primary-bronze);
}

.section-intro h2,
.section-intro-dark h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-intro h2 {
    color: var(--night-blue);
}

.section-intro-dark h2 {
    color: var(--white);
}

.section-intro p,
.section-intro-dark p {
    font-size: 1rem;
    line-height: 1.8;
}

.section-intro p {
    color: #666;
}

.section-intro-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   EXPERTISES SECTION
   ======================================== */

.expertises-section {
    background: var(--white);
    padding: 100px 0;
}

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

.expertise-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.expertise-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.expertise-icon {
    position: absolute;
    top: 170px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-bronze);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.expertise-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.expertise-card h3 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--night-blue);
    padding: 50px 20px 10px;
    letter-spacing: 0.5px;
}

.expertise-card p {
    font-size: 0.85rem;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.expertise-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: var(--primary-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.expertise-arrow:hover {
    transform: scale(1.1);
}

.expertise-features {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expertise-features span {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expertise-features i {
    color: var(--primary-bronze);
    font-size: 0.7rem;
}

.red-line {
    width: 60px;
    height: 3px;
    background: var(--primary-bronze);
    margin: 20px 0;
}

/* ========================================
   SERVICE DETAILS SECTION
   ======================================== */

.service-details-section {
    background: #F8F8F8;
    padding: 100px 0;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-row.reverse .service-detail-image {
    order: 2;
}

.service-detail-row.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--night-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-detail-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-detail-list li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.service-detail-list i {
    color: var(--primary-bronze);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-note {
    font-size: 0.9rem;
    color: var(--primary-bronze);
    font-weight: 600;
    font-style: italic;
    margin-top: 20px;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: var(--night-blue);
    padding: 100px 0;
}

.faq-section .section-intro h2 {
    color: var(--white);
}

.faq-section .section-intro p {
    color: rgba(255, 255, 255, 0.8);
}

.faq-section .section-label {
    color: var(--primary-bronze);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(205, 127, 50, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3,
.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-bronze);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   COMMITMENTS SECTION
   ======================================== */

.commitments-section {
    background: var(--white);
    padding: 100px 0;
}

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

.commitment-card {
    background: #F8F8F8;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: transparent;
    border: 2px solid var(--primary-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon i {
    font-size: 1.8rem;
    color: var(--primary-bronze);
}

.commitment-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    color: var(--night-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.commitment-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   SERVICES CTA SECTION
   ======================================== */

.services-cta-section {
    background: linear-gradient(135deg, var(--night-blue) 0%, var(--dark-gray) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.btn-primary {
    padding: 18px 40px;
    background: var(--primary-bronze);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-bronze-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.4);
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--night-blue);
    transform: translateY(-2px);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    background: var(--night-blue);
    padding: 100px 0;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: transparent;
    border: 2px solid var(--primary-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-bronze);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.process-step h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.process-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

/* ========================================
   QUALITY & MATERIALS SECTION
   ======================================== */

.quality-materials-section {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 600px;
}

.quality-left {
    background: var(--white);
    padding: 100px 60px;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.quality-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary-bronze);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-icon i {
    font-size: 1.8rem;
    color: var(--primary-bronze);
}

.quality-text h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--night-blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.quality-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.quality-cta {
    background: var(--primary-bronze);
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.quality-cta::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?w=1200&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.quality-cta h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quality-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-white-arrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: var(--white);
    color: var(--night-blue);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-white-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ========================================
   SERVICES DETAIL PAGE
   ======================================== */

.services-detail-section {
    background: #E8E8E8;
    padding: 80px 0;
}

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

.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-detail-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-detail-header i {
    font-size: 4rem;
    color: var(--white);
}

.service-detail-content {
    padding: 30px;
}

.service-detail-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--night-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-detail-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-list i {
    color: var(--primary-bronze);
    font-size: 0.8rem;
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.red-line-small {
    width: 50px;
    height: 3px;
    background: var(--primary-bronze);
    margin: 20px 0;
}

.text-red {
    color: var(--primary-bronze);
}

.gallery-main-section {
    background: #F5F5F5;
    padding: 60px 0 80px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-filters-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn-modern {
    padding: 12px 25px;
    background: var(--white);
    border: none;
    color: var(--night-blue);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn-modern.active {
    background: var(--primary-bronze);
    color: var(--white);
}

.filter-btn-modern:hover {
    background: var(--primary-bronze);
    color: var(--white);
}

.filter-icon {
    padding: 12px 25px;
    background: var(--white);
    border: 1px solid #ddd;
    color: var(--night-blue);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.filter-icon:hover {
    border-color: var(--primary-bronze);
    color: var(--primary-bronze);
}

.filter-icon i {
    margin-right: 8px;
}

/* MASONRY GRID */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-masonry-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-masonry-item.tall {
    grid-row: span 2;
}

.gallery-masonry-item.wide {
    grid-column: span 2;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-masonry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-masonry-item:hover::after {
    opacity: 1;
}

/* GALLERY CTA */
.gallery-cta-section {
    background: var(--night-blue);
    padding: 60px 0;
}

.gallery-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gallery-cta-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--primary-bronze);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-cta-icon i {
    font-size: 2.5rem;
    color: var(--primary-bronze);
}

.gallery-cta-text {
    flex: 1;
}

.gallery-cta-text h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.gallery-cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.btn-red-arrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: var(--primary-bronze);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-red-arrow:hover {
    background: #C00500;
    transform: translateY(-2px);
}

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

.contact-modern-section {
    background: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
}

.contact-info-modern {
    padding-right: 40px;
}

.contact-details-modern {
    margin-top: 50px;
    display: grid;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary-bronze);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.5rem;
    color: var(--primary-bronze);
}

.contact-detail-text h4 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--night-blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-detail-text p {
    font-size: 1.1rem;
    color: var(--night-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-detail-text span {
    font-size: 0.85rem;
    color: #666;
}

/* CONTACT FORM */
.contact-form-modern {
    background: #F8F8F8;
    padding: 50px;
    border-radius: 15px;
}

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

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--night-blue);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--night-blue);
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

.btn-submit-modern {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary-bronze);
    color: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.btn-submit-modern:hover {
    background: var(--primary-bronze-dark);
    transform: translateY(-2px);
}

/* MAP SECTION */
.map-cta-section {
    height: 500px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    filter: grayscale(20%);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertises-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        display: flex;
        flex-direction: column;
    }

    .expertise-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .expertise-features span {
        flex: 1 1 auto;
        min-width: 120px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-modern {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 60vh;
        min-height: 400px;
    }

    .services-hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .services-hero-content {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
        text-align: left;
    }

    .expertise-image {
        height: 160px;
    }

    .expertise-icon {
        top: 130px;
        width: 45px;
        height: 45px;
    }

    .expertise-icon i {
        font-size: 1.2rem;
    }

    .expertise-card h3 {
        padding: 35px 20px 10px;
        font-size: 0.85rem;
    }

    .expertise-card p {
        padding: 0 20px 15px;
        font-size: 0.8rem;
    }

    .expertise-features {
        padding: 0 20px 20px;
    }

    .expertise-features span {
        font-size: 0.75rem;
    }

    .expertise-arrow {
        width: 30px;
        height: 30px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-row.reverse .service-detail-image {
        order: 1;
    }

    .service-detail-row.reverse .service-detail-content {
        order: 2;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-content h3 {
        font-size: 1.3rem;
    }

    .service-detail-content p {
        font-size: 0.9rem;
    }

    .service-detail-list li {
        font-size: 0.85rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-number {
        display: none;
    }

    .process-step h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .process-step p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-card {
        padding: 25px 20px;
    }

    .commitment-card h4 {
        font-size: 0.95rem;
    }

    .commitment-card p {
        font-size: 0.85rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-filters-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-icon {
        margin-left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-modern {
        padding: 30px;
    }
}

/* ========================================
   PROJECTS HERO — TWO-COLUMN LAYOUT
   ======================================== */

.projects-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.projects-hero-inner > .projects-hero-content {
    height: auto;
    flex: 1;
    max-width: 660px;
}

.projects-hero-visual {
    flex: 0 0 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px 0 20px;
}

.projects-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    animation: slideUp 0.8s ease-out 0.9s both;
}

.phc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.phc-header i {
    color: var(--primary-bronze);
    font-size: 1.25rem;
}

.phc-header span {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.phc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phc-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
}

.phc-list li i {
    color: var(--primary-bronze);
    width: 16px;
    text-align: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.phc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-bronze);
    color: var(--white);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.phc-cta:hover {
    background: var(--primary-bronze-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.4);
}

/* Scroll-down indicator */
.projects-hero-scroll {
    position: absolute;
    bottom: 44px;
    right: 60px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
    animation: scrollBob 2.5s ease-in-out infinite;
    border: none;
    background: none;
}

.projects-hero-scroll:hover {
    color: rgba(255, 255, 255, 0.85);
}

.projects-hero-scroll i {
    font-size: 1rem;
}

@keyframes scrollBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 1100px) {
    .projects-hero-visual { flex: 0 0 300px; }
}

@media (max-width: 900px) {
    .projects-hero-visual { display: none; }
    .projects-hero-scroll { right: 30px; bottom: 72px; }
}

/* ========================================
   SIMULATOR UX IMPROVEMENTS
   ======================================== */

/* Hero badge animation */
.simulator-hero-compact .simulator-hero-badge {
    animation: slideUp 0.7s ease-out 0.1s both;
}

.simulator-hero-compact .simulator-hero-features {
    animation: slideUp 0.7s ease-out 0.5s both;
}

/* Step dot indicators */
.step-indicators-compact {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.step-dot-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.35s ease;
    font-family: var(--font-primary);
}

.step-dot.active .step-dot-num {
    background: var(--primary-bronze);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(205, 127, 50, 0.18);
}

.step-dot.completed .step-dot-num {
    background: #22c55e;
    color: var(--white);
    font-size: 0;
}

.step-dot.completed .step-dot-num::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
}

.step-dot-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #bbb;
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-dot.active .step-dot-label,
.step-dot.completed .step-dot-label {
    color: var(--night-blue);
}

.step-dot-connector {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    transition: background 0.4s ease;
    margin-bottom: 15px;
    min-width: 20px;
}

.step-dot-connector.completed {
    background: #22c55e;
}

/* Inline form errors */
.form-inline-error {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.07);
    border: 1px solid rgba(220, 53, 69, 0.22);
    border-radius: 8px;
    padding: 10px 14px;
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeIn 0.25s ease;
}

.form-inline-error.visible {
    display: flex;
}

.form-inline-error i {
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Selected state checkmark on option cards */
.project-type-option input:checked + .option-card::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--primary-bronze);
    font-size: 1rem;
}

/* Active room button */
.room-btn.active {
    background: rgba(205, 127, 50, 0.1);
    border-color: var(--primary-bronze);
    color: var(--primary-bronze);
}

/* Restart button */
.btn-restart {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #f0f0ee;
    color: #777;
    border: none;
    padding: 0.75rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-family: var(--font-secondary);
}

.btn-restart:hover {
    background: #e4e4e0;
    color: var(--night-blue);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .step-dot-label { display: none; }
    .step-dot-connector { min-width: 12px; }
}

/* ========================================
   GALLERY UX IMPROVEMENTS
   ======================================== */

/* Card entrance animation */
@keyframes cardEnter {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.project-card {
    animation: cardEnter 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Hover overlay — visual affordance for lightbox */
.project-image-clickable {
    cursor: pointer;
}

.project-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

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

.project-view-overlay i {
    font-size: 2.2rem;
    color: var(--primary-bronze);
}

.project-view-overlay span {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

/* Category badge inside image */
.project-img-category {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(13, 27, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.project-img-category i {
    color: var(--primary-bronze);
    font-size: 0.75rem;
}

/* Skeleton loading cards */
.project-skeleton {
    pointer-events: none;
    animation: none;
}

.project-skeleton-img {
    height: 250px;
}

.project-skeleton-body {
    padding: 1.75rem;
}

.project-skeleton-img,
.project-skeleton-tag,
.project-skeleton-title,
.project-skeleton-text,
.project-skeleton-meta {
    border-radius: 6px;
    background: linear-gradient(90deg, #ebebeb 25%, #f5f5f5 50%, #ebebeb 75%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

.project-skeleton-tag   { height: 22px; width: 32%; margin-bottom: 14px; }
.project-skeleton-title { height: 26px; width: 82%; margin-bottom: 12px; }
.project-skeleton-text  { height: 14px; width: 100%; margin-bottom: 10px; }
.project-skeleton-meta  { height: 14px; width: 55%; margin-bottom: 0; }

@keyframes shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Empty / error state */
.gallery-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.gallery-empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: #ddd;
}

.gallery-empty-state p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 6px;
}

.gallery-empty-state span {
    font-size: 0.875rem;
    color: #999;
}

.gallery-empty-error i { color: #f5c6c6; }
.gallery-empty-error p { color: #c0392b; }

/* ================================================
   PROJECTS HERO v2 — Modern Redesign
   ================================================ */

/* Ken Burns on the active slide */
.projects-hero-slide {
    transform-origin: center center;
}
.projects-hero-slide.active {
    animation: kenBurns 10s ease-out forwards;
}
@keyframes kenBurns {
    from { transform: scale(1.07); }
    to   { transform: scale(1.00); }
}

/* Neutralise the built-in slide overlay so ph-overlays owns all darkening */
.projects-hero-slide::after {
    background: none;
}

/* Ambient floating shapes */
.ph-ambient {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.ph-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(205, 127, 50, 0.07);
    border: 1px solid rgba(205, 127, 50, 0.13);
}
.ph-shape-1 {
    width: 500px; height: 500px;
    top: -140px; right: 6%;
    animation: floatShape 22s ease-in-out infinite;
}
.ph-shape-2 {
    width: 260px; height: 260px;
    bottom: 10%; right: 30%;
    animation: floatShape 17s ease-in-out infinite reverse;
    animation-delay: -7s;
}
.ph-shape-3 {
    width: 720px; height: 720px;
    top: 18%; left: -300px;
    animation: floatShape 28s ease-in-out infinite;
    animation-delay: -12s;
    border-radius: 38% 62% 62% 38% / 42% 42% 58% 58%;
    background: rgba(205, 127, 50, 0.04);
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30%       { transform: translate(18px, -14px) rotate(4deg); }
    60%       { transform: translate(-12px, 22px) rotate(-3deg); }
    80%       { transform: translate(8px, -8px) rotate(2deg); }
}

/* Layered overlays */
.ph-overlays {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.ph-overlay-base {
    position: absolute; inset: 0;
    background: linear-gradient(
        115deg,
        rgba(13, 27, 42, 0.93) 0%,
        rgba(13, 27, 42, 0.70) 52%,
        rgba(13, 27, 42, 0.32) 100%
    );
}
.ph-overlay-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 68% 50%, transparent 32%, rgba(13, 27, 42, 0.58) 100%);
}
.ph-overlay-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 260px;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.82), transparent);
}

/* Left bronze accent bar */
.ph-accent-bar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 3px;
    height: 110px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-bronze) 35%,
        var(--primary-bronze) 65%,
        transparent
    );
    opacity: 0;
    animation: fadeIn 0.8s ease 1.5s forwards;
}

/* Clip-path text reveal (scoped — doesn't affect contact.html) */
.projects-hero .title-line {
    opacity: 1;
    transform: none;
    clip-path: inset(0 100% 0 0);
    animation: revealLine 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.projects-hero .title-line:nth-child(1) { animation-delay: 0.30s; }
.projects-hero .title-line:nth-child(2) { animation-delay: 0.50s; }
.projects-hero .title-line:nth-child(3) { animation-delay: 0.70s; }

@keyframes revealLine {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

/* Stat dividers */
.ph-stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
    align-self: center;
    flex-shrink: 0;
}

/* Photo mosaic */
.ph-mosaic {
    display: flex;
    gap: 10px;
    height: 420px;
    width: 100%;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
.ph-mosaic-main {
    position: relative;
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}
.ph-mosaic-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.ph-mosaic-main:hover .ph-mosaic-img {
    transform: scale(1.06);
}
.ph-mosaic-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--primary-bronze);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.45);
}
.ph-mosaic-side {
    flex: 0 0 118px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ph-mosaic-thumb {
    flex: 1;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}
.ph-mosaic-thumb:hover {
    transform: scale(1.04) translateY(-5px);
}

/* Bottom bar */
.ph-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.ph-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}
.ph-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-bronze-dark), var(--primary-bronze-light));
    animation: progressFill 5s linear forwards;
}
@keyframes progressFill {
    from { width: 0; }
    to   { width: 100%; }
}
.ph-bottom-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px 28px;
}
.ph-slide-counter {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    min-width: 70px;
}
.ph-counter-current {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.ph-counter-sep,
.ph-counter-total {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
}

/* Pill-style indicators (override existing dots) */
.ph-bottom-controls .projects-hero-indicators {
    position: static;
    bottom: auto;
    left: auto;
}
.projects-hero .indicator {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    transition: all 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    transform: none;
}
.projects-hero .indicator:hover {
    background: rgba(255, 255, 255, 0.55);
}
.projects-hero .indicator.active {
    width: 32px;
    background: var(--primary-bronze);
    transform: none;
}
.projects-hero .indicator.active:hover {
    background: var(--primary-bronze);
}

/* Scroll button inside bottom bar (override absolute positioning) */
.ph-bottom-controls .projects-hero-scroll {
    position: static;
    bottom: auto;
    right: auto;
    animation: scrollBob 2.5s ease-in-out infinite;
    flex-direction: row;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    justify-content: flex-end;
    min-width: 110px;
}
.ph-bottom-controls .projects-hero-scroll i {
    font-size: 0.72rem;
}
.ph-bottom-controls .projects-hero-scroll:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 1100px) {
    .projects-hero-visual { flex: 0 0 300px; }
    .ph-mosaic { height: 360px; }
    .ph-mosaic-side { flex: 0 0 100px; }
}
@media (max-width: 900px) {
    .projects-hero-visual { display: none; }
    .ph-accent-bar { display: none; }
    .ph-bottom-controls { padding: 14px 30px 22px; }
}
@media (max-width: 768px) {
    .ph-counter-current { font-size: 1.2rem; }
    .ph-slide-counter { display: none; }
    .ph-bottom-controls .projects-hero-scroll span { display: none; }
}

/* ================================================
   GALLERY PAGE — Full Redesign
   ================================================ */

/* ── Projects Section ─────────────────────────── */
.pg-projects-section {
    background: #f5f4f0;
    padding-bottom: 100px;
}

/* ── Split section header ───────────────────────── */
.pg-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 90px;
    padding-bottom: 48px;
}

.pg-section-header-left { flex: 1; }

.pg-section-header-left .label-eyebrow {
    margin-bottom: 14px;
}

.pg-section-header-left h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--night-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.pg-section-subtitle {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.8;
    max-width: 480px;
}

.pg-section-header-right {
    flex-shrink: 0;
}

.pg-count-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--night-blue);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-bronze);
}

.pg-count-num {
    font-family: var(--font-primary);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-bronze);
}

.pg-count-label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ── Sticky filter bar ──────────────────────────── */
.pg-filter-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 244, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 48px;
    transition: box-shadow 0.3s ease;
}

.pg-filter-bar.is-stuck {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.pg-filter-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.pg-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pg-filter {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--white);
    border: 1.5px solid #e8e8e8;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.pg-filter i {
    font-size: 0.82rem;
    transition: color 0.28s ease;
}

.pg-filter:hover {
    border-color: var(--primary-bronze);
    color: var(--night-blue);
    background: rgba(205, 127, 50, 0.05);
    transform: translateY(-1px);
}

.pg-filter.active {
    background: var(--night-blue);
    border-color: var(--night-blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.2);
}

.pg-filter.active i {
    color: var(--primary-bronze);
}

.pg-filter-meta {
    flex-shrink: 0;
}

.pg-filter-count {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pg-filter-count span {
    color: var(--primary-bronze);
    font-weight: 800;
}

/* ── Project grid ───────────────────────────────── */
.pg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Project card (pcard) ───────────────────────── */
.pcard {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    animation: cardEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    cursor: pointer;
    position: relative;
}

.pcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.13);
}

/* Image area */
.pcard-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee;
}

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

.pcard:hover .pcard-img img {
    transform: scale(1.07);
}

/* View overlay */
.pcard-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pcard:hover .pcard-overlay {
    opacity: 1;
}

.pcard-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.pcard-overlay-inner i {
    font-size: 2rem;
    color: var(--primary-bronze);
    filter: drop-shadow(0 0 12px rgba(205, 127, 50, 0.6));
}

.pcard-overlay-inner span {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Category badge */
.pcard-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13, 27, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.pcard-cat-badge i {
    color: var(--primary-bronze);
    font-size: 0.7rem;
}

/* Card body */
.pcard-body {
    padding: 22px 24px 24px;
}

.pcard-title {
    font-family: var(--font-primary);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--night-blue);
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.pcard:hover .pcard-title {
    color: var(--primary-bronze);
}

.pcard-desc {
    font-size: 0.855rem;
    color: #888;
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pcard-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid #f0efe9;
}

.pcard-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-size: 0.73rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.3px;
}

.pcard-meta-item i {
    color: var(--primary-bronze);
    font-size: 0.7rem;
}

/* ── CTA Section ──────────────────────────────────── */
.pg-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--night-blue);
}

.pg-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transform: scale(1.04);
}

.pg-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.96) 0%,
        rgba(13, 27, 42, 0.82) 100%
    );
}

.pg-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pg-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(205, 127, 50, 0.12);
    border: 1px solid rgba(205, 127, 50, 0.28);
    color: var(--primary-bronze);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.pg-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pg-cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.pg-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.pg-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 36px;
    background: var(--primary-bronze);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 28px rgba(205, 127, 50, 0.4);
}

.pg-cta-btn-primary:hover {
    background: var(--primary-bronze-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(205, 127, 50, 0.5);
}

.pg-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.pg-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.pg-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pg-cta-trust i {
    color: var(--primary-bronze);
    margin-right: 4px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1200px) {
    .pg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .pg-section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .pg-count-badge { align-self: flex-start; }
}

@media (max-width: 768px) {
    .pg-projects-section { padding-bottom: 70px; }
    .pg-section-header { padding-top: 60px; padding-bottom: 32px; }
    .pg-grid { grid-template-columns: 1fr; gap: 20px; }
    .pg-filter-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .pg-filter-pills { gap: 6px; }
    .pg-filter { padding: 7px 14px; font-size: 0.74rem; }
    .pg-cta-section { padding: 80px 0; }
    .pg-cta-actions { flex-direction: column; align-items: center; }
    .pg-cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
    .pg-filter i { display: none; }
    .pg-count-badge { padding: 14px 18px; }
    .pg-count-num { font-size: 2rem; }
}
