/* MOYBON Website Styles - Industrial Dark Theme */
/* Inspired by professional industrial design aesthetic */

/* CSS Variables for consistent theming */
:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #111111;
    --medium-gray: #f0f2f5;
    --light-gray: #e2e8f0;
    --text-gray: #6b7280;
    --text-light: #1a1a1a;

    --primary-orange: #E53E3E;
    --hover-orange: #c93232;
    --accent-gold: #F6AD55;
    --accent-gray: #6b7280;

    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);

    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.5);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.8);

    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* New Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

/* Homepage header styling for full-screen hero */
.header:not(.scrolled) {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .phone-number {
    color: white;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

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


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-orange);
}

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

/* Header Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
}

.phone-icon {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(246, 173, 85, 0.3);
    transition: var(--transition-fast);
}

.phone-icon:hover {
    background: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(246, 173, 85, 0.4);
}

.phone-icon svg,
.phone-icon i {
    width: 16px;
    height: 16px;
    color: inherit;
    font-size: 16px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 36px;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(246, 173, 85, 0.5);
    outline: none;
    transform: translateY(-1px);
}

.theme-toggle-track {
    width: 34px;
    height: 18px;
    border-radius: 999px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    padding: 2px;
    flex-shrink: 0;
}

.theme-toggle-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    transform: translateX(0);
    transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle.is-white {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(17, 24, 39, 0.14);
    color: #111827;
}

.theme-toggle.is-white .theme-toggle-track {
    background: #f3f4f6;
    border-color: rgba(17, 24, 39, 0.18);
}

.theme-toggle.is-white .theme-toggle-thumb {
    background: #111827;
    transform: translateX(16px);
}

@media (max-width: 768px) {
    .theme-toggle {
        padding: 0.35rem;
        min-height: 34px;
    }

    .theme-toggle-text {
        display: none;
    }
}

/* New Hero Section */
.hero-new {
    position: relative;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    overflow: hidden;
    margin-top: 0;
    background: var(--primary-black);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 420ms ease, transform 6s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Responsive hero image scaling */
@media (max-width: 1024px) {
    .hero-right .hero-image img {
        object-fit: contain;
        padding: 0.25rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Full width responsive adjustments */
@media (min-width: 1200px) {
    .hero-content-new {
        padding: 2rem 4rem;
        gap: 8rem;
    }
}

@media (min-width: 1600px) {
    .hero-content-new {
        padding: 2rem 6rem;
        gap: 10rem;
    }
}

@media (min-width: 2000px) {
    .hero-content-new {
        padding: 2rem 8rem;
        gap: 12rem;
    }
}


.hero-left {
    z-index: 3;
    position: relative;
}

/* Bouncing Dots */
.hero-wordmark {
    display: inline-block;
    position: relative;
    overflow: visible;
    padding-top: 0.88em;
    line-height: 0.88;
}

.bouncing-dots {
    position: absolute;
    top: 0.18em;
    left: 0;
    width: 100%;
    height: 0.6em;
    z-index: 30;
    pointer-events: none;
    display: block !important;
    overflow: visible;
}

.hero-wordmark .dot {
    width: clamp(24px, 0.42em, 54px);
    height: clamp(24px, 0.42em, 54px);
    border-radius: 50%;
    position: absolute;
    top: 0;
    display: block !important;
    opacity: 1 !important;
    transform: translateX(-50%);
    animation: bounce 1.4s ease-in-out infinite;
}

.hero-wordmark .bouncing-dots .dot:nth-child(1) {
    left: 12%;
}

.hero-wordmark .bouncing-dots .dot:nth-child(2) {
    left: 31%;
}

.hero-wordmark .bouncing-dots .dot:nth-child(3) {
    left: 48%;
}

.hero-wordmark .dot-red {
    background: #E53E3E;
    animation-delay: 0s;
}

.hero-wordmark .dot-gray {
    background: #a0a0a0;
    animation-delay: 0.2s;
}

.hero-wordmark .dot-gold {
    background: #E8A838;
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }
}

.hero-right {
    z-index: 5;
    position: relative;
}

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

.hero-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 450px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive hero image heights */
@media (max-width: 1200px) {
    .hero-image {
        min-height: 300px;
        max-height: 380px;
    }

    .hero-right .hero-image img {
        object-fit: contain;
    }

    .hero-video {
        min-height: 300px;
        max-height: 380px;
    }
}

/* Mobile Fixed Header Enhancement */
@media (max-width: 768px) {
    .header {
        padding: 0.4rem 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .header-content {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: auto;
        min-height: 200px;
        max-height: 300px;
        margin: 0 auto;
        max-width: 90%;
        width: 100%;
        background: transparent;
    }

    .hero-right .hero-image img {
        object-fit: contain;
        padding: 0.5rem;
        height: auto;
        width: 100%;
    }

    .hero-video {
        min-height: 200px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: auto;
        min-height: 150px;
        max-height: 250px;
        max-width: 95%;
        background: transparent;
    }

    .hero-right .hero-image img {
        padding: 0.25rem;
        height: auto;
        width: 100%;
    }

    .hero-video {
        min-height: 150px;
        max-height: 250px;
    }
}

.hero-panel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 420ms ease, transform 420ms ease;
}

.hero-panel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    background: #000000;
}

.hero-bg-image.is-fading,
.hero-panel-slide.is-fading {
    opacity: 0.18;
}

.hero-bg-image.is-active {
    transform: scale(1.03);
}

.hero-carousel-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.hero-carousel-dot {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease;
}

.hero-carousel-dot.active {
    border-color: rgba(255, 255, 255, 0.9);
    background: transparent;
    transform: scale(1.08);
}

.hero-title-new {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    position: relative;
    padding-top: 0;
}

.title-main {
    display: block;
    position: relative;
    z-index: 10;
    color: white !important;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.02em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}

.title-sub {
    display: block;
    color: var(--primary-orange) !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-description-new {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 3rem;
    max-width: 500px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-buttons-new {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-orange:hover {
    background: var(--hover-orange);
    border-color: var(--hover-orange);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

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

.play-icon {
    font-size: 0.8rem;
}

/* Trusted Brands Section */
.trusted-brands {
    background: var(--primary-black);
    padding: 1.5rem 0;
    position: sticky;
    top: 65px;
    z-index: 999;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.brands-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    background: white;
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 140px;
    height: 60px;
}

.brand-img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Brand Presence Section */
.brand-presence {
    background: #f8f9fa;
    padding: 6rem 0;
    color: var(--primary-black);
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 0 3rem;
    width: 100%;
}

/* Full width responsive adjustments for presence content */
@media (min-width: 1200px) {
    .presence-content {
        padding: 0 4rem;
        gap: 8rem;
    }
}

@media (min-width: 1600px) {
    .presence-content {
        padding: 0 6rem;
        gap: 10rem;
    }
}

@media (min-width: 2000px) {
    .presence-content {
        padding: 0 8rem;
        gap: 12rem;
    }
}

.presence-label {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.presence-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.presence-title .highlight {
    color: var(--primary-orange);
}

.presence-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.presence-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-orange);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.2;
}

.presence-images {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.image-main {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-main img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.image-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* Core Solutions Section */
.core-solutions-new {
    background: var(--primary-black);
    padding: 6rem 0;
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 3rem;
}

/* Full width responsive adjustments for section headers */
@media (min-width: 1200px) {
    .solutions-header {
        padding: 0 4rem;
    }
}

@media (min-width: 1600px) {
    .solutions-header {
        padding: 0 6rem;
    }
}

@media (min-width: 2000px) {
    .solutions-header {
        padding: 0 8rem;
    }
}

.solutions-label {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.solutions-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
}

.solutions-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 3rem;
    width: 100%;
}

/* Full width responsive adjustments for solutions grid */
@media (min-width: 1200px) {
    .solutions-grid-new {
        padding: 0 4rem;
        gap: 3rem;
    }
}

@media (min-width: 1600px) {
    .solutions-grid-new {
        padding: 0 6rem;
        gap: 3rem;
    }
}

@media (min-width: 2000px) {
    .solutions-grid-new {
        padding: 0 8rem;
        gap: 4rem;
    }
}

.solution-card-new {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.solution-card-new::before {
    content: attr(data-number);
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    opacity: 0.3;
}

.solution-card-new:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2);
}

.solution-icon-new {
    margin: 0.75rem 0 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 106px;
}

.solution-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    filter: none;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    border: 3px solid #ff6b6b;
}

.solution-title-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-desc-new {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.4;
}

.solutions-cta {
    text-align: center;
}

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

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

/* Services landing page */
.services-landing-hero {
    min-height: auto;
    padding: 150px 0 92px;
    background:
        radial-gradient(circle at 18% 8%, rgba(229, 62, 62, 0.16), transparent 26%),
        radial-gradient(circle at 78% 12%, rgba(242, 169, 59, 0.12), transparent 28%),
        linear-gradient(180deg, #030303 0%, #111111 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 78%);
}

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

.services-landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
}

.services-landing-copy h1 {
    font-size: clamp(3rem, 5.8vw, 6rem);
    line-height: 0.96;
    max-width: 760px;
    margin: 0 0 28px;
    color: #ffffff;
    text-transform: uppercase;
}

.services-landing-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.15rem, 1.9vw, 1.55rem);
    line-height: 1.55;
    margin-bottom: 34px;
}

.services-landing-media {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
    aspect-ratio: 16 / 10;
}

.services-landing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-summary-section,
.services-capability-section {
    background:
        radial-gradient(circle at top center, rgba(245, 177, 58, 0.08), transparent 24%),
        linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
    color: #ffffff;
    padding: 96px 0;
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.services-summary-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    min-height: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.services-summary-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 177, 58, 0.44);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.services-summary-number {
    color: var(--primary-orange);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.services-summary-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(229, 62, 62, 0.72);
}

.services-summary-card h3 {
    color: #ffffff;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.08;
    margin: 4px 0 0;
}

.services-summary-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.services-summary-link {
    margin-top: auto;
    color: var(--accent-gold);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.services-capability-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
}

.services-capability-grid h2 {
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 5.4rem);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}

.services-capability-list {
    display: grid;
    gap: 18px;
}

.services-capability-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.045);
}

.services-capability-item i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
}

.services-capability-item h3 {
    color: #ffffff;
    margin: 0 0 8px;
}

.services-capability-item p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin: 0;
}

@media (min-width: 1181px) {
    .services-summary-card:nth-child(4) {
        grid-column: 1 / span 1;
    }

    .services-summary-card:nth-child(5) {
        grid-column: 2 / span 1;
    }
}

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

@media (max-width: 900px) {
    .services-landing-hero {
        min-height: auto;
        padding: 140px 0 72px;
    }

    .services-landing-hero-grid,
    .services-capability-grid {
        grid-template-columns: 1fr;
    }

    .services-landing-media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 680px) {
    .services-summary-section,
    .services-capability-section {
        padding: 70px 0;
    }

    .services-summary-grid {
        grid-template-columns: 1fr;
    }

    .services-summary-card {
        padding: 18px;
    }

    .services-capability-item {
        grid-template-columns: 48px 1fr;
        padding: 18px;
    }

    .services-capability-item i {
        width: 48px;
        height: 48px;
    }
}

/* Recent Work Section */
.recent-work {
    background: var(--primary-black);
    padding: 6rem 0;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding: 0 3rem;
}

/* Full width responsive adjustments for work header */
@media (min-width: 1200px) {
    .work-header {
        padding: 0 4rem;
    }
}

@media (min-width: 1600px) {
    .work-header {
        padding: 0 6rem;
    }
}

@media (min-width: 2000px) {
    .work-header {
        padding: 0 8rem;
    }
}

.work-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
}

.work-title .highlight {
    color: var(--primary-orange);
}

.work-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 3rem;
    width: 100%;
}

/* Full width responsive adjustments for work grid */
@media (min-width: 1200px) {
    .work-grid {
        padding: 0 4rem;
        gap: 3rem;
    }
}

@media (min-width: 1600px) {
    .work-grid {
        padding: 0 6rem;
        gap: 3rem;
    }
}

@media (min-width: 2000px) {
    .work-grid {
        padding: 0 8rem;
        gap: 4rem;
    }
}

.work-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.work-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-category {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-new {
    background: #f8f9fa;
    padding: 6rem 0;
    color: var(--primary-black);
}

.why-content-new {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
    padding: 0 3rem;
    width: 100%;
}

/* Full width responsive adjustments for why content */
@media (min-width: 1200px) {
    .why-content-new {
        padding: 0 4rem;
        gap: 8rem;
    }
}

@media (min-width: 1600px) {
    .why-content-new {
        padding: 0 6rem;
        gap: 10rem;
    }
}

@media (min-width: 2000px) {
    .why-content-new {
        padding: 0 8rem;
        gap: 12rem;
    }
}

.why-title-new {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.why-title-new .highlight {
    color: var(--primary-orange);
}

.why-description-new {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.why-features-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.why-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.2;
}

/* CTA Section */
.cta-new {
    background: var(--primary-orange);
    padding: 4rem 0;
}

.cta-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 3rem;
    width: 100%;
}

/* Full width responsive adjustments for CTA content */
@media (min-width: 1200px) {
    .cta-content-new {
        padding: 0 4rem;
        gap: 6rem;
    }
}

@media (min-width: 1600px) {
    .cta-content-new {
        padding: 0 6rem;
        gap: 8rem;
    }
}

@media (min-width: 2000px) {
    .cta-content-new {
        padding: 0 8rem;
        gap: 10rem;
    }
}

.cta-title-new {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.cta-description-new {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cta-buttons-new .btn {
    white-space: nowrap;
    padding: 0.6rem 2rem;
    min-width: 160px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-black);
    border-color: var(--primary-black);
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

.btn-dark {
    background: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

/* Footer */
.footer-new {
    background: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content-new {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.footer-col h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.footer-col ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-contact-icon {
    width: 1.25rem;
    margin-right: 0.5rem;
    color: var(--primary-orange);
    text-align: center;
}

.footer-location-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.footer-location-link:hover {
    color: var(--primary-orange);
}

.social-links-new {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(246, 173, 85, 0.3);
}

.social-link:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(246, 173, 85, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
    }

    .hero-content-new {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }


    .brands-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .presence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .presence-features {
        grid-template-columns: 1fr;
    }

    .why-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .cta-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Team portraits: equal circles with portraits extending above the top edge */
.team-section {
    background: #ffffff;
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.team-member,
.team-member.featured {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.member-image {
    width: 100%;
    min-height: 320px;
    padding: 0;
    margin-bottom: 0.75rem;
    background: transparent;
    overflow: visible;
}

.circular-border,
.team-member.featured .circular-border {
    --team-circle-size: 245px;
    position: relative;
    width: var(--team-circle-size);
    height: var(--team-circle-size);
    margin: 3.7rem auto 0;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    overflow: visible;
    background: transparent;
    isolation: isolate;
    transform: none;
}

.circular-border::before,
.team-member.featured .circular-border::before {
    display: none;
}

.team-member:nth-child(even) .circular-border::before {
    border-color: var(--brand-accent-silver);
}

.circular-border img,
.team-member.featured .circular-border img {
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: auto;
    max-width: 92%;
    height: 145%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    z-index: 2;
    scale: none;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18));
}

.member-info {
    padding: 0.75rem 0 0;
    text-align: center;
}

.member-info h3 {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-info .role {
    margin-bottom: 0.85rem;
    color: var(--brand-accent-gold);
}

.team-member:nth-child(even) .member-info .role {
    color: var(--brand-accent-silver);
}

.member-info .bio {
    max-width: 28ch;
    margin: 0 auto;
}

.team-member:hover .circular-border,
.team-member:hover .circular-border::before {
    transform: none;
}

/* Home trusted brands: keep section in normal page flow instead of floating */
.trusted-brands {
    position: relative;
    top: auto;
    z-index: 1;
}

.brands-header {
    position: relative;
    margin-bottom: 1rem;
}

.brands-header h3 {
    display: inline-block;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

    .member-image {
        min-height: 286px;
    }

    .circular-border,
    .team-member.featured .circular-border {
        --team-circle-size: 210px;
        margin-top: 3rem;
    }

    .circular-border img,
    .team-member.featured .circular-border img {
        height: 138%;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .member-image {
        min-height: 248px;
    }

    .circular-border,
    .team-member.featured .circular-border {
        --team-circle-size: 186px;
        margin-top: 2.6rem;
    }

    .circular-border::before,
    .team-member.featured .circular-border::before {
        border-width: 12px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Full-width layout for all major sections */
.hero-new .container,
.brand-presence .container,
.core-solutions-new .container,
.recent-work .container,
.why-choose-new .container,
.cta-new .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 500;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-orange);
    color: #ffffff;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--hover-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    background: #333333;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Section Labels */
.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(229, 62, 62, 0.1);
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-categories-circular .section-header h2,
.technology-circular-section .section-header h2,
.quality-guarantee-circular .section-header h2 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-categories-circular .section-header h2 {
    color: #ffffff;
}

.service-categories-circular .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
}

.section-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-orange);
}

/* CTA Button in Nav */
.nav-cta .cta-button {
    padding: 10px 20px;
    background: var(--primary-orange);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-cta .cta-button:hover {
    background: var(--hover-orange);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 120px 0 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-text {
    max-width: 700px;
    z-index: 10;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: block;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-circles {
    display: flex;
    gap: 8px;
}

.circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle.red {
    background: #e53e3e;
    border-color: #e53e3e;
}

.circle.gray {
    background: #6b7280;
    border-color: #6b7280;
}

.circle.orange {
    background: #E53E3E;
    border-color: #E53E3E;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 1rem;
    line-height: 1.1;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.title-line.highlight {
    color: #E53E3E;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(229, 62, 62, 0.3);
    min-width: 220px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    z-index: 10;
    position: relative;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Company Introduction */
.company-intro {
    padding: 100px 0;
    background: #f8f9fa;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: #f7fafc;
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--primary-orange);
}

.feature-item span {
    font-weight: 500;
    color: #1a1a1a;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-orange);
}

.service-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-icon {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--hover-orange);
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: var(--transition-smooth);
}

.portfolio-item.large {
    grid-column: span 6;
}

.portfolio-item:not(.large) {
    grid-column: span 3;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.portfolio-item.large .portfolio-image {
    height: 400px;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    color: #ffffff;
}

.portfolio-category {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.portfolio-info p {
    font-size: 0.95rem;
    color: #e5e5e5;
    margin: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.portfolio-cta h3 {
    color: #1a1a1a;
}

.portfolio-cta p {
    color: #4a5568;
}

/* Portfolio Page Sections */
.portfolio-filter-section {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.filter-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
}

.portfolio-grid-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.portfolio-grid-section .portfolio-grid {
    margin-top: 0;
}

.portfolio-grid-section .portfolio-item {
    grid-column: span 4;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.portfolio-grid-section .portfolio-item:not(.large) {
    grid-column: span 4;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.quality-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--medium-gray);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
}

.quality-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quality-quote cite {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-style: normal;
}

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

.why-features .feature-item {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
}

.why-features .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.why-features .feature-icon {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.why-features h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.why-features p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section (old - overridden by service page styles) */

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.contact-item span:last-child {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

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

/* Hero Section */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background-color: var(--secondary-black);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-dark);
    z-index: 1;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.page-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.story-text p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.story-image img,
.story-image video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

.story-image video {
    min-height: 400px;
    max-height: 600px;
}

/* Mission & Vision - Dark Theme */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(229, 62, 62, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(246, 173, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card,
.values-card {
    background: rgba(25, 25, 25, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(229, 62, 62, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(229, 62, 62, 0.1);
    background: rgba(30, 30, 30, 0.98);
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.card-icon {
    color: #E53E3E;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon,
.values-card:hover .card-icon {
    background: rgba(229, 62, 62, 0.2);
    transform: scale(1.1);
    color: #ff4757;
}

/* Team Section - Clean White Design */
.team-section {
    padding: 80px 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 2rem !important;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.member-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: #ffffff;
}

.member-image img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    object-position: center;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-info .role {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.member-info .bio {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Team photo with circular orange border - natural composition */
.circular-border {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 1.5rem auto 1rem;
    overflow: hidden;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #f8f9fa;
}

.circular-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-smooth);
    display: block;
    position: relative;
    z-index: 1;
    scale: 1.2;
}

/* Prominent circular orange border - DISABLED */
.circular-border::before {
    display: none !important;
}

.team-member.featured .circular-border {
    width: 280px;
    height: 280px;
}


.team-member.featured .circular-border::before {
    display: none;
}

.team-member:hover .circular-border {
    transform: none;
}

.team-member:hover .circular-border::before {
    display: none;
}

/* Responsive team photos */
@media (max-width: 768px) {
    .circular-border {
        width: 200px;
        height: 200px;
    }

    .circular-border::before {
        display: none;
    }

    .team-member.featured .circular-border {
        width: 240px;
        height: 240px;
    }

    .team-member.featured .circular-border::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .circular-border {
        width: 160px;
        height: 160px;
    }

    .circular-border::before {
        display: none;
    }

    .team-member.featured .circular-border {
        width: 200px;
        height: 200px;
    }

    .team-member.featured .circular-border::before {
        display: none;
    }
}

/* Why Choose Us - About Page */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

/* Service Pages - Light Theme */
.service-overview {
    padding: 60px 0;
    background: #ffffff;
}

.service-overview .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0;
}

.service-overview .service-text h2 {
    color: #1a1a1a;
}

.service-overview .service-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-features .feature h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.service-features .feature p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.service-overview .service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-types {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-types .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.type-icon {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.type-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.type-card p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.process-section {
    padding: 60px 0;
    background: #ffffff;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #ffffff;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.cta-section {
    padding: 60px 0;
    background: var(--primary-orange);
    border-top: none;
}

.cta-section .cta-content h2 {
    color: #ffffff;
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .service-overview .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-wrap {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap h2 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-form-wrap>p {
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

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

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

.contact-info-wrap {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.contact-info-wrap h2 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-wrap>p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.05);
}

.contact-info-content {
    flex: 1;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    z-index: 2;
    position: relative;
}

.location-icon {
    background: linear-gradient(135deg, #E53E3E, #C53030);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #38A169, #2F855A);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #3182CE, #2B77CB);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.clock-icon {
    background: linear-gradient(135deg, #D69E2E, #B7791F);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

.contact-info-item h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.emergency-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
}

.emergency-box h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.emergency-box p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.emergency-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
}

.emergency-note {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.25rem;
}

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-item:not(.large) {
        grid-column: span 4;
    }

    .service-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        max-width: 500px;
        margin: 0 auto;
    }

    .intro-content,
    .why-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        grid-column: span 12;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats,
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

/* Hero elements should always be visible */
.hero .brand-header,
.hero .hero-title,
.hero .hero-description,
.hero .hero-buttons,
.hero .hero-stats {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Performance Optimizations */
.hero-bg-image,
.portfolio-image img,
.service-image img {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.service-link:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .navbar,
    .hero-stats,
    .cta-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================
   V1 SERVICE PAGE STYLES (adapted for v2)
   ============================================ */

/* Page Header & Breadcrumb */
.page-header {
    background: var(--primary-black);
    padding: 8rem 0 4rem;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Service Intro */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1A202C;
    font-weight: 800;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4A5568;
}

.service-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #E53E3E;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-intro-image {
    position: relative;
}

.service-intro-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #E53E3E 0%, #F6AD55 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Service Categories Circular */
.service-categories-circular {
    background: var(--primary-black);
    padding: 5rem 0;
}

.services-circular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-circular-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-circular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.15);
    border-color: #E53E3E;
}

.service-circular-card.featured {
    border-color: #E53E3E;
    transform: scale(1.02);
}

.service-circular-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-circular-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.service-circular-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-circular-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 2;
}

.service-circular-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.service-circular-icon.signage-3d,
.service-circular-icon.printing-large,
.service-circular-icon.offset-commercial {
    background: #E53E3E;
}

.service-circular-icon.signage-led,
.service-circular-icon.printing-vehicle,
.service-circular-icon.offset-packaging {
    background: #718096;
}

.service-circular-icon.signage-billboard,
.service-circular-icon.printing-indoor,
.service-circular-icon.offset-books {
    background: #F6AD55;
}

.service-circular-icon.signage-wayfinding,
.service-circular-icon.printing-specialty,
.service-circular-icon.offset-marketing {
    background: #E53E3E;
}

.service-circular-icon.signage-interior,
.service-circular-icon.printing-outdoor,
.service-circular-icon.offset-premium {
    background: #718096;
}

.service-circular-icon.signage-safety,
.service-circular-icon.printing-fabric,
.service-circular-icon.offset-corporate {
    background: #F6AD55;
}

.service-metric-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #1a1a1a;
    border: 3px solid #E53E3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #E53E3E;
    text-align: center;
    line-height: 1;
}

.service-metric-circle .metric-number {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.service-metric-circle .metric-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-circular-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
    line-height: 1.3;
}

.service-circular-card p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-features-circular {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-circle-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.feature-circle-icon {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: #F6AD55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    min-height: 30px;
}

.feature-circle-icon.feature-size,
.feature-circle-icon.feature-quality,
.feature-circle-icon.feature-premium,
.feature-circle-icon.feature-design {
    background: #E53E3E;
}

.feature-circle-icon.feature-durability,
.feature-circle-icon.feature-technology,
.feature-circle-icon.feature-material,
.feature-circle-icon.feature-safety {
    background: #718096;
}

.feature-circle-icon.feature-speed,
.feature-circle-icon.feature-service {
    background: #F6AD55;
}

.service-price-circle {
    width: 120px;
    height: 60px;
    border-radius: 30px;
    background: #E53E3E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Technology Section */
.technology-circular-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.technology-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.tech-main-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-tech-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 2;
    margin-bottom: 0.5rem;
}

.main-tech-label {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.tech-circles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.tech-circle-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tech-circle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.15);
}

.tech-circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #F6AD55;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.tech-circle-item:nth-child(odd) .tech-circle-icon {
    background: #718096;
}

.tech-circle-item:nth-child(3n) .tech-circle-icon {
    background: #E53E3E;
}

.tech-circle-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 0.5rem;
}

.tech-circle-item p {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.4;
}

/* Quality Guarantee */
.quality-guarantee-circular {
    background: #ffffff;
    padding: 5rem 0;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.guarantee-main-circle {
    text-align: center;
}

.guarantee-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guarantee-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-text {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.guarantee-details h1,
.guarantee-details h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.guarantee-details>p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #F6AD55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-feature-item:nth-child(even) .guarantee-icon-circle {
    background: #718096;
}

.guarantee-feature-item:nth-child(3n) .guarantee-icon-circle {
    background: #E53E3E;
}

.guarantee-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.guarantee-feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    margin: 0;
}

.quality-guarantee-circular .guarantee-details>p {
    color: rgba(255, 255, 255, 0.78);
}

/* Service CTA */
.service-cta {
    background: var(--primary-orange);
    padding: 5rem 0;
    text-align: center;
}

.service-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-cta .btn-primary {
    background: #ffffff;
    color: var(--primary-orange);
    border-color: #ffffff;
}

.service-cta .btn-primary:hover {
    background: var(--primary-black);
    color: #ffffff;
    border-color: var(--primary-black);
}

.service-cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.service-cta .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-orange);
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-guarantee span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive for service pages */
@media (max-width: 768px) {
    .service-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .services-circular-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-circular-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .service-circular-icon-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .service-circular-icon {
        width: 80px;
        height: 80px;
    }

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

    .service-metric-circle {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
    }

    .service-features-circular {
        gap: 0.5rem;
    }

    .feature-circle-item {
        min-width: 100px;
    }

    .feature-circle-icon {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-height: 26px;
    }

    .tech-circles-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .tech-main-circle {
        width: 150px;
        height: 150px;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .guarantee-circle {
        width: 150px;
        height: 150px;
    }

    .guarantee-number {
        font-size: 2rem;
    }

    .guarantee-features {
        align-items: center;
    }

    .guarantee-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-guarantee {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   Brand Page - Interactive Process, Cultural, Industry, Investment
   ============================================================ */

/* Interactive Brand Process */
.interactive-brand-process {
    padding: 5rem 0;
}

.brand-process-navigation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.process-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-timeline {
    position: relative;
    width: 400px;
    height: 400px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.timeline-circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.timeline-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: white;
    border: 3px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-circle:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-circle:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.timeline-circle:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-circle:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.timeline-circle.active {
    background: #E53E3E;
    border-color: #E53E3E;
    color: white;
    transform: scale(1.1);
}

.timeline-circle.active:nth-child(1) {
    transform: translateX(-50%) scale(1.1);
}

.timeline-circle.active:nth-child(2) {
    transform: translateY(-50%) scale(1.1);
}

.timeline-circle.active:nth-child(3) {
    transform: translateX(-50%) scale(1.1);
}

.timeline-circle.active:nth-child(4) {
    transform: translateY(-50%) scale(1.1);
}

.circle-content {
    text-align: center;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-content-area {
    position: relative;
    min-height: 500px;
}

.process-step-content {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.process-step-content.active {
    display: grid;
}

.step-icon-wrapper {
    position: relative;
    text-align: center;
}

.large-circular-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.large-circular-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 2;
}

.large-circular-icon.discovery {
    background: #E53E3E;
}

.large-circular-icon.strategy {
    background: #718096;
}

.large-circular-icon.design {
    background: #F6AD55;
}

.large-circular-icon.implementation {
    background: #E53E3E;
}

.large-circular-icon.cultural {
    background: #718096;
}

.large-circular-icon.visual {
    background: #F6AD55;
}

.large-circular-icon.market {
    background: #E53E3E;
}

.large-circular-icon.language {
    background: #718096;
}

.progress-ring {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle {
    fill: none;
    stroke: #E53E3E;
    stroke-width: 4;
    stroke-dasharray: 314;
    stroke-dashoffset: calc(314 - (314 * var(--progress)) / 100);
    transition: stroke-dashoffset 0.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: #E53E3E;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #F6AD55;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-icon-circle.small {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
}

.step-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #E53E3E;
}

.metric-label {
    font-size: 0.9rem;
    color: #718096;
}

/* Portfolio Showcase */
.brand-portfolio-showcase {
    background: white;
    padding: 5rem 0;
}

.portfolio-carousel {
    position: relative;
    margin-top: 3rem;
}

.portfolio-showcase-item {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.portfolio-showcase-item.active {
    display: grid;
}

.showcase-visual {
    text-align: center;
}

.circular-metric {
    position: relative;
    display: inline-block;
}

.metric-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.showcase-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #F6AD55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.result-item:nth-child(even) .result-icon-circle {
    background: #718096;
}

.result-item:nth-child(3n) .result-icon-circle {
    background: #E53E3E;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-circle.active {
    background: #E53E3E;
    transform: scale(1.2);
}

/* Cultural Expertise Circular */
.cultural-expertise-circular {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 6rem 0;
}

.cultural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cultural-expertise-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cultural-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.15);
}

.cultural-icon-circle {
    margin-bottom: 1.5rem;
}

.cultural-expertise-card h3 {
    margin: 1.5rem 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

.cultural-expertise-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.expertise-metrics {
    margin-top: auto;
    position: relative;
    height: 0;
}

.metric-circle.small {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    font-size: 0.75rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.cultural-achievement {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 5rem;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive improvements for cultural section */
@media (max-width: 768px) {
    .cultural-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .cultural-expertise-card {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .metric-circle.small {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
        bottom: 15px;
        right: 15px;
    }

    .cultural-achievement {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
        margin-top: 3rem;
        text-align: center;
    }

    .cultural-expertise-circular {
        padding: 4rem 0;
    }
}

.achievement-circle-wrapper {
    text-align: center;
}

.achievement-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.achievement-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #F6AD55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.stat-item:nth-child(even) .stat-icon-circle {
    background: #718096;
}

.stat-item:nth-child(3n) .stat-icon-circle {
    background: #E53E3E;
}

/* Industry Specializations Circular */
.industry-specializations-circular {
    background: white;
    padding: 5rem 0;
}

.industry-circular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-circle-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-circle-card:hover {
    transform: translateY(-5px);
    border-color: #E53E3E;
}

.industry-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.industry-circular-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.industry-circular-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.industry-circular-icon.finance {
    background: #E53E3E;
}

.industry-circular-icon.healthcare {
    background: #718096;
}

.industry-circular-icon.agriculture {
    background: #F6AD55;
}

.industry-circular-icon.manufacturing {
    background: #E53E3E;
}

.industry-circular-icon.technology {
    background: #718096;
}

.industry-circular-icon.government {
    background: #F6AD55;
}

.industry-stats {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #E53E3E;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-highlights {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.highlight-circle {
    background: white;
    border: 2px solid #E53E3E;
    color: #E53E3E;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Brand Investment Packages */
.brand-investment-circular {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 5rem 0;
}

.investment-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.15);
}

.package-card.featured {
    border-color: #E53E3E;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.package-icon-circle {
    position: relative;
    margin-bottom: 1.5rem;
}

.package-circular-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-circular-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #E53E3E;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-price-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: white;
    border: 3px solid #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    transition: all 0.3s ease;
}

.package-price-circle.featured {
    background: #E53E3E;
    color: white;
}

.price-amount {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.package-features {
    text-align: left;
    margin-top: 2rem;
}

.roi-showcase {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.roi-center {
    text-align: center;
}

.roi-circular-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.roi-metric-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #E53E3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.roi-circle:nth-child(2) .roi-metric-circle {
    background: #718096;
}

.roi-circle:nth-child(3) .roi-metric-circle {
    background: #F6AD55;
}

.roi-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.roi-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.roi-note {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

/* Industry Applications Section */
.industry-applications {
    padding: 5rem 0;
    background: #f8f9fa;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E53E3E 0%, #F6AD55 100%);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.industry-item h3 {
    color: #1A202C;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.industry-item p {
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Categories Grid (Event Production) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Mobile Responsiveness for Brand Page */
@media (max-width: 768px) {
    .brand-process-navigation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-item {
        padding: 1.5rem;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .circular-timeline {
        width: 300px;
        height: 250px;
    }

    .center-circle {
        width: 80px;
        height: 80px;
    }

    .timeline-circle {
        width: 70px;
        height: 70px;
    }

    .process-step-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cultural-achievement {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .industry-circular-grid {
        grid-template-columns: 1fr;
    }

    .investment-packages {
        grid-template-columns: 1fr;
    }

    .roi-circular-metrics {
        gap: 1.5rem;
    }

    .roi-metric-circle {
        width: 100px;
        height: 100px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Brand Services Overview (Corporate Branding Page)
   ============================================================ */
.brand-services-overview {
    background: var(--primary-black);
    padding: 5rem 0;
}

.brand-services-overview .section-header h2 {
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-services-overview .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.brand-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-service-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.brand-service-card .service-icon-circle {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.brand-service-card .circular-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-service-card .circular-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.brand-service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.brand-service-card p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.brand-service-card .service-price {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================================================
   Event Production & Interior Design Page
   ============================================================ */
.service-categories {
    background: #f8f9fa;
    padding: 5rem 0;
}

.service-categories .section-header h2 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 0.75rem;
}

.category-content>p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-section ul {
    list-style: none;
    padding: 0;
}

.feature-section ul li {
    color: #4A5568;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.feature-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: var(--primary-orange);
}

.service-categories .category-features .feature-section {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-height: 0 !important;
    color: #1A202C !important;
}

.service-categories .category-features .feature-section h4 {
    color: var(--primary-orange) !important;
}

.service-categories .category-features .feature-section ul li {
    color: #4A5568 !important;
}

.service-categories .category-features .feature-section::before {
    display: none !important;
}

.service-categories,
.process-overview,
.industry-expertise {
    color: #111827 !important;
}

.service-categories .section-header h2,
.service-categories .section-header p,
.process-overview .section-header h2,
.process-overview .section-header p {
    color: #111827 !important;
    text-shadow: none !important;
}

.service-categories .category-card,
.process-overview .process-step {
    background: #ffffff !important;
    color: #111827 !important;
}

.service-categories .category-content h3,
.service-categories .category-content p,
.process-overview .step-content h3,
.process-overview .step-content p {
    color: #111827 !important;
    text-shadow: none !important;
}

.process-overview .process-step .step-number {
    color: #ffffff !important;
}

/* Process Overview */
.process-overview {
    background: var(--primary-black);
    padding: 5rem 0;
}

.process-overview .section-header h2 {
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-overview .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.process-overview .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-overview .process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-overview .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(229, 62, 62, 0.15);
}

.process-overview .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #ffffff;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-overview .step-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-overview .step-content p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Industry Expertise */
.industry-expertise {
    background: #f8f9fa;
    padding: 5rem 0;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.expertise-text .intro-text {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.expertise-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.expertise-area {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.expertise-area h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.expertise-area p {
    color: #4A5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.expertise-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Process Page Styles */
.process-overview {
    background: #f8f9fa;
    padding: 6rem 0;
    color: var(--primary-black);
}

.process-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-label {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.process-intro h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-black);
}

.process-visual {
    display: flex;
    justify-content: center;
}

.interactive-timeline {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.timeline-step {
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.timeline-step.active .step-circle {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.timeline-step.active .step-label {
    color: var(--primary-orange);
}

/* Process Navigator */
.process-navigator {
    background: var(--primary-black);
    padding: 6rem 0;
}

.navigator-header {
    text-align: center;
    margin-bottom: 4rem;
}

.navigator-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.navigator-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.step-navigator {
    display: grid;
    gap: 2rem;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.nav-btn {
    background: var(--medium-gray);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-btn.active,
.nav-btn:hover {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.nav-btn.active .btn-number,
.nav-btn:hover .btn-number {
    color: white;
}

.btn-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.step-content-area {
    margin-top: 2rem;
}

.step-content-panel {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    background: var(--medium-gray);
    border-radius: 16px;
    padding: 3rem;
}

.step-content-panel.active {
    display: grid;
}

.panel-visual {
    text-align: center;
}

.step-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.animated-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.progress-ring {
    position: relative;
}

.progress-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.progress-circle {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 8;
    stroke-dasharray: 314;
    stroke-dashoffset: calc(314 - (314 * var(--progress)) / 100);
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
}

.panel-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.content-tabs {
    margin-bottom: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

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

.animated-list li {
    color: var(--text-gray);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
}

.animated-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.step-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Process Guarantees */
.process-guarantees {
    background: #f8f9fa;
    padding: 6rem 0;
    color: var(--primary-black);
}

.guarantees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantees-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.guarantees-text p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.guarantees-list {
    display: grid;
    gap: 2rem;
}

.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.guarantee-icon {
    font-size: 1.5rem;
    background: var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: #666;
    margin: 0;
}

.quality-guarantee-circular .guarantee-feature-content h4 {
    color: #ffffff;
}

.quality-guarantee-circular .guarantee-feature-content p {
    color: rgba(255, 255, 255, 0.72);
}

.guarantees-visual {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-metrics h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
}

.metrics-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.metric-item .metric-value {
    color: var(--primary-orange);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-item .metric-label {
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .brand-services-grid {
        grid-template-columns: 1fr;
    }

    .category-features {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .expertise-areas {
        grid-template-columns: 1fr;
    }

    .process-overview .process-steps {
        grid-template-columns: 1fr;
    }

    /* Process page mobile styles */
    .process-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-benefits {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-buttons {
        grid-template-columns: 1fr;
    }

    .step-content-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-metrics {
        flex-direction: column;
        gap: 1rem;
    }

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

    .metrics-list {
        grid-template-columns: 1fr;
    }
}

/* 2026 visual refresh: apply the darker branded mock language across v2 pages */
:root {
    --brand-bg: #070707;
    --brand-surface: #111111;
    --brand-surface-2: #171717;
    --brand-soft: #f5f1ea;
    --brand-text: #f7f4ef;
    --brand-muted: #b7afa5;
    --brand-line: rgba(255, 255, 255, 0.1);
    --brand-accent-red: #ef2f4b;
    --brand-accent-gold: #f5b13a;
    --brand-accent-silver: #a7a9ac;
    --brand-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    --brand-radius-xl: 30px;
    --brand-radius-lg: 22px;
    --brand-radius-md: 18px;
}

html {
    background:
        radial-gradient(circle at top left, rgba(239, 47, 75, 0.15), transparent 22%),
        radial-gradient(circle at top right, rgba(245, 177, 58, 0.14), transparent 24%),
        linear-gradient(180deg, #090909 0%, #060606 100%);
}

body {
    background: transparent;
    color: var(--brand-text);
    font-family: 'Playfair Display', serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 35%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03), transparent 32%);
    opacity: 0.8;
    z-index: -1;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--brand-line);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.header.scrolled {
    background: rgba(8, 8, 8, 0.92);
}

.header-content {
    min-height: 76px;
}

.logo-img {
    height: 48px;
}

.nav-link,
.phone,
.phone-number {
    color: rgba(247, 244, 239, 0.9);
}

.nav-link.active,
.nav-link:hover,
.phone-icon {
    color: var(--primary-orange);
}

.phone-icon svg {
    color: var(--primary-orange);
}

.header .phone-icon,
.header-actions .phone-icon {
    background: #ffffff !important;
    color: var(--primary-orange) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.22) !important;
}

.header .phone-icon:hover,
.header-actions .phone-icon:hover {
    background: #ffffff !important;
    color: var(--hover-orange) !important;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.28) !important;
}

.header .phone-icon i,
.header .phone-icon svg,
.header-actions .phone-icon i,
.header-actions .phone-icon svg {
    color: inherit !important;
}

.header .phone,
.header-actions .phone {
    text-decoration: none !important;
}

.nav-link.active::after {
    background: linear-gradient(90deg, var(--brand-accent-red), var(--brand-accent-gold));
    height: 3px;
    border-radius: 999px;
}

.nav-dropdown-menu {
    background: rgba(14, 14, 14, 0.98);
    border: 1px solid var(--brand-line);
    border-radius: 18px;
    box-shadow: var(--brand-shadow);
}

.nav-dropdown-menu a {
    color: var(--brand-text);
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-accent-gold);
}

.btn,
.btn-primary,
.btn-secondary,
.btn-dark,
.btn-outline-dark,
.btn-orange,
.btn-outline-white {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-outline-dark:hover,
.btn-orange:hover,
.btn-outline-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

.btn-primary,
.btn-orange {
    background: linear-gradient(135deg, var(--brand-accent-red), var(--brand-accent-gold));
    border-color: transparent;
    color: #fff;
}

/* Thin button variant */
.btn.btn-thin,
.btn-primary.btn-thin {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    min-height: auto !important;
    height: auto !important;
}

.btn-secondary,
.btn-outline-white,
.btn-outline-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--brand-text);
}

.btn-dark {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--brand-text);
}

.hero-new,
.page-hero,
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
}

.hero-new::before,
.page-hero::before,
.page-header::before {
    display: none;
}

.hero-new .hero-overlay {
    display: none;
}

.page-hero .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 4, 4, 0.8), rgba(8, 8, 8, 0.35));
}

.hero-content-new,
.page-hero .hero-content,
.page-header .container {
    position: relative;
    z-index: 2;
}

.title-main,
.title-sub,
.page-title,
.page-header h1,
.presence-title,
.solutions-title,
.section-title,
.navigator-header h2,
.contact-form-wrap h2,
.contact-info-wrap h2,
.portfolio-cta h3,
.work-header h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-title-new .title-main,
.page-title,
.page-header h1 {
    color: #fff;
}

.title-sub,
.highlight,
.solutions-label,
.presence-label,
.process-label,
.section-label,
.brands-header h3,
.work-link,
.highlight-number,
.service-number,
.btn-number {
    color: var(--brand-accent-gold);
}

.hero-description-new,
.page-subtitle,
.presence-description,
.section-description,
.story-text p,
.contact-form-wrap>p,
.contact-info-wrap>p,
.intro-text,
.navigator-header p,
.portfolio-cta p,
.footer-left p {
    color: var(--brand-muted);
}

.hero-right .hero-image,
.image-main,
.portfolio-image,
.story-image,
.service-intro-image,
.panel-visual,
.contact-form-wrap,
.contact-info-wrap,
.portfolio-item,
.team-member,
.mission-card,
.vision-card,
.values-card,
.service-circular-card,
.nav-btn,
.step-content-panel,
.benefit-item,
.guarantee-card,
.filter-btn,
.process-step,
.portfolio-cta {
    border-radius: var(--brand-radius-lg);
    border: 1px solid var(--brand-line);
    box-shadow: var(--brand-shadow);
}

.trusted-brands,
.core-solutions-new,
.portfolio-grid-section,
.process-navigator,
.footer-new {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        #090909;
}

.brand-presence,
.reasons,
.company-story,
.contact-section,
.process-overview,
.process-guarantees,
.portfolio-filter-section {
    background: linear-gradient(135deg, rgba(245, 241, 234, 0.98), rgba(240, 235, 226, 0.98));
    color: #111;
}

.mission-vision {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    color: #fff !important;
}

.company-story .section-title,
.mission-vision h3,
.story-text p,
.story-stats .stat-label,
.contact-form-wrap h2,
.contact-info-wrap h2,
.contact-info-item h4,
.contact-info-item p,
.portfolio-filter-section .filter-btn,
.process-overview h2,
.process-overview .intro-text,
.process-overview .benefit-text,
.process-overview .step-label,
.process-guarantees h2,
.process-guarantees p {
    color: #111;
}

.hero-right .hero-image,
.image-main,
.story-image,
.service-intro-image {
    overflow: hidden;
    background: transparent;
}

.hero-right .hero-image img,
.image-main img,
.story-image img,
.story-image video,
.service-intro-image img,
.portfolio-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.trusted-brands {
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
}

.brand-logo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.presence-content,
.story-content,
.contact-grid,
.process-intro {
    gap: 28px;
}

.feature-item,
.stat-item,

.benefit-item,
.contact-info-item,
.metric,
.metric-item {
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 35px rgba(17, 17, 17, 0.08);
}

.solutions-grid-new,
.work-grid,
.team-grid,
.services-circular-grid,
.portfolio-grid,
.process-overview .process-steps,
.guarantees-grid {
    gap: 18px;
}

.solution-card-new,
.work-card,
.team-member,
.service-circular-card,
.portfolio-item,
.nav-btn,
.step-content-panel,
.guarantee-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.solution-card-new,
.work-card,
.service-circular-card,
.nav-btn,
.step-content-panel,
.guarantee-card {
    color: var(--brand-text);
}

.solution-card-new p,
.work-card span,
.service-circular-card p,
.nav-btn .btn-title,
.step-description,
.metric-label,
.guarantee-card p {
    color: var(--brand-muted);
}

/* Dark section text overrides */
.interactive-brand-process .step-description,
.brand-portfolio-showcase .step-description,
.interactive-brand-process .metric-label,
.brand-portfolio-showcase .metric-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Showcase content fixes */
.showcase-content h3 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.showcase-results .result-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

.step-content-text h3 {
    color: #ffffff !important;
}

/* Feature items in dark sections */
.interactive-brand-process .feature-item h4,
.brand-portfolio-showcase .feature-item h4 {
    color: #ffffff !important;
}

.interactive-brand-process .feature-item p,
.brand-portfolio-showcase .feature-item p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Section headers in dark sections */
.interactive-brand-process .section-header h2,
.brand-portfolio-showcase .section-header h2 {
    color: #ffffff !important;
}

.interactive-brand-process .section-header p,
.brand-portfolio-showcase .section-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.solution-card-new::before,
.service-circular-card::before,
.portfolio-item::before,
.nav-btn::before,
.step-content-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(245, 177, 58, 0.1), transparent 32%);
    opacity: 0.9;
}

.solution-card-new,
.service-circular-card,
.portfolio-item,
.team-member,
.nav-btn,
.step-content-panel {
    position: relative;
    overflow: hidden;
}

.solution-card-new:hover,
.work-card:hover,
.team-member:hover,
.service-circular-card:hover,
.portfolio-item:hover,
.nav-btn:hover,
.filter-btn:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 177, 58, 0.35);
}

.work-card,
.solution-card-new,
.service-circular-card,
.filter-btn,
.nav-btn,
.portfolio-item {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.work-card {
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--brand-line);
}

.work-card span {
    display: block;
    margin-top: 12px;
    font-weight: 700;
}

.page-header {
    margin-top: 72px;
    padding: 112px 0 72px;
    border-bottom: 1px solid var(--brand-line);
}

.page-header .breadcrumb {
    margin-bottom: 18px;
    color: rgba(247, 244, 239, 0.72);
}

.page-header .breadcrumb a:hover {
    color: var(--brand-accent-gold);
}

.page-header h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    max-width: 10ch;
    line-height: 0.94;
}

.page-header .page-subtitle {
    max-width: 46rem;
}

.page-hero {
    margin-top: 72px;
    padding: 110px 0 80px;
    border-bottom: 1px solid var(--brand-line);
}

.page-hero .hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 0.95;
    margin-bottom: 16px;
}

.company-story,
.mission-vision,
.team-section,
.contact-section,
.process-overview,
.portfolio-grid-section,
.process-navigator,
.process-guarantees,
.service-overview,
.service-categories-circular,
.technology-circular-section,
.quality-guarantee-circular,
.interactive-brand-process,
.brand-portfolio-showcase,
.feature-section {
    padding: 88px 0;
}

.team-section,
.service-overview,
.service-categories-circular,
.technology-circular-section,
.quality-guarantee-circular,
.interactive-brand-process,
.brand-portfolio-showcase,
.feature-section {
    background:
        radial-gradient(circle at top center, rgba(245, 177, 58, 0.08), transparent 22%),
        linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
}

.mission-card,
.vision-card,
.values-card,
.contact-form-wrap,
.contact-info-wrap {
    padding: 32px;
}

.mission-card,
.vision-card,
.values-card {
    background: rgba(25, 25, 25, 0.95) !important;
}

.team-member {
    background: rgba(14, 14, 14, 0.94);
}

.member-info h3,
.member-info .role {
    color: #fff;
}

.member-info .bio {
    color: var(--brand-muted);
}

.team-member .circular-border {
    border-color: rgba(245, 177, 58, 0.4);
}

.service-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.service-intro-content,
.process-content-area,
.panel-content {
    color: var(--brand-text);
}

.service-intro-content h2,
.section-header h2,
.panel-content h3,
.navigator-header h2 {
    color: #fff;
}

.service-intro-content .intro-text,
.section-header p,
.panel-content p,
.panel-content li,
.service-intro-content p {
    color: var(--brand-muted);
}

.service-intro-image .image-badge,
.visual-badge,
.service-price-circle,
.service-metric-circle {
    background: rgba(13, 13, 13, 0.84);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--brand-shadow);
}

.service-circular-card.featured,
.nav-btn.active,
.filter-btn.active {
    border-color: rgba(245, 177, 58, 0.45);
    box-shadow: 0 0 0 1px rgba(245, 177, 58, 0.16), var(--brand-shadow);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.filter-btn {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--brand-accent-red), var(--brand-accent-gold));
    color: #fff;
}

.portfolio-item {
    background: rgba(12, 12, 12, 0.96);
    overflow: hidden;
}

.portfolio-overlay {
    background: linear-gradient(180deg, transparent 15%, rgba(5, 5, 5, 0.92) 100%);
}

.portfolio-category {
    color: var(--brand-accent-gold);
}

.portfolio-info h3,
.portfolio-info p,
.detail {
    color: #fff;
}

.portfolio-cta {
    margin-top: 36px;
    padding: 36px;
    text-align: center;
    background:
        radial-gradient(circle at left center, rgba(239, 47, 75, 0.25), transparent 18%),
        radial-gradient(circle at right center, rgba(245, 177, 58, 0.18), transparent 18%),
        linear-gradient(90deg, #27110d 0%, #111111 55%, #261509 100%);
}

.contact-form-wrap,
.contact-info-wrap {
    background: rgba(255, 255, 255, 0.92);
}

.contact-form label {
    color: #111;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(245, 177, 58, 0.65);
    box-shadow: 0 0 0 4px rgba(245, 177, 58, 0.14);
}

.contact-info-icon {
    background: linear-gradient(135deg, var(--brand-accent-red), var(--brand-accent-gold));
    color: #fff;
    box-shadow: 0 14px 30px rgba(239, 47, 75, 0.18);
}

.emergency-box {
    border-radius: 22px;
    background:
        radial-gradient(circle at right top, rgba(245, 177, 58, 0.18), transparent 22%),
        #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.emergency-box h4,
.emergency-phone {
    color: #fff;
}

.process-overview .benefit-number,
.metric-value,
.highlight-number {
    color: var(--brand-accent-gold);
}

.process-navigator,
.interactive-brand-process,
.brand-portfolio-showcase {
    color: #ffffff;
}

.interactive-brand-process h2,
.interactive-brand-process h3,
.interactive-brand-process h4,
.brand-portfolio-showcase h2,
.brand-portfolio-showcase h3,
.brand-portfolio-showcase h4 {
    color: #ffffff;
}

.interactive-brand-process p,
.brand-portfolio-showcase p {
    color: rgba(255, 255, 255, 0.85);
}

.navigator-header,
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.nav-btn {
    background: rgba(15, 15, 15, 0.94);
    border: 1px solid var(--brand-line);
}

.nav-btn.active {
    background:
        linear-gradient(135deg, rgba(239, 47, 75, 0.16), rgba(245, 177, 58, 0.12)),
        rgba(15, 15, 15, 0.98);
}

.step-content-panel,
.process-step-content,
.portfolio-showcase-item {
    background: rgba(13, 13, 13, 0.96);
    border-radius: 24px;
    border: 1px solid var(--brand-line);
    color: #ffffff;
}

.step-content-panel h3,
.step-content-panel h4,
.process-step-content h3,
.process-step-content h4,
.portfolio-showcase-item h3,
.portfolio-showcase-item h4 {
    color: #ffffff !important;
}

.step-content-panel p,
.process-step-content p,
.portfolio-showcase-item p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.tab-btn {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--brand-text);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--brand-accent-red), var(--brand-accent-gold));
    border-color: transparent;
}

.animated-list li,
.panel-content li {
    color: var(--brand-muted);
}

.process-guarantees .guarantee-card,
.process-overview .process-step {
    background: rgba(255, 255, 255, 0.8);
}

.footer-new {
    border-top: 1px solid var(--brand-line);
    color: var(--brand-text);
}

.footer-logo-img {
    height: 84px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.footer-col h4 {
    color: var(--brand-accent-gold);
}

.footer-col a,
.footer-col li,
.footer-bottom p {
    color: rgba(247, 244, 239, 0.72);
}

.footer-col a:hover {
    color: #fff;
}

.mobile-menu-toggle span {
    background: #fff;
}

@media (max-width: 1080px) {
    .header-actions .phone {
        display: none;
    }

    .service-intro,
    .presence-content,
    .story-content,
    .contact-grid,
    .process-intro,
    .hero-content-new {
        grid-template-columns: 1fr;
    }

    .solutions-grid-new,
    .work-grid,
    .portfolio-grid,
    .services-circular-grid,
    .team-grid,
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 20px, 100%);
    }

    .header-content {
        gap: 1rem;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 10px;
        right: 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid var(--brand-line);
        box-shadow: var(--brand-shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        display: block;
        margin-top: 10px;
        min-width: 0;
        box-shadow: none;
    }

    .page-hero,
    .page-header {
        margin-top: 66px;
    }

    .hero-new {
        margin-top: 0;
        height: auto;
        min-height: 45vh;
    }

    .hero-new .hero-content-new {
        padding-top: 100px;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .page-hero,
    .page-header {
        padding: 88px 0 56px;
    }

    .company-story,
    .mission-vision,
    .team-section,
    .contact-section,
    .process-overview,
    .portfolio-grid-section,
    .process-navigator,
    .process-guarantees,
    .service-overview,
    .service-categories-circular,
    .technology-circular-section,
    .quality-guarantee-circular,
    .interactive-brand-process,
    .brand-portfolio-showcase,
    .feature-section {
        padding: 64px 0;
    }

    .solutions-grid-new,
    .work-grid,
    .portfolio-grid,
    .services-circular-grid,
    .team-grid,
    .footer-columns,
    .filter-buttons {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .mission-card,
    .vision-card,
    .values-card,
    .contact-form-wrap,
    .contact-info-wrap,
    .portfolio-cta {
        padding: 2rem 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-dark,
    .btn-outline-dark,
    .btn-orange,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1080px) {
    .header-actions .phone {
        display: inline-flex !important;
    }

    .header-actions {
        gap: 0.75rem !important;
    }

    .header-actions .btn {
        width: auto !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 560px) {
    .header-actions {
        gap: 0.5rem !important;
    }

    .header-actions .phone {
        font-size: 0.78rem !important;
    }

    .header-actions .phone-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .header-actions .btn {
        display: none !important;
    }
}

/* Final override: team portraits + trusted brands */

/* Portfolio redesign */
.portfolio-page-redesign .page-hero {
    background:
        radial-gradient(circle at top center, rgba(245, 177, 58, 0.14), transparent 22%),
        linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
}

.portfolio-collections-intro {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.portfolio-summary-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 32px;
}

.portfolio-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-accent-red);
}

.portfolio-summary-copy,
.portfolio-summary-stats {
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.portfolio-summary-copy {
    padding: 32px;
}

.portfolio-summary-copy h2 {
    color: #111;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    margin-bottom: 14px;
}

.portfolio-summary-copy p {
    color: #4b5563;
    max-width: 56ch;
}

.portfolio-summary-stats {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.portfolio-stat-card {
    padding: 22px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.01));
    border: 1px solid rgba(17, 17, 17, 0.06);
    text-align: center;
}

.portfolio-stat-card strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
    color: #111;
}

.portfolio-stat-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.portfolio-filter-pills {
    justify-content: flex-start;
}

.portfolio-collections-section {
    background:
        radial-gradient(circle at top center, rgba(245, 177, 58, 0.08), transparent 20%),
        linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
}

.portfolio-grid-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    margin-bottom: 28px;
}

.portfolio-grid-heading p {
    max-width: 32rem;
    color: rgba(247, 244, 239, 0.72);
}

.portfolio-collections-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
    margin-top: 0 !important;
}

.portfolio-collection-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(11, 11, 11, 0.96);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: var(--brand-shadow);
}

.portfolio-collection-card.featured {
    grid-column: span 6;
}

.portfolio-page-redesign .portfolio-collections-grid .portfolio-collection-card,
.portfolio-page-redesign .portfolio-collections-grid .portfolio-collection-card:not(.large) {
    grid-column: span 4;
}

.portfolio-page-redesign .portfolio-collections-grid .portfolio-collection-card.featured {
    grid-column: span 6;
}

.portfolio-page-redesign .portfolio-collections-grid .portfolio-collection-card::before {
    display: none;
}

.portfolio-collection-media {
    position: relative;
    aspect-ratio: 1.2 / 0.92;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.portfolio-collection-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.portfolio-collection-card:hover .portfolio-collection-media img {
    transform: scale(1.04);
}

.portfolio-collection-badges {
    position: absolute;
    inset: 14px 14px auto 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.portfolio-badge.gallery,
.portfolio-badge.count {
    color: #f5b13a;
}

.portfolio-collection-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
    position: relative;
    z-index: 1;
}

.portfolio-collection-topline {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
}

.portfolio-collection-folder {
    color: rgba(247, 244, 239, 0.45);
    font-size: 0.8rem;
    text-align: right;
}

.portfolio-collection-card h3 {
    color: #fff;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 0.98;
    margin-bottom: 10px;
}

.portfolio-collection-card p {
    color: rgba(247, 244, 239, 0.74);
    margin-bottom: 18px;
}

.portfolio-thumb-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
}

.portfolio-thumb {
    position: relative;
    border: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #161616;
    cursor: pointer;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-thumb.has-more span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.portfolio-collection-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}

.portfolio-open-btn {
    flex-shrink: 0;
}

.portfolio-action-note {
    color: rgba(247, 244, 239, 0.52);
    font-size: 0.84rem;
    text-align: right;
}

.portfolio-gallery-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 3000;
}

.portfolio-gallery-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.74);
    backdrop-filter: blur(12px);
}

.portfolio-gallery-dialog {
    position: relative;
    width: min(1120px, 100%);
    max-height: min(90vh, 980px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.portfolio-gallery-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.portfolio-gallery-header {
    padding-right: 60px;
}

.portfolio-gallery-header h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
}

.portfolio-gallery-header p {
    color: rgba(247, 244, 239, 0.62);
    margin-top: 8px;
}

.portfolio-gallery-stage {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    gap: 14px;
    align-items: center;
}

.portfolio-gallery-figure {
    border-radius: 24px;
    overflow: hidden;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 420px;
}

.portfolio-gallery-figure img {
    width: 100%;
    height: min(62vh, 760px);
    object-fit: contain;
    background: #111;
}

.portfolio-gallery-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.portfolio-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.portfolio-gallery-thumb {
    flex: 0 0 88px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    background: #111;
    cursor: pointer;
}

.portfolio-gallery-thumb.active {
    border-color: rgba(245, 177, 58, 0.7);
    box-shadow: 0 0 0 1px rgba(245, 177, 58, 0.35);
}

.portfolio-gallery-thumb img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    display: block;
}

body.gallery-open {
    overflow: hidden;
}

@media (max-width: 1100px) {

    .portfolio-summary-shell,
    .portfolio-grid-heading {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-heading {
        align-items: start;
    }

    .portfolio-collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-collection-card,
    .portfolio-collection-card.featured {
        grid-column: span 1;
    }
}

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

    .portfolio-collections-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-collection-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .portfolio-action-note {
        text-align: left;
    }

    .portfolio-gallery-dialog {
        padding: 18px;
    }

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

    .portfolio-gallery-nav {
        display: none;
    }

    .portfolio-gallery-figure {
        min-height: 280px;
    }

    .portfolio-gallery-figure img {
        height: min(52vh, 460px);
    }
}

/* Trusted brands white treatment */
.trusted-brands {
    background: #ffffff !important;
    border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
}

.trusted-brands .brands-label,
.trusted-brands .brands-label-text,
.trusted-brands .brands-title,
.trusted-brands .brands-subtitle {
    color: #111111 !important;
}

.trusted-brands .brand-logo {
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06) !important;
}

.team-section {
    position: relative;
    isolation: isolate;
    background: #ffffff !important;
}

.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: -1;
}

.team-section .section-title,
.team-section .section-description {
    color: #161616;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-top: 4rem;
    background: #ffffff !important;
}

.team-member,
.team-member.featured {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    min-height: 360px;
    padding: 0;
    background: #ffffff !important;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    transform: none;
}

.team-member:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.team-member:nth-child(even) .member-image {
    order: 2;
}

.team-member:nth-child(even) .member-info {
    order: 1;
    text-align: right;
    align-items: flex-end;
}

.member-image {
    width: 100%;
    min-height: 420px;
    padding: 0;
    margin: 0;
    background: #ffffff !important;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-image::after {
    display: none;
}

.circular-border,
.team-member.featured .circular-border {
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    background: #ffffff !important;
    isolation: auto;
}

.circular-border img,
.team-member.featured .circular-border img {
    position: static;
    display: block;
    width: min(360px, 100%);
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
    filter: none;
    z-index: 1;
}

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    background: #ffffff !important;
    text-align: left;
}

.member-info h3 {
    position: relative;
    margin: 0 0 0.75rem;
    padding-left: 1.5rem;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #191919;
}


.member-info .role {
    margin-bottom: 1.4rem;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #2a2a2a;
}

.member-info .bio {
    max-width: 22ch;
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: 1.25;
    color: #2f2f2f;
}

.team-member:hover,
.team-member.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.circular-border::before,
.team-member.featured .circular-border::before {
    display: none;
}

.trusted-brands {
    position: relative;
    top: auto;
    z-index: 1;
    border-top: 4px solid #ffffff;
    padding-top: 2rem;
}

.brands-header {
    position: relative;
    margin-bottom: 1rem;
}

.brands-header h3 {
    display: inline-block;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .team-grid {
        gap: 2.5rem;
    }

    .team-member,
    .team-member.featured,
    .team-member:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        min-height: auto;
    }

    .team-member:nth-child(even) .member-image,
    .team-member:nth-child(even) .member-info {
        order: initial;
        text-align: center;
        align-items: center;
    }

    .member-image {
        min-height: 340px;
    }

    .circular-border,
    .team-member.featured .circular-border {
        width: auto;
        height: auto;
        margin: 0;
    }

    .circular-border img,
    .team-member.featured .circular-border img {
        width: min(300px, 100%);
        height: auto;
    }

    .member-info,
    .team-member:nth-child(even) .member-info {
        text-align: center;
        align-items: center;
    }

    .member-info h3,
    .team-member:nth-child(even) .member-info h3 {
        padding-left: 0;
        padding-right: 0;
    }

    .member-info h3::before,
    .team-member:nth-child(even) .member-info h3::before {
        display: none;
    }

    .member-info .bio {
        max-width: 28ch;
    }
}

@media (max-width: 480px) {
    .member-image {
        min-height: 250px;
    }

    .circular-border,
    .team-member.featured .circular-border {
        width: auto;
        height: auto;
    }

    .circular-border::before,
    .team-member.featured .circular-border::before {
        display: none;
    }

    .circular-border img,
    .team-member.featured .circular-border img {
        width: min(260px, 100%);
        height: auto;
    }
}

/* Final homepage trusted brands override */
.trusted-brands,
.trusted-brands .marquee-wrapper {
    background: #000000 !important;
}

.trusted-brands {
    border-top: 1px solid #444444 !important;
    padding-top: 2rem !important;
}

.trusted-brands .brands-header h3 {
    background: #E53E3E !important;
    color: #ffffff !important;
    border: 1px solid rgba(229, 62, 62, 0.3) !important;
    box-shadow: 0 10px 24px rgba(229, 62, 62, 0.2) !important;
}

.trusted-brands .marquee-track {
    background: transparent !important;
}

.trusted-brands .brand-logo {
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06) !important;
}

/* ============================================================
   Portfolio V2 Styles - Enhanced Portfolio Page
   ============================================================ */

/* Portfolio V2 Hero Section */
.portfolio-v2-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 2rem 0;
}

.portfolio-v2-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.portfolio-v2-hero-text {
    max-width: 600px;
}

.portfolio-v2-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(229, 62, 62, 0.1);
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.portfolio-v2-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.portfolio-v2-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.portfolio-v2-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-v2-stat {
    text-align: left;
}

.portfolio-v2-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.portfolio-v2-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-v2-hero-feature {
    position: relative;
}

.portfolio-v2-feature-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 280px;
}

.portfolio-v2-feature-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.portfolio-v2-feature-item:first-child {
    grid-row: 1 / 3;
}

.portfolio-v2-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-v2-feature-item:hover .portfolio-v2-feature-img {
    transform: scale(1.05);
}

.portfolio-v2-feature-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Portfolio V2 Categories Section */
.portfolio-v2-categories {
    padding: 6rem 0;
    background: #ffffff;
}

.portfolio-v2-categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-v2-categories-header .portfolio-v2-eyebrow {
    background: rgba(229, 62, 62, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.portfolio-v2-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.portfolio-v2-category-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-v2-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-v2-category-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-v2-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-v2-category-card:hover .portfolio-v2-category-img {
    transform: scale(1.1);
}

.portfolio-v2-category-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.portfolio-v2-category-count {
    padding: 0.5rem 1rem;
    background: var(--primary-orange);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
}

.portfolio-v2-category-content {
    padding: 2rem;
}

.portfolio-v2-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.portfolio-v2-category-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-v2-category-subcats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-v2-category-subcats span {
    padding: 0.4rem 0.8rem;
    background: rgba(229, 62, 62, 0.1);
    color: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 15px;
}

/* Company Motto Section */
.company-motto {
    background: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.motto-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.motto-text {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.motto-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .company-motto {
        padding: 4rem 0;
    }

    .motto-text {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .motto-description {
        font-size: 1.1rem;
    }
}

/* Portfolio V2 Featured Section */
.portfolio-v2-featured {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Recent Work section override for home page */
.recent-work.portfolio-v2-featured {
    background: var(--primary-black);
}

.recent-work.portfolio-v2-featured .work-title,
.recent-work.portfolio-v2-featured .section-title {
    color: white;
}

.recent-work.portfolio-v2-featured .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.recent-work.portfolio-v2-featured .portfolio-v2-eyebrow {
    background: rgba(229, 62, 62, 0.2);
    color: var(--primary-orange);
}

.portfolio-v2-featured-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-v2-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 2rem;
    min-height: 600px;
}

.portfolio-v2-featured-large {
    grid-row: 1 / 3;
}

.portfolio-v2-featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-v2-featured-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.portfolio-v2-featured-item:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.portfolio-v2-featured-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.portfolio-v2-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-v2-featured-item:hover .portfolio-v2-featured-img {
    transform: scale(1.1);
}

.portfolio-v2-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
}

.portfolio-v2-featured-item:hover .portfolio-v2-featured-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
}

.portfolio-v2-featured-content {
    color: white;
}

.portfolio-v2-featured-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-v2-featured-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
}

.portfolio-v2-featured-large .portfolio-v2-featured-title {
    font-size: 1.75rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

.portfolio-v2-featured-description {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.95);
}

.portfolio-v2-featured-details {
    display: flex;
    gap: 1rem;
}

.portfolio-v2-featured-details span {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Portfolio V2 Featured Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-v2-featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 250px 250px 250px 250px;
        gap: 1.5rem;
        min-height: auto;
    }

    .portfolio-v2-featured-large {
        grid-row: 1;
    }

    .portfolio-v2-featured-overlay {
        padding: 1.5rem;
    }

    .portfolio-v2-featured-title {
        font-size: 1.1rem;
    }

    .portfolio-v2-featured-large .portfolio-v2-featured-title {
        font-size: 1.4rem;
    }
}

/* Portfolio V2 Testimonials */
.portfolio-v2-testimonials {
    padding: 6rem 0;
    background: var(--primary-black);
}

.portfolio-v2-testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-v2-testimonials-header .portfolio-v2-eyebrow {
    background: rgba(229, 62, 62, 0.2);
}

.portfolio-v2-testimonials-header .section-title {
    color: #ffffff;
}

.portfolio-v2-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-v2-testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-v2-testimonial-stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.portfolio-v2-testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.portfolio-v2-testimonial-author strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.portfolio-v2-testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Portfolio V2 CTA */
.portfolio-v2-cta {
    padding: 6rem 0;
    background: var(--primary-orange);
}

.portfolio-v2-cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portfolio-v2-cta-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.portfolio-v2-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.portfolio-v2-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    min-width: 180px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-v2-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-v2-feature-gallery {
        height: 250px;
    }

    .portfolio-v2-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .portfolio-v2-featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 300px);
        height: auto;
    }

    .portfolio-v2-featured-large {
        grid-row: auto;
    }

    .portfolio-v2-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-v2-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .portfolio-v2-page .portfolio-v2-hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .portfolio-v2-page .portfolio-v2-hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }

    .portfolio-v2-page .portfolio-v2-hero-feature,
    .portfolio-v2-page .portfolio-v2-feature-gallery {
        display: none !important;
    }

    .portfolio-v2-page .portfolio-v2-hero-text {
        max-width: 100%;
    }

    .portfolio-v2-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-v2-feature-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: 400px;
    }

    .portfolio-v2-feature-item:first-child {
        grid-row: auto;
    }

    .portfolio-v2-categories-grid,
    .portfolio-v2-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-v2-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Bouncing Dots Animation for Portfolio V2 */
.portfolio-v2-loading-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 1rem 0;
}

.portfolio-v2-loading-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background: var(--primary-orange);
    animation: bouncing-dots 1.4s infinite ease-in-out both;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.4);
}

.portfolio-v2-loading-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.portfolio-v2-loading-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.portfolio-v2-loading-dots .dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes bouncing-dots {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.portfolio-v2-hero-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Ensure loading dots container is visible */
.portfolio-v2-loading-dots {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
}


.logo .logo-dot-3 {
    position: absolute;
    top: 2px;
    left: 36px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F59E0B;
    animation-delay: 0s;
    z-index: 10;
}

/* Footer logo dots animation */
.footer-logo {
    position: relative;
}



.footer-logo .logo-dot-3 {
    position: absolute;
    top: 2px;
    left: 36px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F59E0B;
    animation-delay: 0s;
    z-index: 10;
}

/* Responsive adjustments for hero logo */
@media (max-width: 768px) {
    .portfolio-v2-hero-logo {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-logo-text {
        font-size: 2rem;
    }

    .hero-dot {
        width: 14px;
        height: 14px;
    }
}

/* Floating Bouncing Dots */
.portfolio-v2-floating-dots {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
    pointer-events: none;
    z-index: 1;
}

.portfolio-v2-hero-text > :not(.portfolio-v2-floating-dots) {
    position: relative;
    z-index: 2;
}

.floating-dot {
    position: absolute;
    width: clamp(17px, 2.1vw, 38px);
    height: clamp(17px, 2.1vw, 38px);
    border-radius: 50%;
    opacity: 0.9;
}

.floating-dot.red {
    background: #E53E3E;
    animation: hero-dot-drift-red 46s infinite ease-in-out;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.floating-dot.orange {
    background: #F59E0B;
    animation: hero-dot-drift-orange 54s infinite ease-in-out;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.floating-dot.gray {
    background: #6B7280;
    animation: hero-dot-drift-gray 62s infinite ease-in-out;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

@keyframes hero-dot-drift-red {
    0% {
        top: 6%;
        left: 3%;
        transform: scale(1);
    }

    28% {
        top: 8%;
        left: 86%;
        transform: scale(1.06);
    }

    56% {
        top: 72%;
        left: 76%;
        transform: scale(0.95);
    }

    78% {
        top: 64%;
        left: 9%;
        transform: scale(1.03);
    }

    100% {
        top: 6%;
        left: 3%;
        transform: scale(1);
    }
}

@keyframes hero-dot-drift-orange {
    0% {
        top: 74%;
        left: 72%;
        transform: scale(1);
    }

    22% {
        top: 68%;
        left: 12%;
        transform: scale(0.96);
    }

    50% {
        top: 14%;
        left: 82%;
        transform: scale(1.05);
    }

    74% {
        top: 18%;
        left: 20%;
        transform: scale(1);
    }

    100% {
        top: 74%;
        left: 72%;
        transform: scale(1);
    }
}

@keyframes hero-dot-drift-gray {
    0% {
        top: 10%;
        left: 42%;
        transform: scale(1);
    }

    30% {
        top: 56%;
        left: 88%;
        transform: scale(1.04);
    }

    58% {
        top: 76%;
        left: 7%;
        transform: scale(0.94);
    }

    82% {
        top: 22%;
        left: 62%;
        transform: scale(1.02);
    }

    100% {
        top: 10%;
        left: 42%;
        transform: scale(1);
    }
}

/* Responsive adjustments for floating dots */
@media (max-width: 768px) {
    .portfolio-v2-floating-dots {
        inset: 0;
    }

    .floating-dot {
        width: 17px;
        height: 17px;
    }
}

/* =============================================
   ABOUT & PROCESS PAGE FIXES
   Fix text visibility in light-background sections
   within the 2026 dark theme refresh
   ============================================= */

/* --- Contact Hero Card --- */
.contact-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--brand-radius-xl, 24px);
    padding: 3rem;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-hero-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--brand-radius-md, 18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-hero-item:hover {
    background: rgba(229, 62, 62, 0.08);
    border-color: rgba(229, 62, 62, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.1);
}

.contact-hero-item:hover .contact-hero-icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.2);
}

.contact-hero-icon {
    font-size: 1.35rem;
    color: #fff;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.1);
}

.contact-hero-icon i {
    line-height: 1;
}

.contact-hero-item .contact-content {
    flex: 1;
    padding-top: 0.25rem;
}

.contact-hero-item strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-hero-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .contact-hero-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .contact-hero-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .contact-hero-icon {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .contact-hero-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .contact-hero-item {
        padding: 1.25rem;
        gap: 1rem;
        align-items: center;
    }

    .contact-hero-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .contact-hero-item strong {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .contact-hero-item span {
        font-size: 0.9rem;
    }
}

/* --- About Hero Stats --- */
.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-accent-gold);
    line-height: 1;
}

.about-hero-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }

    .about-hero-stat strong {
        font-size: 1.6rem;
    }
}

/* --- Unified Process Explorer --- */
.process-explorer {
    padding: 6rem 0;
    background:
        radial-gradient(circle at top center, rgba(229, 62, 62, 0.06), transparent 40%),
        linear-gradient(180deg, #0d0d0d 0%, #090909 100%) !important;
    color: #fff !important;
}

.process-explorer-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.process-explorer-header .process-label {
    color: var(--brand-accent-red, #E53E3E) !important;
}

.process-explorer-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff !important;
    font-style: normal;
}

.process-explorer-header .intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6) !important;
}

.process-explorer-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left: Vertical Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.flow-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    padding: 1.25rem;
    border-radius: var(--brand-radius-lg, 18px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.06);
}

.flow-step.active {
    background: rgba(229, 62, 62, 0.06);
    border-color: #E53E3E;
}

.flow-number {
    grid-row: 1 / 3;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.flow-step.active .flow-number {
    background: var(--brand-accent-red, #E53E3E);
    color: #fff;
    border-color: var(--brand-accent-red, #E53E3E);
    box-shadow: 0 4px 20px rgba(229, 62, 62, 0.35);
}

.flow-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.flow-step.active .flow-title {
    color: #fff;
}

.flow-duration {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

.flow-step.active .flow-duration {
    color: #E53E3E;
}

.flow-progress {
    grid-column: 2;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 0.6rem;
    overflow: hidden;
}

.flow-progress span {
    display: block;
    height: 100%;
    border-radius: 2px;
    background: #E53E3E;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.flow-step.active .flow-progress span {
    opacity: 1;
}

.flow-connector {
    width: 2px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 0 calc(1.25rem + 27px);
}

/* Right: Detail Panel */
.process-detail {
    position: sticky;
    top: 100px;
}

.process-explorer .step-content-panel {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--brand-radius-xl, 24px);
    padding: 2.5rem;
    animation: fadeInPanel 0.35s ease;
}

.process-explorer .step-content-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-explorer .panel-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 1rem;
}

.process-explorer .step-description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.process-explorer .tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.process-explorer .tab-btn.active,
.process-explorer .tab-btn:hover {
    border-color: #E53E3E;
    color: #E53E3E;
    background: rgba(229, 62, 62, 0.1);
}

.process-explorer .animated-list li {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.75rem 0 0.75rem 2rem !important;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.process-explorer .animated-list li::before {
    color: #E53E3E !important;
}

.process-explorer .step-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-explorer .step-metrics .metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--brand-radius-md, 16px);
    padding: 1.25rem;
    text-align: center;
}

.process-explorer .metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #E53E3E !important;
}

.process-explorer .metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
    .process-explorer-layout {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        padding-bottom: 1rem;
    }

    .flow-connector {
        width: 16px;
        height: 2px;
        margin: auto 0;
    }

    .flow-step {
        min-width: 200px;
    }

    .process-detail {
        position: static;
    }
}

@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
    }

    .flow-connector {
        width: 2px;
        height: 12px;
        margin: 0 0 0 calc(1.25rem + 27px);
    }

    .flow-step {
        min-width: unset;
    }
}

/* --- Process Overview V2 Redesign --- */
.process-overview-v2 {
    padding: 6rem 0 !important;
}

.process-overview-v2 .process-overview-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.process-overview-v2 .process-overview-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.process-overview-v2 .process-overview-header .intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.process-overview-v2 .process-timeline-bar {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--brand-radius-lg, 22px);
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.process-overview-v2 .timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.process-overview-v2 .timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e8e8e8;
    z-index: 0;
}

.process-overview-v2 .timeline-step {
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.process-overview-v2 .timeline-step:hover {
    transform: translateY(-3px);
}

.process-overview-v2 .step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.process-overview-v2 .timeline-step.active .step-circle {
    background: var(--brand-accent-red, #E53E3E);
    color: #fff;
    border-color: rgba(229, 62, 62, 0.3);
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(229, 62, 62, 0.35);
}

.process-overview-v2 .step-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
}

.process-overview-v2 .timeline-step.active .step-label {
    color: var(--brand-accent-red, #E53E3E);
}

.process-overview-v2 .process-benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-overview-v2 .benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--brand-radius-lg, 22px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-overview-v2 .benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.process-overview-v2 .benefit-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-accent-red, #E53E3E);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.process-overview-v2 .benefit-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555;
}

@media (max-width: 768px) {
    .process-overview-v2 .process-benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-overview-v2 .process-timeline-bar {
        padding: 1.5rem;
        overflow-x: auto;
    }

    .process-overview-v2 .timeline-steps {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .process-overview-v2 .process-benefits-row {
        grid-template-columns: 1fr;
    }
}

/* --- Mission/Vision/Values DARK THEME OVERRIDES --- */
.mission-vision {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
}

.mission-card,
.vision-card,
.values-card {
    background: rgba(25, 25, 25, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: #ffffff !important;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.mission-card .card-icon,
.vision-card .card-icon,
.values-card .card-icon {
    color: var(--brand-accent-gold);
}

/* --- Story stats visibility --- */
.story-stats .stat-number {
    color: var(--brand-accent-gold) !important;
    font-size: 2.2rem;
    font-weight: 800;
}

.story-stats .stat-label {
    color: #555 !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Why Choose Us section visibility --- */
.why-choose-us {
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, rgba(245, 241, 234, 0.98), rgba(240, 235, 226, 0.98)) !important;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 241, 234, 0.98), rgba(240, 235, 226, 0.98));
    z-index: -1;
}

.why-choose-us .section-title,
.why-choose-us .section-description {
    color: #111 !important;
}

.why-choose-us .why-item {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--brand-line);
}

.why-choose-us .why-item h3 {
    color: #111 !important;
}

.why-choose-us .why-item p {
    color: #333 !important;
}

.why-choose-us .why-icon {
    color: var(--brand-accent-gold);
}

/* =============================================
   TEAM CARDS - Two-Column, Circle Overflow
   ============================================= */

.team-section {
    background: #eae6e0 !important;
    padding: 6rem 0 !important;
}

.team-section::before {
    display: none !important;
}

.team-section .section-header .section-title {
    color: #111 !important;
}

.team-section .section-header .section-description {
    color: #555 !important;
}

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    padding: 0 !important;
}

.team-member,
.team-member.featured {
    display: grid !important;
    grid-template-columns: 1fr 200px !important;
    align-items: center !important;
    background: linear-gradient(135deg, #f0f0f0 0%, #fff 50%, #e8e8e8 100%) !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    padding: 2.5rem 0 2.5rem 2.5rem !important;
    min-height: 260px !important;
    overflow: visible !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    flex-direction: unset !important;
    position: relative !important;
}

.team-member:hover,
.team-member.featured:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Text side */
.team-section .member-info {
    text-align: left !important;
    padding: 0 1rem 0 0 !important;
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.team-section .member-info h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
    line-height: 1.15 !important;
    padding-bottom: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.team-section .member-info h3::after {
    display: none !important;
}

.team-section .member-info .role {
    color: #c8922a !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    text-transform: none !important;
    margin-bottom: 0.6rem !important;
    margin-top: 0.15rem !important;
}

.team-member:nth-child(even) .member-info .role {
    color: #c8922a !important;
}

.team-section .member-info .bio {
    color: #444 !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    max-width: none !important;
    margin: 0 !important;
}

/* Image side - circular, overflowing right */
.team-section .member-image {
    order: 2 !important;
    width: 200px !important;
    height: 200px !important;
    min-height: unset !important;
    margin: 0 -20px 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    background: transparent !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.team-section .team-grid .team-member .circular-border,
.team-section .team-grid .team-member.featured .circular-border,
.team-section .team-grid .team-member .member-image .circular-border,
.team-section .team-grid .team-member.featured .member-image .circular-border {
    width: 190px !important;
    height: 190px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    background: #ddd !important;
    flex-shrink: 0 !important;
}

/* DISABLED Gold ring - Clean white design */
.team-section .team-grid .team-member .circular-border::before,
.team-section .team-grid .team-member.featured .circular-border::before {
    display: none !important;
}

.team-section .circular-border::before {
    display: none !important;
}

.team-section .team-grid .circular-border img,
.team-section .team-grid .team-member.featured .circular-border img {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: none !important;
    z-index: 1 !important;
    scale: 1 !important;
    filter: none !important;
    display: block !important;
    border-radius: 50% !important;
    min-height: unset !important;
}

.team-section .team-grid .team-member:hover .circular-border,
.team-section .team-grid .team-member:hover .circular-border::before {
    transform: none !important;
}

.team-section .team-grid .team-member.featured {
    grid-column: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.team-section .team-grid .team-member.featured .circular-border {
    width: 190px !important;
    height: 190px !important;
}

/* Competencies section */
.competencies-title {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    font-style: italic !important;
    color: #222 !important;
    margin: 1rem 0 0.6rem !important;
    text-transform: none !important;
}

.competencies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.competencies span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    padding: 0.25rem 0;
}

.competencies span i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    font-size: 0.65rem;
    color: #E53E3E;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {

    .team-member,
    .team-member.featured {
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .team-section .member-image {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 1rem !important;
        order: 1 !important;
    }

    .team-section .member-info {
        order: 2 !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .team-section .member-info h3 {
        border-left: none !important;
        padding-left: 0 !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .team-section .team-grid .team-member .circular-border,
    .team-section .team-grid .team-member.featured .circular-border {
        width: 120px !important;
        height: 120px !important;
    }
}

/* FINAL OVERRIDES - Clean Team Section Design - FIXED */
.team-section {
    background: #f8f9fa !important;
    padding: 4rem 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 500px !important;
}

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
}

.team-member {
    background: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 120px !important;
}

.team-member .member-image {
    width: 100px !important;
    height: 100px !important;
    margin-right: 1rem !important;
    order: 1 !important;
    flex-shrink: 0 !important;
    background: transparent !important;
}

.team-member .member-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
}

.team-member .member-info {
    order: 2 !important;
    flex: 1 !important;
    background: transparent !important;
}

.team-member,
.team-member.featured {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
}

.team-member .circular-border::before,
.team-member.featured .circular-border::before,
.team-section .circular-border::before,
.team-section .team-grid .circular-border::before,
.team-section .team-grid .team-member .circular-border::before,
.team-section .team-grid .team-member.featured .circular-border::before {
    display: none !important;
    content: none !important;
    border: none !important;
}

.team-section .member-info h3,
.team-section .team-grid .member-info h3 {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border: none !important;
    padding-left: 0 !important;
    font-size: 1.1rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* FINAL OVERRIDE - White hover background for team members */
.team-member:hover,
.team-member.featured:hover,
.team-section .team-member:hover,
.team-section .team-member.featured:hover {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* FINAL OVERRIDE - Responsive hero image scaling */
@media (max-width: 1024px) {
    .hero-right .hero-image img {
        object-fit: contain !important;
        object-position: center !important;
        padding: 0.5rem !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 768px) {
    .hero-right .hero-image {
        min-height: 200px !important;
        max-height: 300px !important;
        height: auto !important;
        max-width: 90% !important;
        background: transparent !important;
    }

    .hero-right .hero-image img {
        padding: 0.5rem !important;
        width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
    }
}

@media (max-width: 480px) {
    .hero-right .hero-image {
        min-height: 150px !important;
        max-height: 250px !important;
        height: auto !important;
        max-width: 95% !important;
    }

    .hero-right .hero-image img {
        max-height: 230px !important;
    }
}

.hero-right .hero-video {
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
}

@media (min-width: 769px) {
    .hero-new:not(.service-hero) .hero-content-new {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
        gap: clamp(2rem, 4vw, 5rem) !important;
    }

    .hero-new:not(.service-hero) .hero-right {
        width: min(100%, 920px) !important;
        max-width: 100% !important;
        justify-self: center !important;
    }

    .hero-new:not(.service-hero) .hero-right .hero-image {
        height: clamp(420px, 40vw, 560px) !important;
        min-height: clamp(420px, 40vw, 560px) !important;
        max-height: 560px !important;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {
    .hero-new:not(.service-hero) .hero-content-new {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding-inline: clamp(2rem, 6vw, 4rem) !important;
    }

    .hero-new:not(.service-hero) .hero-left,
    .hero-new:not(.service-hero) .hero-right {
        width: 100% !important;
        max-width: 920px !important;
        justify-self: center !important;
    }

    .hero-new:not(.service-hero) .hero-right .hero-image {
        width: min(100%, 920px) !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
    }

    .hero-right .hero-video {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}

@media (min-width: 1401px) and (max-width: 1600px) {
    .hero-new:not(.service-hero) .hero-right .hero-video {
        min-height: 390px !important;
        max-height: 520px !important;
    }
}

@media (max-width: 768px) {
    .hero-right .hero-image {
        height: 360px !important;
        max-width: 96% !important;
    }

    .hero-right .hero-video {
        height: 100% !important;
        min-height: 260px !important;
        max-height: 360px !important;
    }
}

@media (max-width: 480px) {
    .hero-right .hero-image {
        height: 320px !important;
        max-width: 100% !important;
    }

    .hero-right .hero-video {
        height: 100% !important;
        min-height: 220px !important;
        max-height: 320px !important;
    }
}

/* FINAL OVERRIDE - Hero background image fix for widescreen */
.hero-new {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%) !important;
    overflow: hidden;
}

.hero-background {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%) !important;
}

/* Background image removed - keeping rule for reference */
.hero-background .hero-bg-image {
    display: none !important;
}

/* Short viewport hero fix */
@media (min-width: 769px) and (max-height: 760px) {
    .hero-new {
        min-height: auto !important;
        padding: 0 !important;
    }

    .hero-content-new {
        min-height: calc(100vh - 76px) !important;
        padding: 5rem 3rem 1.5rem !important;
        gap: clamp(2rem, 4vw, 5rem) !important;
        align-items: center !important;
    }

    .hero-title-new {
        padding-top: 0 !important;
        margin-bottom: 0.7rem !important;
        font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
        line-height: 0.88 !important;
    }

    .title-main {
        font-size: clamp(2.7rem, 5vw, 4.4rem) !important;
    }

    .title-sub {
        font-size: clamp(2rem, 4.2vw, 3.3rem) !important;
        line-height: 0.9 !important;
    }

    .hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 0.85rem !important;
    }

    .hero-description-new {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        margin-bottom: 1.4rem !important;
        max-width: 460px !important;
    }

    .hero-buttons-new {
        gap: 1rem !important;
    }

    .hero-buttons-new .btn {
        padding: 0.55rem 1.45rem !important;
        font-size: 0.82rem !important;
    }

    .hero-image {
        min-height: 300px !important;
        max-height: min(50vh, 420px) !important;
    }

    .hero-carousel {
        gap: 0.55rem !important;
    }

    .hero-carousel-dots {
        padding: 0.35rem 0.75rem !important;
        gap: 0.55rem !important;
    }

    .hero-carousel-dot {
        width: 11px !important;
        height: 11px !important;
    }

    .hero-wordmark .dot {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (min-width: 769px) and (max-height: 620px) {
    .hero-content-new {
        padding-top: 4.5rem !important;
        padding-bottom: 1rem !important;
    }

    .hero-description-new {
        display: none !important;
    }

    .hero-image {
        min-height: 260px !important;
        max-height: min(44vh, 330px) !important;
    }
}

/* Mobile Fixes for Standout Projects and Why Choose sections */
@media (max-width: 768px) {
    /* Ensure proper mobile container width */
    .why-choose-new .container,
    .recent-work.portfolio-v2-featured .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    /* Fix Standout Projects Section Mobile Layout */
    .recent-work.portfolio-v2-featured {
        padding: 4rem 0;
    }

    .work-header.portfolio-v2-featured-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .portfolio-v2-featured-header .portfolio-v2-eyebrow {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .portfolio-v2-featured-header .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .portfolio-v2-featured-header .section-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .portfolio-v2-featured-grid {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    /* Fix Why Choose Section Mobile Layout */
    .why-choose-new {
        padding: 4rem 0;
        overflow: hidden;
    }

    .why-content-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .why-title-new {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .why-description-new {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .why-features-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-feature {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .portfolio-v2-featured-header .section-title {
        font-size: 1.75rem;
    }

    .portfolio-v2-featured-grid {
        padding: 0 1rem;
    }

    .why-content-new {
        padding: 0 1rem;
    }

    .why-title-new {
        font-size: 1.75rem;
    }

    .why-features-new {
        grid-template-columns: 1fr;
    }
}

/* Ensure proper hero section height on all screens */
@media (min-width: 1400px) {
    .hero-background .hero-bg-image {
        object-position: center 30% !important;
    }
}

@media (max-width: 768px) {
    .hero-background .hero-bg-image {
        object-position: center center !important;
    }
}

/* Reset carousel images to their original behavior */
.hero-panel-slide {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
}

/* Fixed header clearance for short laptop viewports */
:root {
    --fixed-header-clearance: 76px;
}

.hero-new,
.portfolio-v2-hero {
    padding-top: calc(var(--fixed-header-clearance) + 1rem) !important;
}

.hero-content-new {
    min-height: calc(100vh - var(--fixed-header-clearance)) !important;
    padding-top: 2rem !important;
}

.portfolio-v2-hero {
    min-height: calc(100vh - var(--fixed-header-clearance)) !important;
}

@media (min-width: 769px) and (max-height: 760px) {
    .hero-new,
    .portfolio-v2-hero {
        padding-top: calc(var(--fixed-header-clearance) + 0.5rem) !important;
        padding-bottom: 2rem !important;
    }

    .hero-content-new {
        min-height: auto !important;
        padding-top: 1rem !important;
    }

    .portfolio-v2-hero-content {
        padding-top: 1rem !important;
    }
}

@media (max-width: 768px) {
    :root {
        --fixed-header-clearance: 70px;
    }

    .hero-new,
    .portfolio-v2-hero {
        padding-top: var(--fixed-header-clearance) !important;
    }
}

/* Service page hero fixes */
.hero-new.service-hero {
    min-height: auto !important;
    padding-top: calc(var(--fixed-header-clearance, 76px) + 2rem) !important;
    padding-bottom: 4rem !important;
}

.hero-new.service-hero .hero-content-new {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
    gap: clamp(2rem, 5vw, 5rem) !important;
    min-height: auto !important;
    padding: 2rem 3rem !important;
}

.hero-new.service-hero .hero-left {
    padding-top: 3rem;
}

.hero-new.service-hero .bouncing-dots {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    overflow: visible;
}

.hero-new.service-hero .bouncing-dots .dot {
    position: static !important;
    display: block !important;
    width: clamp(18px, 2vw, 30px);
    height: clamp(18px, 2vw, 30px);
    border-radius: 50%;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-new.service-hero .bouncing-dots .dot-red {
    background: #E53E3E;
}

.hero-new.service-hero .bouncing-dots .dot-gray {
    background: #a0a0a0;
}

.hero-new.service-hero .bouncing-dots .dot-gold {
    background: #E8A838;
}

.hero-new.service-hero .hero-right,
.hero-new.service-hero .hero-image {
    width: 100% !important;
    max-width: 100% !important;
}

.hero-new.service-hero .hero-image {
    height: clamp(300px, 32vw, 440px) !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
}

.hero-new.service-hero .hero-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
}

@media (max-width: 1024px) {
    .hero-new.service-hero .hero-content-new {
        grid-template-columns: 1fr !important;
        padding-inline: clamp(1.5rem, 5vw, 3rem) !important;
    }

    .hero-new.service-hero .hero-left {
        padding-top: 1rem;
    }

    .hero-new.service-hero .hero-image {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .hero-new.service-hero {
        padding-bottom: 3rem !important;
    }

    .hero-new.service-hero .hero-content-new {
        padding-top: 1rem !important;
        padding-bottom: 0 !important;
    }

    .hero-new.service-hero .about-hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Event production light-section text visibility */
body:has(.service-categories) .service-categories,
body:has(.service-categories) .process-overview {
    background: #f3f0e8 !important;
    color: #111827 !important;
}

body:has(.service-categories) .service-categories .section-header h2,
body:has(.service-categories) .service-categories .section-header p,
body:has(.service-categories) .process-overview .section-header h2,
body:has(.service-categories) .process-overview .section-header p,
body:has(.service-categories) .process-overview .step-content h3,
body:has(.service-categories) .process-overview .step-content p {
    color: #111827 !important;
    text-shadow: none !important;
}

body:has(.service-categories) .process-overview .process-step {
    background: #ffffff !important;
    color: #111827 !important;
}

/* Corporate branding light-section text visibility */
body:has(.cultural-expertise-circular) .cultural-expertise-circular,
body:has(.cultural-expertise-circular) .industry-specializations-circular,
body:has(.cultural-expertise-circular) .brand-investment-circular {
    color: #111827 !important;
}

body:has(.cultural-expertise-circular) .cultural-expertise-circular .section-header h2,
body:has(.cultural-expertise-circular) .cultural-expertise-circular .section-header p,
body:has(.cultural-expertise-circular) .industry-specializations-circular .section-header h2,
body:has(.cultural-expertise-circular) .industry-specializations-circular .section-header p,
body:has(.cultural-expertise-circular) .brand-investment-circular .section-header h2,
body:has(.cultural-expertise-circular) .brand-investment-circular .section-header p {
    color: #111827 !important;
    text-shadow: none !important;
}

body:has(.cultural-expertise-circular) .cultural-expertise-card,
body:has(.cultural-expertise-circular) .cultural-achievement,
body:has(.cultural-expertise-circular) .industry-circle-card,
body:has(.cultural-expertise-circular) .package-card,
body:has(.cultural-expertise-circular) .roi-showcase {
    color: #111827 !important;
}

body:has(.cultural-expertise-circular) .cultural-expertise-card h3,
body:has(.cultural-expertise-circular) .cultural-expertise-card p,
body:has(.cultural-expertise-circular) .cultural-achievement h3,
body:has(.cultural-expertise-circular) .cultural-achievement p,
body:has(.cultural-expertise-circular) .cultural-achievement span,
body:has(.cultural-expertise-circular) .industry-circle-card h3,
body:has(.cultural-expertise-circular) .industry-circle-card p,
body:has(.cultural-expertise-circular) .package-card h3,
body:has(.cultural-expertise-circular) .package-card p,
body:has(.cultural-expertise-circular) .package-card li,
body:has(.cultural-expertise-circular) .roi-showcase h3,
body:has(.cultural-expertise-circular) .roi-showcase p {
    color: #111827 !important;
    text-shadow: none !important;
}

body:has(.cultural-expertise-circular) .achievement-circle,
body:has(.cultural-expertise-circular) .roi-metric-circle,
body:has(.cultural-expertise-circular) .package-price-circle.featured,
body:has(.cultural-expertise-circular) .popular-badge {
    color: #ffffff !important;
}

/* Corporate branding process layout fixes */
.interactive-brand-process .brand-process-navigation {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr) !important;
    gap: clamp(2rem, 5vw, 4rem) !important;
    align-items: center !important;
    max-width: 1180px;
    margin: 0 auto;
}

.interactive-brand-process .process-visual {
    position: relative;
    top: auto;
    min-height: 0;
}

.interactive-brand-process .process-step-content {
    display: none !important;
    grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1.65fr) !important;
    gap: 2rem !important;
    padding: clamp(1.5rem, 3vw, 2.25rem) !important;
}

.interactive-brand-process .process-step-content.active {
    display: grid !important;
}

.interactive-brand-process .step-features {
    display: grid;
    gap: 1rem;
}

.interactive-brand-process .circular-timeline {
    width: min(340px, 34vw);
    height: min(340px, 34vw);
    min-width: 280px;
    min-height: 280px;
}

.interactive-brand-process .timeline-circle {
    width: clamp(70px, 8vw, 94px);
    height: clamp(70px, 8vw, 94px);
}

.interactive-brand-process .center-circle {
    width: clamp(96px, 11vw, 120px);
    height: clamp(96px, 11vw, 120px);
}

.interactive-brand-process .feature-item,
.interactive-brand-process .metric {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .interactive-brand-process .brand-process-navigation {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .interactive-brand-process .process-visual {
        position: relative;
        top: auto;
        min-height: 0;
    }

    .interactive-brand-process .circular-timeline {
        width: min(320px, 88vw);
        height: min(320px, 88vw);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .interactive-brand-process .process-step-content.active {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}
