﻿/* ===== PAGES CSS ===== */
/* mobile.css loaded via <link> tag in HTML */

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background: var(--navy);
    overflow: hidden;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.page-banner__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-banner__desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.625rem;
}

/* ===== ABOUT PAGE ===== */
.story-section {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

.about-story {
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 60%, #f4f6fb 100%);
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-lead {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}

.highlight {
    background: var(--navy-dark, #0a1628);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.highlight:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.highlight-icon i {
    font-size: 1rem;
    color: var(--gold);
}

.highlight-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
}

.highlight-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.story-content .section-title {
    margin-bottom: 0.8rem;
    font-size: 2rem;
}

.story-content p {
    margin-bottom: 0.6rem;
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.92rem;
}

.story-visual {
    position: relative;
}

.story-image {
    position: relative;
    background: var(--navy);
    border-radius: 20px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image i {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
}

.year-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.year-badge span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.year-badge strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

/* Mission Vision Values */
.mvv-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Certifications */
.cert-section {
    padding: 100px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cert-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.cert-card {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.cert-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cert-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.cert-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cert-card p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Infrastructure */
.infra-section {
    padding: 100px 0;
    background: var(--navy);
}

.infra-section .section-title {
    color: var(--white);
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.infra-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.infra-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.infra-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.infra-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.infra-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* ===== SERVICES PAGE ===== */
.services-detail {
    padding: 80px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block--reverse {
    direction: rtl;
}

.service-block--reverse > * {
    direction: ltr;
}

.service-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-block h2 {
    font-size: 2.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 1.125rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-block p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray);
}

.service-features i {
    color: var(--gold);
    font-size: 0.875rem;
}

.service-block__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.service-icon-large i {
    font-size: 6rem;
    color: var(--gold);
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.filter-btn:hover {
    background: var(--light-bg);
    color: var(--navy);
}

.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 22, 40, 0.3);
}

.filter-btn.active i {
    color: var(--gold);
    opacity: 1;
}

/* Portfolio Grid - Masonry Style */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-item--featured {
    grid-column: span 2;
}

/* Portfolio Card - New Design */
.portfolio-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.1);
}

.portfolio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.portfolio-item--featured .portfolio-card__image {
    height: 250px;
}

/* New Visual Design */
.portfolio-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-visual--alt {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
}

.portfolio-visual--gold {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1628 60%, var(--gold-dark) 150%);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.portfolio-card:hover .visual-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.25);
}

.visual-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.visual-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.visual-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

/* Card Content */
.portfolio-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card__category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.portfolio-card__category i {
    font-size: 0.65rem;
}

.portfolio-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.portfolio-item--featured .portfolio-card__title {
    font-size: 1.35rem;
}

.portfolio-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.portfolio-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.portfolio-card__tags span {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    background: var(--light-bg);
    color: var(--text-secondary);
    border-radius: 20px;
    font-weight: 500;
}

/* Portfolio Stats Banner */
.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--navy);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(10, 22, 40, 0.3);
}

.portfolio-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-stat:last-child {
    border-right: none;
}

.portfolio-stat i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-stat__content {
    display: flex;
    flex-direction: column;
}

.portfolio-stat__content strong {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
}

.portfolio-stat__content span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Industries */
.industries-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.industry-card h4 {
    font-size: 0.9375rem;
    color: var(--navy);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-card__content h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact-card__content p,
.contact-card__content a {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-card__content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card__content a:hover {
    color: var(--gold);
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230a1628' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map */
.map-section {
    position: relative;
    height: 450px;
    background: var(--navy);
}

.map-section iframe {
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .story-grid,
    .service-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-block--reverse {
        direction: ltr;
    }

    .mvv-grid,
    .infra-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item--featured {
        grid-column: span 2;
    }

    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .portfolio-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
    }

    .portfolio-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .portfolio-stat:nth-child(3),
    .portfolio-stat:nth-child(4) {
        border-bottom: none;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-number {
        font-size: 3rem;
    }

    .service-block h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    /* Page Banner */
    .page-banner {
        padding: 130px 0 60px;
    }

    .page-banner__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-banner__desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    /* Story Section */
    .story-section {
        padding: 60px 0;
    }

    .story-grid {
        gap: 2rem;
    }

    .story-content p {
        font-size: 0.9rem;
    }

    .story-image {
        height: 250px;
    }

    .year-badge {
        padding: 1rem 1.5rem;
        bottom: -10px;
        right: -10px;
    }

    .year-badge span {
        font-size: 0.65rem;
    }

    .year-badge strong {
        font-size: 1.8rem;
    }

    /* MVV Cards */
    .mvv-section {
        padding: 60px 0;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mvv-card {
        padding: 1.5rem;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .mvv-icon i {
        font-size: 1.5rem;
    }

    .mvv-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .mvv-card p {
        font-size: 0.9rem;
    }

    /* Certifications */
    .cert-section {
        padding: 60px 0;
    }

    .cert-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .cert-card {
        padding: 1.5rem 1rem;
    }

    .cert-icon {
        width: 55px;
        height: 55px;
    }

    .cert-icon i {
        font-size: 1.4rem;
    }

    .cert-card h4 {
        font-size: 0.9rem;
    }

    .cert-card p {
        font-size: 0.8rem;
    }

    /* Infrastructure */
    .infra-section {
        padding: 60px 0;
    }

    .infra-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .infra-card {
        padding: 1.5rem;
    }

    .infra-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .infra-card h4 {
        font-size: 1.1rem;
    }

    .infra-card p {
        font-size: 0.85rem;
    }

    /* Services Detail */
    .services-detail {
        padding: 40px 0;
    }

    .service-block {
        padding: 2rem 0;
        gap: 2rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-block h2 {
        font-size: 1.4rem;
    }

    .service-lead {
        font-size: 1rem;
    }

    .service-block p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .service-icon-large {
        width: 150px;
        height: 150px;
    }

    .service-icon-large::before {
        inset: -15px;
    }

    .service-icon-large i {
        font-size: 3rem;
    }

    /* Portfolio */
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .portfolio-placeholder i {
        font-size: 2.5rem;
    }

    .portfolio-card__category {
        font-size: 0.65rem;
    }

    .portfolio-card__title {
        font-size: 0.95rem;
    }

    .portfolio-card__overlay p {
        font-size: 0.8rem;
    }

    /* Industries */
    .clients-section {
        padding: 60px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-card {
        padding: 1.25rem 1rem;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .industry-icon i {
        font-size: 1.2rem;
    }

    .industry-card h4 {
        font-size: 0.8rem;
    }

    /* Contact Page */
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .contact-info .section-title {
        font-size: 1.5rem;
    }

    .contact-info > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-cards {
        gap: 1rem;
    }

    .contact-card {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-card__icon {
        width: 45px;
        height: 45px;
    }

    .contact-card__icon i {
        font-size: 1rem;
    }

    .contact-card__content h4 {
        font-size: 0.9rem;
    }

    .contact-card__content p,
    .contact-card__content a {
        font-size: 0.85rem;
    }

    .social-links .social-link {
        width: 40px;
        height: 40px;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-form-card h3 {
        font-size: 1.25rem;
    }

    .contact-form-card > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Map */
    .map-section {
        height: 300px;
    }

    /* Timeline */
    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 25px;
        padding-bottom: 2rem;
    }

    .timeline-year {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .timeline-item h4 {
        font-size: 1rem;
    }

    .timeline-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 120px 0 50px;
    }

    .page-banner__title {
        font-size: 1.5rem;
    }

    .cert-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon-large {
        width: 120px;
        height: 120px;
    }

    .service-icon-large i {
        font-size: 2.5rem;
    }

    .mvv-card {
        padding: 1.25rem;
    }

    .infra-card {
        padding: 1.25rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }
}

/* ========================================
   ENHANCED PAGE BANNER
======================================== */
.banner-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.banner-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.banner-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.banner-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    bottom: 50px;
    left: 10%;
    animation: floatSlow 10s ease-in-out infinite;
}

.banner-shape-3 {
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    background: transparent;
    top: 40%;
    right: 20%;
    animation: floatReverse 7s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* ========================================
   TIMELINE SECTION
======================================== */
.timeline-section {
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 15px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--light-bg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   TEAM SECTION
======================================== */
.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1300px;
    margin: 0 auto;
}

.team-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 280px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 12px 12px 0 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-image--placeholder {
    background: #0a1628;
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.team-image i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-info span {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

/* ========================================
   ENHANCED STORY VISUAL
======================================== */
.story-image-container {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.story-image-wrapper .story-image {
    flex-direction: column;
    gap: 1rem;
}

.story-image-wrapper .story-image i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

.story-image-wrapper .story-image span {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
}

.image-placeholder-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.floating-stat {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 5s ease-in-out infinite;
}

.floating-stat i {
    font-size: 1.25rem;
    color: var(--gold);
}

.floating-stat span {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.875rem;
}

.floating-stat-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 50px;
    left: -30px;
    animation-delay: 2s;
}

/* ========================================
   ENHANCED INFRA CARDS
======================================== */
.infra-card {
    position: relative;
    overflow: hidden;
}

.infra-image {
    height: 160px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: -1.5rem -1.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.infra-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.infra-card:hover .infra-image img {
    transform: scale(1.1);
}

.infra-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.infra-image i {
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.infra-image span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.infra-info h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.infra-info p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.infra-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ========================================
   RESPONSIVE TIMELINE & TEAM
======================================== */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-stat-1 {
        right: 0;
    }
    
    .floating-stat-2 {
        left: 0;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-left: 0;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
    
    .floating-stat {
        display: none;
    }
    
    .banner-shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .banner-shape-2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-image {
        height: 220px;
    }
    
    .timeline-content {
        padding: 1rem 1.25rem;
    }
    
    .infra-image {
        height: 100px;
        margin: -1.25rem -1.25rem 1rem;
    }
}

/* ========================================
   SERVICES QUICK NAVIGATION
======================================== */
.services-nav-section {
    padding: 3rem 0;
    background: var(--light-bg);
    position: relative;
    top: 0;
    z-index: 10;
}

.services-quick-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--navy);
    color: var(--white);
}

.service-nav-item:hover i {
    color: var(--gold);
}

.service-nav-item i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.service-nav-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========================================
   ENHANCED SERVICE BLOCKS
======================================== */
.service-block__visual {
    position: relative;
}

.service-icon-large {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.service-visual-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   PROCESS SECTION
======================================== */
.process-section {
    background: var(--light-bg);
}

.process-section .process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-section .process-step {
    flex: 1;
    max-width: 220px;
    width: auto;
    height: auto;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    flex-direction: column;
}

.process-section .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.process-section .process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.process-section .process-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.process-section .process-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10, 22, 40, 0.08);
    font-family: var(--font-display);
    position: absolute;
    top: 5px;
    right: 10px;
    left: auto;
    transform: none;
    z-index: 1;
    line-height: 1;
}

.process-section .process-step h4 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.process-section .process-step p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.process-section .process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-top: 4rem;
    border-radius: 2px;
    position: relative;
}

.process-section .process-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--gold-light);
}

@media (max-width: 992px) {
    .services-nav-section {
        position: relative;
        top: 0;
    }
    
    .services-quick-nav {
        gap: 0.75rem;
    }
    
    .service-nav-item {
        padding: 0.75rem 1rem;
    }
    
    .process-section .process-connector {
        display: none;
    }
    
    .process-section .process-grid {
        gap: 1rem;
    }
    
    .process-section .process-step {
        flex: 0 0 45%;
        max-width: none;
        width: auto;
        height: auto;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .service-badge {
        top: 10px;
        right: 10px;
    }
    
    .service-nav-item {
        padding: 0.5rem 0.75rem;
    }
    
    .service-nav-item i {
        font-size: 1.25rem;
    }
    
    .service-nav-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-quick-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .process-step {
        flex: 0 0 100%;
        padding: 1.5rem 1rem;
    }
    
    .process-number {
        font-size: 2rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 1.25rem;
    }
}

/* ========================================
   PORTFOLIO BADGE
======================================== */
.portfolio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2);
    }
}

/* Enhanced Portfolio Cards */
.portfolio-card {
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

/* Portfolio Stats Enhancement */
.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 20px;
}

.portfolio-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.portfolio-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.portfolio-stat i {
    font-size: 2rem;
    color: var(--gold);
}

.portfolio-stat__content {
    display: flex;
    flex-direction: column;
}

.portfolio-stat__content strong {
    font-size: 1.75rem;
    color: var(--white);
    font-family: var(--font-display);
    display: inline;
}

.portfolio-stat__content span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .portfolio-stats {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .portfolio-stat {
        flex: 0 0 45%;
        padding: 1rem;
    }
    
    .portfolio-stat i {
        font-size: 1.5rem;
    }
    
    .portfolio-stat__content strong {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .portfolio-stat {
        flex: 0 0 100%;
    }
}

/* ========================================
   QUICK CONTACT BAR
======================================== */
.quick-contact-bar {
    padding: 2rem 0;
    background: var(--light-bg);
}

.quick-contact-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--navy);
    color: var(--white);
}

.quick-contact-item:hover i {
    color: var(--gold);
}

.quick-contact-item i {
    font-size: 1.25rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.quick-contact-item span {
    font-weight: 600;
}

.quick-contact-item--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.quick-contact-item--gold i {
    color: var(--navy);
}

.quick-contact-item--gold:hover {
    background: var(--navy);
    color: var(--gold);
}

.quick-contact-item--gold:hover i {
    color: var(--gold);
}

/* ========================================
   ENHANCED CONTACT FORM
======================================== */
.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-header h3 i {
    color: var(--gold);
}

.form-header p {
    color: var(--gray);
}

.contact-form label i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* ========================================
   MAP SECTION ENHANCEMENT
======================================== */
.map-section {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
}

.map-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 280px;
}

.map-card h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.map-card .btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .quick-contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .quick-contact-item {
        padding: 0.75rem 1rem;
        justify-content: center;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 1rem;
        background: var(--navy);
    }
    
    .map-card {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .quick-contact-item span {
        font-size: 0.875rem;
    }
}

/* ========================================
   PRODUCT SHOWCASE
======================================== */
.product-showcase {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.02), rgba(212, 175, 55, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.product-showcase__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.product-showcase__title i {
    color: var(--gold);
    font-size: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
}

/* ICON-BASED PRODUCT CARD */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0 0.9rem;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    min-height: 210px;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease;
}

.product-card i {
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
    transition: color 0.25s ease, transform 0.25s ease;
}

.product-card img {
    width: 100%;
    margin: 0 0 0.6rem;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.product-card:hover img {
    opacity: 0.85;
    transform: scale(1.04);
}

.product-card:hover {
    background: var(--navy);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-3px);
}

.product-card:hover i {
    color: var(--gold);
    transform: scale(1.15);
}

.product-card .product-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    padding: 0 0.5rem;
    transition: color 0.25s ease;
}

.product-card:hover .product-name {
    color: #fff;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.6rem;
    }
    .product-showcase {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    .product-card {
        min-height: 160px;
        padding: 0 0 0.7rem;
    }
    .product-card img {
        height: 120px;
    }
    .product-card i {
        font-size: 1.35rem;
    }
    .product-card .product-name {
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   CLIENT LOGOS SECTION
======================================== */
.clients-section {
    padding: 70px 0 80px;
    background: var(--navy);
    position: relative;
}

.clients-section .section-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.clients-section .section-title {
    color: #fff !important;
}

.clients-section .section-desc {
    color: rgba(255, 255, 255, 0.55);
}

.clients-marquee-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
    padding: 1rem 0 1.25rem;
    min-height: 100px;
}

/* fade edges */
.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.clients-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.clients-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.clients-marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: max-content;
    animation: clientMarquee 45s linear infinite;
}

.clients-marquee:hover {
    animation-play-state: paused;
}

@keyframes clientMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.client-logo-item {
    flex-shrink: 0;
    width: 155px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.client-logo-item .client-text-logo {
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.2;
    transition: color 0.3s ease;
    pointer-events: none;
}

.client-logo-item .client-text-logo::first-letter {
    color: var(--gold);
    font-size: 0.9rem;
}

.client-logo-item:hover .client-text-logo {
    color: #fff;
}

@media (max-width: 768px) {
    .client-logo-item {
        width: 120px;
        height: 54px;
        padding: 0.4rem 0.75rem;
    }
    .clients-section {
        padding: 50px 0 60px;
    }
    .clients-marquee {
        gap: 0.75rem;
    }
}


/* ================================================================
   Portfolio Page – Filterable Masonry (unique to portfolio.html)
   ================================================================ */
.pf-section {
    background: #060612;
    padding: 80px 0 110px;
}
.pf-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 52px;
}
.pf-filter-btn {
    padding: 9px 22px;
    border: 1.5px solid rgba(212,175,55,0.38);
    background: transparent;
    color: #888;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: all 0.28s ease;
}
.pf-filter-btn i { margin-right: 5px; }
.pf-filter-btn:hover,
.pf-filter-btn.active {
    background: var(--gold, #d4af37);
    border-color: var(--gold, #d4af37);
    color: #060612;
    font-weight: 700;
    box-shadow: 0 4px 22px rgba(212,175,55,0.35);
}

/* === Masonry via CSS columns — image shows at natural height === */
.pf-grid {
    column-count: 4;
    column-gap: 14px;
}
.pf-item {
    break-inside: avoid;
    page-break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #0c0c22;
    cursor: pointer;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.pf-item.pf-hidden { display: none !important; }
.pf-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 50px rgba(212,175,55,0.2), 0 0 0 1.5px rgba(212,175,55,0.55);
}
.pf-item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pf-item:hover .pf-item-img { transform: scale(1.05); }

/* Name strip — always visible at bottom */
.pf-item-footer {
    padding: 10px 14px 12px;
    background: linear-gradient(to bottom, rgba(6,6,18,0.55) 0%, rgba(6,6,18,0.97) 100%);
}
.pf-item-name {
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

/* Hover overlay — full dark wash with badge + CTA */
.pf-item-overlay {
    position: absolute;
    inset: 0;
    bottom: 40px; /* leave the name strip visible below */
    background: rgba(6,6,18,0.72);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
}
.pf-item:hover .pf-item-overlay { opacity: 1; }
.pf-cat-badge {
    background: var(--gold, #d4af37);
    color: #060612;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 13px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.pf-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--gold, #d4af37);
    color: var(--gold, #d4af37);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.pf-item-cta:hover {
    background: var(--gold, #d4af37);
    color: #060612;
}
.pf-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}
@media (max-width: 1100px) { .pf-grid { column-count: 3; } }

/* ===== PORTFOLIO MOBILE — polished layout ===== */
@media (max-width: 768px) {
    .pf-section {
        padding: 50px 0 70px;
    }

    /* Filter pills — tighter, scrollable row */
    .pf-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding: 0 4px 10px;
        margin-bottom: 28px;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    .pf-filters::-webkit-scrollbar { display: none; }

    .pf-filter-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 50px;
        white-space: nowrap;
    }
    .pf-filter-btn i { display: none; }
    .pf-filter-btn.active i { display: inline; margin-right: 4px; }

    /* 2-column masonry */
    .pf-grid {
        column-count: 2;
        column-gap: 10px;
    }

    .pf-item {
        margin-bottom: 10px;
        border-radius: 10px;
    }

    /* Name strip */
    .pf-item-footer {
        padding: 7px 10px 9px;
    }
    .pf-item-name {
        font-size: 0.7rem;
        letter-spacing: 0;
    }

    /* Overlay — always visible on mobile (no hover) */
    .pf-item-overlay {
        opacity: 0;
        bottom: 36px;
        gap: 8px;
        padding: 0 8px;
    }
    .pf-cat-badge {
        font-size: 0.55rem;
        padding: 3px 10px;
    }
    .pf-item-cta {
        font-size: 0.65rem;
        padding: 5px 14px;
    }

    /* Give items a gentle shadow for depth */
    .pf-item {
        box-shadow: 0 3px 16px rgba(0,0,0,0.35);
    }

    /* Load more button */
    .pf-load-more-wrap {
        margin-top: 32px;
    }
}

@media (max-width: 400px) {
    .pf-grid {
        column-count: 2;
        column-gap: 8px;
    }
    .pf-item { margin-bottom: 8px; border-radius: 8px; }
    .pf-item-name { font-size: 0.65rem; }
    .pf-filter-btn { padding: 7px 12px; font-size: 0.7rem; }
}