/* ============================================
   AlphaQuest Designs - Architectural Design System
   Color Palette: Deep Charcoal, Gold Accents, Clean White
   ============================================ */

:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2d2d2d;
    --color-gold: #d4af37;
    --color-gold-light: #e8c547;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-gray-dark: #666666;
    --color-maroon: #5f0303;
    --color-maroon-light: #8a0505;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Theme Variables - Dark Theme (Default) */
    --theme-bg-primary: #0a0a0a;
    --theme-bg-secondary: #1a1a1a;
    --theme-bg-tertiary: #2d2d2d;
    --theme-text-primary: #ffffff;
    --theme-text-secondary: rgba(255, 255, 255, 0.8);
    --theme-text-tertiary: rgba(255, 255, 255, 0.6);
    --theme-border: rgba(255, 255, 255, 0.1);
    --theme-card-bg: rgba(26, 26, 26, 0.8);
}

[data-theme="light"] {
    /* Light Theme */
    --theme-bg-primary: #ffffff;
    --theme-bg-secondary: #f5f5f5;
    --theme-bg-tertiary: #e8e8e8;
    --theme-text-primary: #1a1a1a;
    --theme-text-secondary: rgba(26, 26, 26, 0.8);
    --theme-text-tertiary: rgba(26, 26, 26, 0.6);
    --theme-border: rgba(26, 26, 26, 0.1);
    --theme-card-bg: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--theme-text-primary);
    background-color: var(--theme-bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Global theme-aware elements */
section {
    background-color: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-text-primary);
    transition: color 0.3s ease;
}

p, span, div, li, td, th {
    color: var(--theme-text-primary);
    transition: color 0.3s ease;
}

/* Prevent content from being cut off */
* {
    max-width: 100%;
}

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

/* Ensure containers don't overflow */
.container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================
   Navigation
   ============================================ */

/* Ultra Sleek Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    position: relative;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphic Background */
.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-bg {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-wrapper {
    padding: 0.8rem 0;
}

/* Animated Glow Line */
.nav-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-glow-line {
    width: 100%;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Logo with Glow Effect */
.logo {
    position: relative;
}

.logo a {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

/* Futuristic Nav Links */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    white-space: nowrap;
}

/* Hover Background Glow */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
    opacity: 0;
    border-radius: 8px;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Active Link Indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold);
}

/* Dropdown Arrow Animation */
.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Ultra Modern Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    padding: 0.5rem;
    overflow: hidden;
    z-index: 1001;
}

/* Dropdown Glow Effect */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.nav-item:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0);
    display: block !important;
}

/* Ensure dropdown is visible on desktop hover */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        z-index: 1001 !important;
    }
    
    /* Ensure dropdown menu items are visible */
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .dropdown-menu a:hover {
        color: var(--color-gold) !important;
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0%;
    background: var(--color-gold);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold) !important;
    padding-left: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.dropdown-menu a:hover::before {
    height: 60%;
}

/* CTA Button with Magnetic Effect */
.cta-button {
    position: relative;
    padding: 0.7rem 1.5rem !important;
    background: linear-gradient(135deg, #8b0000 0%, #d4af37 100%);
    color: var(--color-white) !important;
    border-radius: 8px;
    font-weight: 700;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Language Toggle - Minimal Pill */
.lang-toggle {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

/* Hamburger Menu - Animated */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 10;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 65px 0 0 0;
    padding: 65px 0 0 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        max-height: calc(100vh - 60px);
        min-height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        margin-top: 60px;
        padding: 1rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

/* Animated Grid Background */
.hero-grid-background {
    position: absolute;
    top: -65px;
    left: 0;
    width: 100%;
    height: calc(100% + 65px);
    max-height: calc(100vh + 65px);
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-grid-background {
        top: -60px;
        height: calc(100% + 60px);
        max-height: calc(100vh + 60px);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(95, 3, 3, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(95, 3, 3, 0.3) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-background {
    position: absolute;
    top: -65px;
    left: 0;
    width: 100%;
    height: calc(100% + 65px);
    max-height: calc(100vh + 65px);
    z-index: 2;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-background {
        top: -60px;
        height: calc(100% + 60px);
        max-height: calc(100vh + 60px);
    }
}

.hero-background video {
    position: absolute;
    top: calc(50% - 32.5px);
    left: 50%;
    min-width: 100%;
    min-height: calc(100% + 65px);
    max-width: 100%;
    max-height: calc(100vh + 65px);
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 2;
    transition: opacity 1s ease-in-out, transform 0.3s ease-out;
    will-change: transform;
}

@media (max-width: 768px) {
    .hero-background video {
        top: calc(50% - 30px);
        min-height: calc(100% + 60px);
        max-height: calc(100vh + 60px);
    }
}

.hero-background video.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    visibility: hidden;
}

/* Hero Images Carousel */
.hero-images-carousel {
    position: absolute;
    top: -65px;
    left: 0;
    width: 100%;
    height: calc(100% + 65px);
    max-height: calc(100vh + 65px);
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-images-carousel {
        top: -60px;
        height: calc(100% + 60px);
        max-height: calc(100vh + 60px);
    }
}

.hero-images-carousel.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.hero-images-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: calc(100vh + 65px);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.3s ease-out;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .hero-images-carousel img {
        max-height: calc(100vh + 60px);
    }
}

.hero-images-carousel img.active {
    opacity: 1;
}

.hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-background img {
        max-height: calc(100vh - 60px);
    }
}

.hero-overlay {
    position: absolute;
    top: -65px;
    left: 0;
    width: 100%;
    height: calc(100% + 65px);
    max-height: calc(100vh + 65px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-overlay {
        top: -60px;
        height: calc(100% + 60px);
        max-height: calc(100vh + 60px);
    }
}

.hero-content {
    position: absolute;
    left: 4rem;
    top: 10px;
    transform: none;
    z-index: 3;
    text-align: left;
    color: var(--color-white);
    max-width: 600px;
    padding: 2rem 2rem 2rem 0;
}

/* Chrome/WebKit specific: Move hero content up to fit 100% view + navbar */
@supports (-webkit-appearance: none) {
    .hero-content {
        top: -20px;
    }
    
    .hero-title {
        margin-top: 3.5rem;
    }
    
    /* Push render cards to the right and ensure both cards fit in view */
    .hero-render-cards {
        right: 0.5rem;
        top: 10px;
        gap: 3rem;
        max-height: calc(100vh - 90px);
        width: 360px;
        justify-content: center;
    }
    
    /* Ensure cards fit within the container - adjusted for 2 cards */
    .render-card {
        max-height: calc((100vh - 90px - 3rem) / 2);
    }
}

/* Firefox specific: Fix hero section positioning */
@-moz-document url-prefix() {
    .hero-section {
        margin-top: 65px;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        height: calc(100vh - 65px);
        min-height: calc(100vh - 65px);
        max-height: calc(100vh - 65px);
        box-sizing: border-box;
    }
    
    .hero-content {
        top: 20px;
    }
    
    .hero-title {
        margin-top: 3.5rem;
    }
    
    /* Ensure background elements fit properly in Firefox */
    .hero-background,
    .hero-overlay,
    .hero-grid-background,
    .hero-images-carousel {
        top: 0;
        height: 100%;
        max-height: 100%;
    }
    
    .hero-background video {
        top: 50%;
        min-height: 100%;
        max-height: 100%;
    }
    
    .hero-images-carousel img {
        max-height: 100%;
    }
    
    /* Firefox-specific render cards fixes */
    .hero-render-cards {
        position: absolute;
        right: 1.5rem;
        top: 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 3rem;
        width: 380px;
        max-width: 380px;
        min-width: 380px;
        max-height: calc(100vh - 120px);
        overflow: hidden;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    .render-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex-shrink: 0;
        flex-grow: 0;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

/* Hero Render Cards Carousel */
.hero-render-cards {
    position: absolute;
    right: 1.5rem;
    top: 15px;
    transform: none;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 3rem;
    width: 380px;
    max-width: 380px;
    min-width: 380px;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Mobile: Horizontal scrolling carousel */
@media (max-width: 768px) {
    .hero-render-cards {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 1.5rem auto 0;
        flex-direction: row;
        justify-content: flex-start;
        max-height: none;
        padding: 0 1rem;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--color-gold) transparent;
    }

    .hero-render-cards::-webkit-scrollbar {
        height: 4px;
    }

    .hero-render-cards::-webkit-scrollbar-track {
        background: transparent;
    }

    .hero-render-cards::-webkit-scrollbar-thumb {
        background: var(--color-gold);
        border-radius: 2px;
    }

    .render-card {
        width: 200px;
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
        aspect-ratio: 4/3;
    }
}

.render-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    animation: slideInCard 0.6s ease-out forwards;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.render-card:nth-child(1) {
    animation-delay: 0.2s;
}

.render-card:nth-child(2) {
    animation-delay: 0.4s;
}

/* Removed third card - only 2 cards now */

.render-card:hover {
    transform: translateX(-10px) scale(1.05);
    border-color: var(--color-gold);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
    z-index: 5;
}

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

.render-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.render-card:hover .render-card-image img {
    transform: scale(1.15);
}

.render-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 40%, rgba(26, 26, 26, 0.4) 70%, transparent 100%);
    padding: 1.75rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

.render-card:hover .render-card-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(26, 26, 26, 0.7) 80%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.render-card-category {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-family: var(--font-serif);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    min-height: 1.3rem;
}

.render-card-title {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    display: block;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    min-height: 1rem;
}

.render-card.fade-out {
    animation: fadeOutCard 0.5s ease-in forwards;
}

.render-card.fade-in {
    animation: slideInCard 0.6s ease-out forwards;
}

.render-card.flipping {
    animation: flipCard 0.8s ease-in-out;
}

.render-card.flipping {
    animation: flipCard 0.8s ease-in-out;
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeOutCard {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
}

@keyframes flipCard {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(90deg) scale(0.95);
        opacity: 0.5;
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.9rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    animation: fadeInUp 1s ease-out;
    text-transform: uppercase;
    font-family: var(--font-sans);
    white-space: nowrap;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-subtitle .subtitle-word {
    display: inline-block;
}

.hero-subtitle .subtitle-create {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-light) 50%, rgba(139, 0, 0, 0.8) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.hero-subtitle .subtitle-design {
    color: var(--color-white);
}

.hero-subtitle .subtitle-build {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, var(--color-maroon-light) 50%, var(--color-maroon) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite 0.5s;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle .subtitle-slash {
    color: var(--color-charcoal);
    margin: 0 0.5rem;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: var(--color-white);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.2),
        0 2px 20px rgba(0, 0, 0, 0.4),
        0 4px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-gold) 50%, var(--color-maroon-light) 100%);
    background-size: 200% 200%;
    color: var(--color-white);
    box-shadow: 
        0 4px 20px rgba(95, 3, 3, 0.4),
        0 8px 30px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    animation: buttonGlow 3s ease-in-out infinite, gradientShift 3s ease infinite;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(95, 3, 3, 0.4), 0 8px 30px rgba(95, 3, 3, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(95, 3, 3, 0.5), 0 8px 35px rgba(95, 3, 3, 0.3);
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-maroon-light) 0%, var(--color-maroon) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(95, 3, 3, 0.5), 0 12px 40px rgba(95, 3, 3, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(255, 255, 255, 0.1),
        0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

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

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--color-charcoal-light);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-accent:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-3px);
}

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

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Hero Carousel Navigation */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-white);
    opacity: 0.8;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-nav-prev {
    left: 2rem;
}

.hero-nav-next {
    right: 2rem;
}

.hero-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    width: 32px;
    border-radius: 6px;
}

/* Responsive Hero Navigation */
@media (max-width: 768px) {
    .hero-nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .hero-nav-prev {
        left: 1rem;
    }
    
    .hero-nav-next {
        right: 1rem;
    }
    
    .hero-indicators {
        bottom: 5rem;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-indicator.active {
        width: 24px;
    }
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-dark {
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.portfolio-section .section-header {
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: inherit;
}

.portfolio-section .section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    font-weight: 300;
}

.portfolio-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Company Profile - Artistic Design
   ============================================ */

.company-profile-section {
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    padding: 3.5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
    margin-top: 0;
    clear: both;
}

.company-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(95, 3, 3, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(95, 3, 3, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

.company-profile-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Company Description Styles */
.company-description-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-description-card {
    position: relative;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.company-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--color-maroon) 0%, 
        var(--color-maroon-light) 50%, 
        rgba(139, 0, 0, 0.8) 100%);
    box-shadow: 0 0 20px rgba(95, 3, 3, 0.5);
}

.company-description-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 3, 3, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.company-description-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.company-description-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--color-maroon-light) 30%, 
        #ffffff 60%, 
        var(--color-maroon) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: gradientShift 8s ease infinite;
    text-shadow: 0 0 40px rgba(95, 3, 3, 0.4);
}

.company-description-divider {
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-maroon) 20%, 
        var(--color-maroon-light) 50%, 
        var(--color-maroon) 80%, 
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(95, 3, 3, 0.6);
    position: relative;
    overflow: hidden;
}

.company-description-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    animation: shimmer 3s infinite;
}

.company-description-content {
    position: relative;
    z-index: 2;
}

.company-description-intro {
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.company-description-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.company-services-section {
    margin: 2.5rem 0 0 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(95, 3, 3, 0.4);
    position: relative;
}

.company-services-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-maroon), 
        transparent);
    box-shadow: 0 0 20px rgba(95, 3, 3, 0.5);
}

.company-services-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        var(--color-maroon-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
    text-shadow: 0 0 30px rgba(95, 3, 3, 0.4);
}

.company-services-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    transition: width 0.4s ease;
}

    .service-item:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.06);
    }

    @media (max-width: 768px) {
        .service-item:hover {
            transform: translateY(-3px);
        }
    }

    .service-item:hover::before {
        background: rgba(255, 255, 255, 0.5);
        width: 5px;
    }

    @media (max-width: 768px) {
        .service-item:hover::before {
            width: 100%;
            height: 4px;
            top: 0;
            left: 0;
        }
    }

    .service-item:hover::after {
        width: 100%;
    }

/* Service Number Badge - Left Side */
.service-number {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-left: 1.25rem;
}

.service-item:hover .service-number {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Service Content Wrapper */
.service-content-wrapper {
    flex: 1;
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* Remove geometric shapes - not needed in vertical list */
.service-geometric {
    display: none;
}

.service-name {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.service-item:hover .service-name {
    color: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .service-item:hover .service-name {
        transform: none;
    }
}

.service-description {
    font-size: clamp(0.9rem, 1.7vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    margin: 0;
    transition: all 0.4s ease;
}

.service-item:hover .service-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Mission, Vision, Purpose, Approach - Creative Interactive Design */
.mission-vision-approach-section {
    position: relative;
    padding: 2rem 0 3rem 0;
    background: transparent;
    margin-top: 1rem;
}

.mission-vision-approach {
    position: relative;
}

.mva-creative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1200px;
    position: relative;
    padding: 0 2rem;
}

.mva-card {
    position: relative;
    height: 260px;
    cursor: pointer;
    perspective: 1000px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    /* Ensure card stays in exact position */
    margin: 0;
    padding: 0;
}

.mva-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
}

.mva-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mva-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mva-card:nth-child(3) {
    animation-delay: 0.3s;
}

.mva-card:nth-child(4) {
    animation-delay: 0.4s;
}

.mva-card.flipped .mva-card-inner {
    transform: rotateY(180deg);
}

/* Firefox fix - completely hide front when flipped */
.mva-card.flipped .mva-card-front {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 0 !important;
    display: none !important;
}

.mva-card.flipped .mva-card-back {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2 !important;
    display: flex !important;
}

/* Firefox specific fix - ensure front is completely hidden when flipped */
.mva-card.flipped .mva-card-front {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.mva-card.flipped .mva-card-back {
    visibility: visible;
    opacity: 1;
    z-index: 2;
}


.mva-card-front,
.mva-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transform-origin: center center;
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mva-card-front {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.mva-card-flip-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    z-index: 3;
}

.mva-card:hover .mva-card-flip-indicator {
    transform: translateX(5px);
    color: var(--color-maroon);
    border-color: var(--color-maroon);
    background: rgba(255, 255, 255, 1);
}

.mva-card-back {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotateY(180deg);
    text-align: center;
    top: 0;
    left: 0;
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Different colors for each card when flipped */
.mva-card-mission .mva-card-back {
    background: #add8e6; /* Pale Blue */
    border-color: rgba(173, 216, 230, 0.5);
}

.mva-card-vision .mva-card-back {
    background: #90ee90; /* Light Green */
    border-color: rgba(144, 238, 144, 0.5);
}

.mva-card-approach .mva-card-back {
    background: #ffcccb; /* Light Red/Pink */
    border-color: rgba(255, 204, 203, 0.5);
}

.mva-card-purpose .mva-card-back {
    background: #f0e68c; /* Khaki Yellow */
    border-color: rgba(240, 230, 140, 0.5);
}


.mva-card-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
    z-index: 1;
}

.mva-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mva-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 3, 3, 0.05);
    border: 2px solid rgba(95, 3, 3, 0.15);
    border-radius: 50%;
    color: var(--color-maroon);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mva-card:hover .mva-card-icon {
    transform: scale(1.15) rotate(360deg);
    background: rgba(95, 3, 3, 0.1);
    border-color: var(--color-maroon);
    box-shadow: 0 0 30px rgba(95, 3, 3, 0.2);
}

.mva-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 1.5;
}

.mva-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    max-width: 100%;
    overflow-y: auto;
    /* Ensure content is always correctly oriented - not mirrored */
    transform: rotateY(0deg);
    direction: ltr;
    text-align: center;
    box-sizing: border-box;
    /* Make content flexible */
    min-height: 0;
    flex: 1 1 auto;
}

.mva-card-heading {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.8vw, 1.3rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: clamp(0.5rem, 1.2vw, 0.9rem);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    /* Flexible sizing */
    flex-shrink: 0;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.mva-card-description {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
    letter-spacing: 0.15px;
    text-align: center;
    margin: 0;
    max-width: 100%;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    /* Flexible text wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    /* Allow text to shrink if needed */
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    display: block;
}

/* Adjust Mission and Purpose cards for longer content */
.mva-card-mission .mva-card-description,
.mva-card-purpose .mva-card-description {
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    line-height: 1.4;
    padding: 0 0.6rem;
}

.mva-card-mission .mva-card-heading,
.mva-card-purpose .mva-card-heading {
    font-size: clamp(0.9rem, 1.6vw, 1.2rem);
    margin-bottom: clamp(0.4rem, 0.9vw, 0.8rem);
}

.mva-card-mission .mva-card-content,
.mva-card-purpose .mva-card-content {
    padding: clamp(0.9rem, 1.8vw, 1.2rem);
}

/* Color adjustments for text on colored backgrounds - improved contrast */
.mva-card-mission .mva-card-back .mva-card-heading {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.mva-card-mission .mva-card-back .mva-card-description {
    color: rgba(0, 0, 0, 0.85);
}

.mva-card-vision .mva-card-back .mva-card-heading {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.mva-card-vision .mva-card-back .mva-card-description {
    color: rgba(0, 0, 0, 0.85);
}

.mva-card-purpose .mva-card-back .mva-card-heading {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.mva-card-purpose .mva-card-back .mva-card-description {
    color: rgba(0, 0, 0, 0.85);
}

.mva-card-approach .mva-card-back .mva-card-heading {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.mva-card-approach .mva-card-back .mva-card-description {
    color: rgba(0, 0, 0, 0.85);
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Global Presence
   ============================================ */

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

.office-card {
    background: var(--color-charcoal-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.office-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.office-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.office-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.office-card p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.map-container {
    margin-top: 3rem;
}

.interactive-map {
    background: var(--color-charcoal-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Leadership
   ============================================ */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.leader-card {
    text-align: center;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leader-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-charcoal);
}

.leader-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.leader-role {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-email {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

/* ============================================
   Team Section
   ============================================ */

.team-section {
    margin-bottom: 4rem;
}

.team-category {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
    text-align: center;
}

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

.team-member {
    background: var(--color-charcoal-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.team-member ul {
    list-style: none;
}

.team-member li {
    padding: 0.5rem 0;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member li:last-child {
    border-bottom: none;
}

.specialized-teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: var(--color-charcoal-light);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.specialty-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.specialty-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.specialty-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-team-btn {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.contact-team-btn:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

/* ============================================
   Projects Section
   ============================================ */

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.section-dark .filter-btn {
    border-color: var(--color-white);
    color: var(--color-white);
}

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

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

.project-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.project-location {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-dates {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.section-dark .project-card {
    background: var(--color-charcoal-light);
}

.section-dark .project-info h3 {
    color: var(--color-white);
}

.section-dark .project-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Expertise Section
   ============================================ */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--color-charcoal-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.expertise-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.expertise-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ============================================
   Portfolio Section
   ============================================ */

.portfolio-section {
    padding: 2rem 0 1.5rem 0;
}

/* Portfolio Carousel Styles */
.portfolio-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0 1rem;
}

.portfolio-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    min-height: 400px;
}

.portfolio-carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.portfolio-carousel-item {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16/10;
    max-height: 450px;
    opacity: 1;
    visibility: visible;
    display: block;
}

.portfolio-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.portfolio-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, transparent 100%);
    padding: 1.5rem 1.5rem 1.25rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-carousel-item:hover .portfolio-carousel-overlay {
    padding-bottom: 1.5rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.85) 60%, transparent 100%);
}

.portfolio-carousel-overlay h4 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.portfolio-carousel-overlay p {
    color: var(--color-gold);
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.portfolio-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    z-index: 2;
}

.portfolio-carousel-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.portfolio-carousel-btn:active {
    transform: scale(0.95);
}

.portfolio-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.portfolio-carousel-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.portfolio-download {
    text-align: center;
    margin-top: 1rem;
}

/* ============================================
   Innovation Hub
   ============================================ */

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.innovation-card {
    background: var(--color-charcoal-light);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.innovation-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.innovation-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.innovation-card ul {
    list-style: none;
}

.innovation-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.innovation-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.contact-card {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--color-gold);
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.contact-card p {
    color: var(--color-gray-dark);
    line-height: 1.8;
}

.contact-form-container {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   Tender Applications
   ============================================ */

.tender-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.tender-card {
    background: var(--color-charcoal-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--color-gold);
}

.tender-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.tender-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tender-form .form-group label,
.login-form .form-group label {
    color: var(--color-white);
}

.tender-form .form-group input,
.login-form .form-group input {
    background: var(--color-charcoal);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.tender-form .form-group input:focus,
.login-form .form-group input:focus {
    border-color: var(--color-gold);
}

.portal-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

/* ============================================
   Footer - Image Carousel Design
   ============================================ */

.footer {
    position: relative;
    min-height: calc(100vh - 90px);
    height: auto;
    color: #ffffff !important; /* Force white text for visibility */
    background-color: var(--theme-bg-secondary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

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

.footer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.footer-image.active {
    opacity: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.75);
    z-index: 2;
    backdrop-filter: blur(1px);
}

.footer-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 2rem 0 1rem;
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.footer .container {
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2.5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.footer-logo-directors {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    transition: var(--transition);
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.footer-section-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--color-gold);
    font-weight: 700;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.25rem;
}

.footer-values {
    line-height: 1.7;
}

.footer-value-item {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-value-item strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-moto {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-moto strong {
    font-size: 1.1rem;
    color: var(--color-gold);
}

.footer-offices {
    line-height: 1.6;
}

.footer-office {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-office strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.footer-office p {
    font-size: 0.75rem;
    line-height: 1.4;
}

.footer-contacts {
    line-height: 1.6;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.footer-contact-item strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.footer-contact-item p {
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

/* Footer Contact Form */
.footer-contact-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-message-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-message-input {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    font-family: var(--font-sans);
    resize: vertical;
    transition: all 0.3s ease;
    outline: none;
}

.footer-message-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-message-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-submit-btn {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    color: var(--color-charcoal);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.footer-submit-btn:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.footer-submit-btn:active {
    transform: translateY(0);
}

.footer-directors {
    line-height: 1.6;
}

.footer-director {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
}

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

.footer-director strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.footer-director p {
    font-size: 0.75rem;
    opacity: 0.9;
}

.footer-tagline {
    text-align: center;
    padding: 0.75rem 0;
    margin: 0.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-tagline p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: auto;
}

/* ============================================
   Modal
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-charcoal);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

/* ============================================
   Animations
   ============================================ */

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

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-item:hover .dropdown-menu {
        max-height: 500px;
    }

    .hamburger {
        display: flex;
    }

    .cta-button {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo img {
        height: 38px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .company-description-card {
        padding: 2.5rem 2rem;
    }

    .company-services-grid {
        max-width: 100%;
        gap: 1.25rem;
    }

    .service-item {
        gap: 1.5rem;
    }

    .service-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-left: 1rem;
    }

    .service-content-wrapper {
        padding: 1.5rem 1.5rem 1.5rem 0;
    }

    .mva-creative-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mva-card {
        height: 240px;
    }

    .mva-card-front,
    .mva-card-back {
        padding: 1.5rem;
    }

    .mva-card-icon {
        width: 80px;
        height: 80px;
    }

    .mva-card-icon svg {
        width: 40px;
        height: 40px;
    }

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

    .footer-logo-directors {
        gap: 1rem;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-directors {
        margin-top: 0;
    }

    .footer-tagline {
        padding: 1rem 0;
        margin: 1rem 0;
    }

    .footer-tagline p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .portfolio-carousel-wrapper {
        gap: 0.75rem;
        padding: 0 0.5rem;
        margin: 1rem 0 0.75rem 0;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .portfolio-carousel-container {
        flex: 1;
        overflow: visible;
        position: relative;
        min-height: 300px;
    }

    .portfolio-carousel-track {
        gap: 1rem;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .portfolio-carousel-item {
        min-width: 90%;
        max-width: 90%;
        max-height: 350px;
        aspect-ratio: 16/11;
        flex-shrink: 0;
        scroll-snap-align: start;
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .portfolio-carousel-btn {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        z-index: 10;
    }

    .portfolio-carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .portfolio-carousel-overlay {
        padding: 1.25rem 1.25rem 1rem;
        opacity: 1;
        visibility: visible;
    }

    .portfolio-carousel-overlay h4 {
        font-size: clamp(1rem, 2.2vw, 1.3rem);
        margin-bottom: 0.3rem;
    }

    .portfolio-carousel-overlay p {
        font-size: clamp(0.75rem, 1.4vw, 0.9rem);
    }

    .portfolio-section {
        padding: 1.5rem 0 1rem 0;
    }

    .portfolio-section .section-header {
        margin-bottom: 0.75rem;
    }

    .company-description-card {
        padding: 2rem 1.5rem;
    }

    .company-description-wrapper {
        padding: 0 1rem;
    }

    .company-services-grid {
        max-width: 100%;
        gap: 1rem;
    }

    .service-item {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .service-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .service-content-wrapper {
        padding: 0;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
        align-items: center;
    }

    .service-name {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        text-align: center;
        width: 100%;
    }

    .service-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        text-align: center;
        width: 100%;
    }

    .mva-creative-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .mva-card {
        height: 220px;
    }

    .mva-card-front,
    .mva-card-back {
        padding: 1.2rem;
    }

    .mva-card-number {
        font-size: 2.5rem;
        top: 1rem;
        left: 1rem;
    }

    .mva-card-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }

    .mva-card-icon {
        width: 70px;
        height: 70px;
    }

    .mva-card-icon svg {
        width: 35px;
        height: 35px;
    }

    .mva-card-heading {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
        margin-bottom: 1rem;
    }

    .mva-card-description {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        line-height: 1.7;
    }

    .company-profile-section {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer {
        min-height: calc(100vh - 90px);
        height: auto;
    }

    .footer-content-wrapper {
        padding: 1.5rem 0 0.75rem;
        min-height: calc(100vh - 90px);
        justify-content: center;
    }

    .footer-content {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-directors {
        align-items: center;
        text-align: center;
    }

    .footer-logo-section {
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        height: 45px;
        margin: 0 auto;
    }

    .footer-directors {
        text-align: center;
    }

    .footer-director {
        text-align: center;
    }

    .footer-director strong {
        text-align: center;
    }

    .footer-values {
        text-align: center;
    }

    .footer-value-item {
        text-align: center;
    }

    .footer-value-item strong {
        text-align: center;
    }

    .footer-offices {
        text-align: center;
    }

    .footer-office {
        text-align: center;
    }

    .footer-office strong {
        text-align: center;
    }

    .footer-contacts {
        text-align: center;
    }

    .footer-contact-item {
        text-align: center;
    }

    .footer-contact-item strong {
        text-align: center;
    }

    .footer-contact-form {
        text-align: center;
    }

    .footer-message-form {
        align-items: center;
    }

    .footer-submit-btn {
        align-self: center;
    }

    .footer-tagline {
        padding: 0.5rem 0;
        margin: 0.2rem 0;
        text-align: center;
    }

    .footer-tagline p {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 0.2rem;
        font-size: 0.7rem;
        text-align: center;
    }

    .footer-section-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .footer-value-item,
    .footer-office {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .footer-contact-form {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .footer-message-input {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .footer-submit-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        text-align: center;
        max-width: 100%;
        padding: 2rem 1rem;
        margin: 0 auto;
    }

    .hero-render-cards {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0;
        flex-direction: row;
        justify-content: center;
        max-height: none;
        padding: 0 1rem;
        gap: 1rem;
    }

    .render-card {
        width: 120px;
        flex-shrink: 0;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        left: 2rem;
        max-width: 500px;
        top: 90px;
    }

    .hero-render-cards {
        width: 320px;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Center all content on mobile */
    .section-header,
    .section-title,
    .section-subtitle,
    .company-description-header,
    .company-description-title,
    .company-description-intro,
    .company-description-text,
    .company-services-title {
        text-align: center;
    }

    /* Center footer content on mobile */
    .footer,
    .footer-content-wrapper,
    .footer-content,
    .footer-logo-directors,
    .footer-logo-section,
    .footer-directors,
    .footer-director,
    .footer-values,
    .footer-value-item,
    .footer-offices,
    .footer-office,
    .footer-contacts,
    .footer-contact-item,
    .footer-contact-form,
    .footer-tagline,
    .footer-bottom {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-message-form {
        align-items: center;
    }

    .footer-submit-btn {
        align-self: center;
    }

    .footer-section-title {
        text-align: center;
    }

    .hero-content {
        left: auto;
        right: auto;
        max-width: 100%;
        text-align: center;
        top: auto;
        padding: 1rem 1rem 0.5rem;
        margin: 0 auto;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-subtitle {
        white-space: normal;
        letter-spacing: 2px;
        font-size: clamp(0.75rem, 2.5vw, 0.95rem);
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto 0.75rem;
        line-height: 1.3;
    }

    .hero-subtitle .subtitle-slash {
        margin: 0 0.3rem;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0.25rem 0 0;
        height: calc(100vh - 60px);
        max-height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        overflow: hidden;
        margin-top: 60px;
        margin-bottom: 0;
        box-sizing: border-box;
    }

    .hero-content {
        padding: 0.4rem 1rem 0.2rem;
        margin-bottom: 0.2rem;
        width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
        overflow: visible;
    }

    .hero-title {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        margin-top: 0;
        margin-bottom: 0.4rem;
        line-height: 1.15;
        word-wrap: break-word;
    }

    .hero-subtitle {
        margin-bottom: 0.4rem;
        font-size: clamp(0.65rem, 2vw, 0.85rem);
        line-height: 1.3;
    }

    .hero-buttons {
        margin-bottom: 0.4rem;
        gap: 0.4rem;
        width: 100%;
    }

    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-render-cards {
        max-height: 140px;
        margin-top: 0.2rem;
        margin-bottom: 0;
        padding: 0 0.5rem 0.5rem;
        gap: 0.6rem;
        width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .render-card {
        width: 120px;
        min-width: 120px;
        max-height: 140px;
        aspect-ratio: 4/3;
        flex-shrink: 0;
    }

    .scroll-indicator {
        display: none;
    }

    /* Ensure hero background doesn't overflow */
    .hero-background,
    .hero-overlay,
    .hero-grid-background {
        top: -60px;
        height: calc(100% + 60px);
        max-height: calc(100vh + 60px);
        position: absolute;
        left: 0;
        right: 0;
    }
}

/* ============================================
   Comprehensive Responsive Design Fixes
   ============================================ */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
    /* Center all content */
    .section-header,
    .company-description-header,
    .company-services-title,
    .section-title,
    .section-subtitle {
        text-align: center;
    }

    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        height: 32px;
    }

    .hamburger {
        padding: 0.4rem;
    }

    .hamburger span {
        width: 22px;
    }

    /* Hero Section */
    .hero-section {
        margin-top: 60px;
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        padding: 0.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        text-align: center;
        max-width: 100%;
        padding: 1rem 1rem 0.5rem;
        margin: 0 auto;
        width: 100%;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-render-cards {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 1.5rem auto 0;
        flex-direction: row;
        justify-content: flex-start;
        max-height: none;
        padding: 0 1rem;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--color-gold) transparent;
    }

    .hero-render-cards::-webkit-scrollbar {
        height: 4px;
    }

    .hero-render-cards::-webkit-scrollbar-track {
        background: transparent;
    }

    .hero-render-cards::-webkit-scrollbar-thumb {
        background: var(--color-gold);
        border-radius: 2px;
    }

    .render-card {
        width: 200px;
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
        aspect-ratio: 4/3;
    }

    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }

    /* Company Profile */
    .company-profile-section {
        padding: 2rem 0 1rem 0;
        text-align: center;
    }

    .company-description-wrapper {
        padding: 0 0.75rem;
    }

    .company-description-card {
        padding: 2rem 1.25rem;
        border-radius: 16px;
        text-align: center;
    }

    .company-description-header {
        text-align: center;
    }

    .company-description-divider {
        margin: 0 auto;
    }

    .company-description-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        text-align: center;
    }

    .company-description-intro {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: center;
    }

    .company-description-text {
        font-size: clamp(0.9rem, 3.5vw, 1.05rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .company-services-section {
        margin: 1.5rem 0 0 0;
        padding-top: 1.5rem;
        text-align: center;
    }

    .company-services-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .company-services-grid {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .service-item {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
        padding: 1.25rem 1rem;
        text-align: center;
    }

    .service-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .service-content-wrapper {
        padding: 0;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
        align-items: center;
    }

    .service-name {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .service-description {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
        line-height: 1.5;
        text-align: center;
        width: 100%;
    }

    /* Mission Vision Approach */
    .mission-vision-approach-section {
        padding: 1.5rem 0 2rem 0;
        margin-top: 0.5rem;
        text-align: center;
    }

    .mva-creative-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0 auto;
    }

    .mva-card {
        height: 200px;
    }

    .mva-card-front,
    .mva-card-back {
        padding: 1rem;
        border-radius: 12px;
    }

    .mva-card-number {
        font-size: 2rem;
        top: 0.75rem;
        left: 0.75rem;
    }

    .mva-card-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 0.75rem;
    }

    .mva-card-icon {
        width: 60px;
        height: 60px;
    }

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

    .mva-card-heading {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        margin-bottom: 0.5rem;
    }

    .mva-card-description {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
        line-height: 1.4;
    }

    .mva-card-flip-indicator {
        width: 30px;
        height: 30px;
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 0.9rem;
    }

    /* Portfolio */
    .portfolio-section {
        padding: 1.5rem 0 1rem 0;
        text-align: center;
    }

    .portfolio-section .section-header {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .portfolio-section .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.25rem;
        text-align: center;
    }

    .portfolio-section .section-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .portfolio-carousel-wrapper {
        gap: 0.5rem;
        padding: 0;
        margin: 1rem 0 0.75rem 0;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
    }

    /* Hide navigation buttons on very small screens, use swipe instead */
    .portfolio-carousel-btn {
        display: none;
    }

    .portfolio-carousel-container {
        width: 100%;
        padding: 0 0.5rem;
    }

    .portfolio-carousel-container {
        flex: 1;
        overflow-x: auto;
        overflow-y: visible;
        position: relative;
        min-height: 250px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--color-gold) transparent;
        width: 100%;
        max-width: 100%;
    }

    .portfolio-carousel-container::-webkit-scrollbar {
        height: 6px;
    }

    .portfolio-carousel-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .portfolio-carousel-container::-webkit-scrollbar-thumb {
        background: var(--color-gold);
        border-radius: 3px;
    }

    .portfolio-carousel-track {
        display: flex !important;
        gap: 1rem;
        width: max-content;
        padding: 0.5rem 0;
        transition: none;
        transform: none !important;
        position: relative;
        overflow: visible;
    }

    .portfolio-carousel-track::-webkit-scrollbar {
        height: 6px;
    }

    .portfolio-carousel-track::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .portfolio-carousel-track::-webkit-scrollbar-thumb {
        background: var(--color-gold);
        border-radius: 3px;
    }

    .portfolio-carousel-item {
        min-width: 85vw;
        max-width: 85vw;
        width: 85vw;
        max-height: 280px;
        aspect-ratio: 16/10;
        border-radius: 10px;
        flex-shrink: 0;
        scroll-snap-align: start;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        position: relative;
    }

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

    .portfolio-carousel-btn {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        z-index: 10;
        position: relative;
    }

    .portfolio-carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .portfolio-carousel-overlay {
        padding: 1rem 1rem 0.75rem;
        opacity: 1;
        visibility: visible;
    }

    .portfolio-carousel-overlay h4 {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 0.25rem;
    }

    .portfolio-carousel-overlay p {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
    }

    .portfolio-download {
        margin-top: 0.75rem;
    }

    .portfolio-download .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        min-height: auto;
        height: auto;
        text-align: center;
    }

    .footer-content-wrapper {
        padding: 1.5rem 0 0.5rem;
        min-height: auto;
        text-align: center;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .footer-logo-directors {
        align-items: center;
        text-align: center;
    }

    .footer-logo-section {
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        height: 40px;
        margin: 0 auto;
    }

    .footer-directors {
        text-align: center;
    }

    .footer-director {
        text-align: center;
    }

    .footer-director strong {
        text-align: center;
    }

    .footer-values {
        text-align: center;
    }

    .footer-value-item {
        text-align: center;
    }

    .footer-value-item strong {
        text-align: center;
    }

    .footer-offices {
        text-align: center;
    }

    .footer-office {
        text-align: center;
    }

    .footer-office strong {
        text-align: center;
    }

    .footer-contacts {
        text-align: center;
    }

    .footer-contact-item {
        text-align: center;
    }

    .footer-contact-item strong {
        text-align: center;
    }

    .footer-contact-form {
        text-align: center;
    }

    .footer-message-form {
        align-items: center;
    }

    .footer-submit-btn {
        align-self: center;
    }

    .footer-section-title {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        text-align: center;
    }

    .footer-value-item,
    .footer-office,
    .footer-contact-item {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        text-align: center;
    }

    .footer-director strong,
    .footer-office strong,
    .footer-contact-item strong {
        font-size: 0.75rem;
        text-align: center;
    }

    .footer-tagline {
        padding: 0.5rem 0;
        margin: 0.25rem 0;
        text-align: center;
    }

    .footer-tagline p {
        font-size: 0.75rem;
        padding: 0 0.75rem;
        line-height: 1.3;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 0.25rem;
        font-size: 0.65rem;
        text-align: center;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Section */
    .section {
        padding: 3rem 0;
    }
}

/* Small Devices (landscape phones, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-content {
        max-width: 90%;
        padding: 1.5rem;
    }

    .hero-render-cards {
        max-width: 350px;
    }

    .render-card {
        width: 110px;
    }

    .company-description-card {
        padding: 2.5rem 2rem;
    }

    .mva-card {
        height: 210px;
    }

    .portfolio-carousel-item {
        max-height: 320px;
    }
}

/* Medium Devices (tablets, 768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        left: 2rem;
        max-width: 55%;
        top: 80px;
    }

    .hero-render-cards {
        width: 300px;
        right: 1.5rem;
    }

    .company-description-card {
        padding: 3rem 3rem;
    }

    .mva-creative-grid {
        gap: 1.5rem;
    }

    .mva-card {
        height: 240px;
    }

    .portfolio-carousel-item {
        max-height: 400px;
    }
}

/* Large Devices (desktops, 1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-content {
        left: 3rem;
        max-width: 50%;
    }

    .hero-render-cards {
        width: 350px;
        right: 2rem;
    }

    .container {
        max-width: 1200px;
    }
}

/* Extra Large Devices (large desktops, 1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-render-cards {
        width: 380px;
    }
}

/* Landscape Orientation Fixes */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        position: relative;
        margin: 1rem 0;
    }

    .hero-render-cards {
        position: relative;
        margin: 1rem auto 0;
    }

    .mva-card {
        height: 180px;
    }
}

/* Prevent content from being hidden by fixed elements */
@media (max-width: 1024px) {
    .nav-menu {
        z-index: 1001;
    }

    .hero-content {
        z-index: 4;
    }

    .hero-render-cards {
        z-index: 4;
    }
}

/* Ensure all interactive elements are properly sized for touch */
@media (max-width: 1024px) {
    .btn,
    .portfolio-carousel-btn,
    .mva-card,
    .service-item,
    .portfolio-carousel-item {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        min-height: 44px;
        padding: 0.8rem 1rem;
    }
}

/* Fix text overflow and wrapping */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Ensure proper spacing between sections */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section + .section {
        margin-top: 0;
    }
}

/* ============================================
   Expertise Page Styles
   ============================================ */

/* Expertise Hero Section */
.expertise-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.expertise-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.expertise-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: lineFlow 15s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.expertise-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.expertise-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.expertise-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Collaborative Model Section */
.collaborative-model-section {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.collaborative-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.collaborative-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--color-charcoal);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    padding: 0 2rem;
}

.collaborative-quote::before,
.collaborative-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    font-family: var(--font-serif);
}

.collaborative-quote::before {
    top: -1rem;
    left: 0;
}

.collaborative-quote::after {
    bottom: -2rem;
    right: 0;
}

.collaborative-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.collab-block {
    padding: 2.5rem 2rem;
    background: var(--color-gray);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.collab-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.collab-block:hover::before {
    left: 100%;
}

.collab-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-gold);
}

.collab-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.collab-block p {
    color: var(--color-charcoal-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Overlapping effect for visual linkage */
.collab-block-1 {
    z-index: 4;
}

.collab-block-2 {
    z-index: 3;
    margin-left: -1rem;
}

.collab-block-3 {
    z-index: 2;
    margin-left: -2rem;
}

.collab-block-4 {
    z-index: 1;
    margin-left: -1rem;
}

/* Team Studios Section */
.team-studios-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-gray) 100%);
}

.studio-card {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.studio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio-card:hover::before {
    transform: scaleY(1);
}

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

.studio-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.studio-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.studio-descriptor {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.studio-content {
    line-height: 1.8;
}

.studio-narrative {
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.studio-credentials {
    background: var(--color-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.studio-credentials p {
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.studio-credentials ul {
    list-style: none;
    padding-left: 0;
}

.studio-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-charcoal-light);
}

.studio-credentials li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.studio-linkage {
    margin: 2rem 0;
    padding: 1.25rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold);
    border-radius: 4px;
}

.linkage-note {
    font-size: 0.95rem;
    color: var(--color-charcoal-light);
    font-style: italic;
    margin: 0;
}

.linkage-highlight {
    color: var(--color-gold);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.linkage-highlight:hover {
    color: var(--color-charcoal);
    text-decoration: underline;
}

.studio-cta {
    background: var(--color-charcoal);
    color: #ffffff !important;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.studio-cta,
.studio-cta * {
    color: #ffffff !important;
}

.studio-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-maroon);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.studio-cta:hover::before {
    width: 300px;
    height: 300px;
}

.studio-cta:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 3, 3, 0.4);
}

.studio-cta span:not(.cta-message) {
    position: relative;
    z-index: 1;
}

.studio-cta .cta-message {
    display: block;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: normal;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.studio-cta .cta-message::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-charcoal);
}

.studio-cta:hover .cta-message {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Smart Contact Modal */
.studio-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.studio-contact-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-side-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    background: var(--color-white);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 2001;
}

.studio-contact-modal.active .modal-side-panel {
    transform: translateX(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-gray);
    color: var(--color-gold);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem 2.5rem;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-charcoal);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.modal-title span {
    color: var(--color-gold);
    font-weight: 700;
}

.modal-context {
    background: var(--color-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.context-field {
    margin-bottom: 1rem;
}

.context-field:last-child {
    margin-bottom: 0;
}

.context-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.context-value {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    font-weight: 600;
    margin: 0;
}

.studio-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    transition: all 0.3s;
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-submit-btn {
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Expertise Page */
@media (max-width: 768px) {
    .expertise-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }

    .collaborative-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .collab-block-2,
    .collab-block-3,
    .collab-block-4 {
        margin-left: 0;
    }

    .studio-card {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .modal-side-panel {
        max-width: 100%;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Portfolio Page Styles
   ============================================ */

.portfolio-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel-image.active {
    opacity: 1;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(88, 4, 4, 0.85) 0%, rgba(20, 19, 19, 0.7) 100%);
    z-index: 1;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.portfolio-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--color-white);
}

.portfolio-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.portfolio-hero-micro-line {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-gold);
    font-style: italic;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.portfolio-profile-embedded {
    padding: 6rem 0;
    background: var(--color-white);
}

.profile-embedded-content {
    max-width: 900px;
    margin: 0 auto;
}

.profile-embedded-text {
    font-size: 1.2rem;
    color: var(--color-charcoal-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.profile-pull-quote {
    padding: 2rem;
    border-left: 4px solid var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
    margin-top: 2rem;
}

.pull-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(15px);
}

.portfolio-narrative-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.portfolio-narrative-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-content {
    padding: 2rem 0;
}

.portfolio-item-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--color-charcoal);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.portfolio-item-paragraph {
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.portfolio-comedy-line {
    font-size: 1rem;
    color: var(--color-gold);
    font-style: italic;
    line-height: 1.8;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold);
    border-radius: 4px;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--color-gray);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 450px;
    transform: none !important;
    will-change: auto;
}

.portfolio-image:hover .portfolio-img {
    transform: scale(1.05) !important;
}

/* Portfolio Image Carousel */
.portfolio-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--color-gray);
}

.portfolio-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.portfolio-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    min-height: 450px;
}

.portfolio-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.portfolio-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 450px;
    transform: none !important;
}

.portfolio-carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.carousel-indicator.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.portfolio-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(89, 2, 2, 0.893) 0%, rgba(26, 26, 26, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-charcoal);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.process-narrative-box {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.process-narrative-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 175, 55, 0.5), var(--color-gold));
}

.process-text-main {
    font-size: 1.25rem;
    color: var(--color-charcoal);
    line-height: 2;
    margin-bottom: 2.5rem;
    opacity: 1;
    transform: translateY(0);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.process-tea-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    animation: fadeInTeaBox 1s ease-out 0.3s both;
}

.process-tea-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-gold), rgba(212, 175, 55, 0.3));
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

.process-tea-text {
    font-size: 1.3rem;
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tea-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: bounceTeaIcon 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.tea-icon:nth-child(2) {
    animation-delay: 0.3s;
}

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

@keyframes bounceTeaIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-15deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(15deg);
    }
}

/* Portfolio Downloads Section */
.portfolio-downloads-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, rgba(89, 2, 2, 0.05) 100%);
    position: relative;
}

.downloads-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-charcoal);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.downloads-section-subtitle {
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.7);
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.portfolio-downloads-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.download-button-item {
    position: relative;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: left;
}

.btn-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
}

.download-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.download-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.download-text strong {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-charcoal);
    font-weight: 600;
    line-height: 1.3;
}

.download-text small {
    font-size: 0.9rem;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .download-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-download {
        padding: 1.5rem 2rem;
    }
    
    .download-icon {
        font-size: 2rem;
    }
    
    .download-text strong {
        font-size: 1.15rem;
    }
}

.portfolio-cta-section {
    padding: 3rem 0 6rem 0;
    background: var(--color-gray);
}

.portfolio-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.profile-download {
    margin-bottom: 1rem;
}

.private-commission-cta {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.private-cta-text {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--color-charcoal);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.private-commission-cta .btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
}

.private-commission-cta .btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    border-color: var(--color-charcoal);
}

/* Private Commission Modal Styles */
.private-commission-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.private-commission-modal.active {
    display: flex;
    opacity: 1;
}

.private-commission-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3001;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.private-commission-modal.active .modal-content-wrapper {
    transform: translate(-50%, -50%) scale(1);
}

.private-commission-modal .modal-content {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.private-commission-modal .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.private-commission-modal .modal-close:hover {
    background: var(--color-gray);
    color: var(--color-gold);
    transform: rotate(90deg);
}

.private-modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.private-modal-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-charcoal);
    font-weight: 700;
    line-height: 1.3;
}

.private-modal-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.private-modal-intro p {
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.private-commission-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-step {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.form-label strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-charcoal);
}

.form-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    font-weight: 400;
    font-style: italic;
    margin-top: 0.25rem;
}

.private-commission-form input,
.private-commission-form select,
.private-commission-form textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    transition: all 0.3s;
    background: var(--color-white);
    width: 100%;
}

.private-commission-form input:focus,
.private-commission-form select:focus,
.private-commission-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.private-commission-form textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.private-modal-closing {
    margin: 1.5rem 0;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.closing-line {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.private-submit-btn {
    background: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    width: 100%;
}

.private-submit-btn:hover {
    background: var(--color-maroon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 3, 3, 0.3);
}

.private-confirmation {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.confirmation-content p {
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
    line-height: 1.8;
}

/* Responsive Portfolio Page */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-image {
        min-height: 400px;
        order: 1;
    }
    
    .portfolio-content {
        order: 2;
        padding: 1rem 0;
    }
    
    .portfolio-img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-section {
        min-height: 70vh;
    }
    
    .portfolio-hero-content {
        padding: 1rem;
    }
    
    .portfolio-profile-embedded,
    .portfolio-narrative-section,
    .portfolio-process-section,
    .portfolio-cta-section {
        padding: 4rem 0;
    }
    
    .portfolio-narrative-items {
        gap: 5rem;
    }
    
    .narrative-item {
        gap: 2rem;
    }
    
    .narrative-image-wrapper {
        min-height: 300px;
    }
    
    .private-commission-modal .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-content-wrapper {
        width: 95%;
        max-height: 95vh;
    }
}

/* ============================================
   Offices / Global Presence Page Styles
   ============================================ */

/* Offices Hero Section */
.offices-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.offices-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.offices-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

.offices-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.offices-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Offices Intro Section */
.offices-intro-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.offices-intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offices-intro-text {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.9;
    color: var(--color-charcoal-light);
    margin-bottom: 2rem;
}

.offices-intro-text:last-child {
    margin-bottom: 0;
}

/* Offices Grid Section */
.offices-grid-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.offices-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.office-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.office-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.office-card-inner {
    padding: 3rem;
}

.office-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-gray);
}

.office-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.office-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.office-location {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 500;
}

.office-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.office-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.office-detail-content {
    flex: 1;
}

.office-detail-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.office-detail-content p {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    line-height: 1.6;
    margin: 0;
}

.office-description {
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray);
}

.office-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
}

/* Collaboration Section */
.offices-collaboration-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.collaboration-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.collaboration-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-charcoal);
    text-align: center;
    margin-bottom: 3rem;
}

.collaboration-narrative {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.collaboration-text {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.9;
    color: var(--color-charcoal-light);
    margin-bottom: 2rem;
}

.collaboration-text:last-child {
    margin-bottom: 0;
}

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

.collaboration-feature {
    text-align: center;
    padding: 2rem;
    background: var(--color-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.collaboration-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.collaboration-feature p {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    line-height: 1.6;
}

/* Offices CTA Section */
.offices-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.offices-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offices-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.offices-cta-text {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

/* Responsive Offices Page */
@media (max-width: 1024px) {
    .offices-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .collaboration-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .offices-hero-section {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .offices-intro-section,
    .offices-grid-section,
    .offices-collaboration-section,
    .offices-cta-section {
        padding: 4rem 0;
    }
    
    .office-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .offices-container {
        padding: 0 1rem;
    }
    
    .collaboration-features {
        grid-template-columns: 1fr;
    }
    
    .offices-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .offices-cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Team / Our Team Page Styles
   ============================================ */

/* Team Hero Section */
.team-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.team-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.team-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    animation: shimmer 8s infinite;
}

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

.team-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.team-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Section Headers */
.team-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.team-section-divider {
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    margin: 1.5rem auto;
}

.team-section-description {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--color-charcoal-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Directors Section */
.team-directors-section {
    padding: 3rem 0;
    background: var(--color-white);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.director-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-card:hover::before {
    transform: scaleY(1);
}

.director-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.director-card-inner {
    padding: 2rem;
}

.director-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray);
}

.director-initial {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    border: 2px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.director-initial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.director-card:hover .director-initial::after {
    opacity: 1;
}

.director-info {
    flex: 1;
}

.director-name {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.director-title {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.director-candid {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-charcoal-light);
    font-style: italic;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-gray);
}

.director-content {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.financial-contact,
.it-contact,
.admin-contact {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray);
}

.director-contact {
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: none;
}

/* Remove spacing when expertise tags follow contact */
.director-contact + .director-expertise {
    margin-top: 0;
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
}

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

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.director-philosophy {
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-charcoal-light);
}

.director-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
    margin-top: 0.75rem;
}

.expertise-tag {
    padding: 0.4rem 0.85rem;
    background: var(--color-gray);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-charcoal);
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.director-card:hover .expertise-tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* Financial Section */
.team-financial-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.financial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.financial-card-inner {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.financial-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.financial-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray);
}

.financial-initial {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    border: 2px solid var(--color-gold);
}

.financial-info {
    flex: 1;
}

.financial-name {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.financial-title {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.financial-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-charcoal-light);
}

/* IT Section */
.team-it-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.it-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.it-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.it-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.it-card:hover::before {
    transform: scaleX(1);
}

.it-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
}

.it-card-inner {
    padding: 3rem;
}

.it-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray);
}

.it-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.it-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}

.it-info {
    flex: 1;
}

.it-name {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.it-title {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 500;
    line-height: 1.5;
}

.it-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-charcoal-light);
    margin-bottom: 1.5rem;
}

.it-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: var(--color-gray);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.it-card:hover .skill-tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* Admin Section */
.team-admin-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.admin-card {
    max-width: 100%;
}

.admin-card-inner {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.admin-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray);
}

.admin-initial {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    border: 2px solid var(--color-gold);
}

.admin-info {
    flex: 1;
}

.admin-name {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.admin-title {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-charcoal-light);
}

/* Philosophy Section */
.team-philosophy-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3rem;
}

.philosophy-narrative {
    text-align: left;
}

.philosophy-text {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.philosophy-text:last-child {
    margin-bottom: 0;
}

/* Responsive Team Page */
@media (max-width: 1024px) {
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .it-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .team-hero-section {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .team-directors-section,
    .team-financial-section,
    .team-it-section,
    .team-admin-section,
    .team-philosophy-section {
        padding: 4rem 0;
    }
    
    .director-card-inner,
    .financial-card-inner,
    .it-card-inner,
    .admin-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .directors-grid,
    .it-grid,
    .admin-grid {
        padding: 0 1rem;
    }
    
    .director-header,
    .financial-header,
    .it-header,
    .admin-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .director-initial,
    .financial-initial,
    .admin-initial {
        margin: 0 auto;
    }
    
    .director-candid {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .philosophy-narrative {
        text-align: center;
    }
}

/* ============================================
   Innovation Hub Page Styles
   ============================================ */

/* Innovation Hero Section */
.innovation-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.innovation-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.innovation-parametric-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    background-size: 200px 200px;
    animation: parametricMove 20s linear infinite;
}

@keyframes parametricMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 200px 200px, -200px 200px; }
}

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

.innovation-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.innovation-hero-manifesto {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
}

.innovation-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Innovation Philosophy Section */
.innovation-philosophy-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-statement {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.9;
    color: var(--color-charcoal-light);
    margin-bottom: 2rem;
}

.philosophy-statement:last-child {
    margin-bottom: 0;
}

/* Innovation Pillars Section */
.innovation-pillars-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pillar-card-inner {
    padding: 3rem;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pillar-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--color-charcoal);
}

.pillar-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
    margin-bottom: 2rem;
}

.pillar-focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.focus-area {
    padding: 0.5rem 1rem;
    background: var(--color-gray);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.pillar-card:hover .focus-area {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* Ideas Lab Section */
.ideas-lab-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.ideas-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.idea-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.idea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.idea-card:hover::before {
    transform: scaleY(1);
}

.idea-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.idea-status {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.idea-status.concept {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
}

.idea-status.prototype {
    background: rgba(95, 3, 3, 0.15);
    color: var(--color-maroon);
}

.idea-status.research {
    background: rgba(26, 26, 26, 0.15);
    color: var(--color-charcoal);
}

.idea-status.applied {
    background: rgba(34, 139, 34, 0.15);
    color: #228b22;
}

.idea-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.idea-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
    margin-bottom: 1.5rem;
}

.idea-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
}

.idea-category {
    font-weight: 600;
    color: var(--color-charcoal);
}

.idea-year {
    opacity: 0.7;
}

/* Open Innovation Section */
.open-innovation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.open-innovation-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.open-innovation-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.open-innovation-divider {
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 3rem;
}

.collaboration-invitation {
    text-align: left;
}

.invitation-text {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.8;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.invitation-subtext {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.innovation-contact {
    margin-bottom: 2.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
}

.email-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.email-link {
    font-size: 1.1rem;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--color-gold);
}

.collaboration-cta {
    margin-top: 2rem;
}

/* Innovation Team Section */
.innovation-team-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.innovation-team-visualization {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.role-item {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--color-gray);
    transition: all 0.3s ease;
}

.role-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.role-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.role-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
}

/* Responsive Innovation Hub */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ideas-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .team-roles {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .innovation-hero-section {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .innovation-philosophy-section,
    .innovation-pillars-section,
    .ideas-lab-section,
    .open-innovation-section,
    .innovation-team-section {
        padding: 4rem 0;
    }
    
    .pillar-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .pillars-grid,
    .ideas-grid {
        padding: 0 1rem;
    }
    
    .ideas-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
    }
    
    .collaboration-invitation {
        text-align: center;
    }
    
    .team-roles {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Projects / Design Projects Page Styles
   ============================================ */

/* Projects Hero Section */
.projects-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.projects-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

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

.projects-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.projects-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb Section */
.projects-breadcrumb-section {
    padding: 2rem 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray);
    position: relative;
}

.projects-breadcrumb-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.95rem;
}

.breadcrumb-item {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.breadcrumb-item:hover {
    color: var(--color-gold);
}

.breadcrumb-separator {
    color: var(--color-charcoal-light);
    opacity: 0.5;
}

/* Projects Folder Dropdown - Floating */
.projects-folder-dropdown-wrapper {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1001;
    display: inline-block;
}

.projects-folder-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    color: #ffffff !important;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.projects-folder-dropdown-btn:hover {
    background: rgba(212, 175, 55, 0.95);
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

.projects-folder-dropdown-btn,
.projects-folder-dropdown-btn * {
    color: #ffffff !important;
}

.projects-folder-dropdown-btn .dropdown-btn-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #ffffff !important;
}

.projects-folder-dropdown-wrapper.open .projects-folder-dropdown-btn .dropdown-btn-arrow {
    transform: rotate(180deg);
}

.projects-folder-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 280px;
    max-width: 400px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

.projects-folder-dropdown-wrapper.open .projects-folder-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-folder-item {
    display: block;
    padding: 0.9rem 1.5rem;
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
}

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

.dropdown-folder-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding-left: 2rem;
}

.dropdown-folder-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    font-weight: 600;
}

.dropdown-folder-item.active::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--color-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .projects-breadcrumb-section .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .breadcrumb {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .projects-folder-dropdown-wrapper {
        position: fixed;
        top: auto;
        bottom: 2rem;
        right: 1rem;
        left: auto;
        width: auto;
        z-index: 1001;
    }
    
    .projects-folder-dropdown-btn {
        width: auto;
        justify-content: space-between;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    }
    
    .projects-folder-dropdown-menu {
        right: 0;
        left: auto;
        min-width: 260px;
        max-width: calc(100vw - 2rem);
        width: auto;
        max-height: calc(100vh - 200px);
    }
}

/* Projects Container */
.projects-container-section {
    padding: 4rem 0;
    background: var(--theme-bg-secondary);
    min-height: 60vh;
    transition: background-color 0.3s ease;
}

/* Project Info Section - Sticky Sidebar */
.project-info-section {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    opacity: 1;
    visibility: visible;
    transition: none; /* Remove transition to prevent popping */
}

.project-info {
    position: sticky;
    top: 120px;
    background: var(--theme-card-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.project-meta {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.project-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: var(--theme-text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.loading-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    font-style: italic;
    animation: pulse 2s ease-in-out infinite;
    transition: color 0.3s ease;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.loading-message.loaded {
    background: rgba(34, 197, 94, 0.1);
    border-left-color: #22c55e;
    animation: none;
}

.loading-message.loaded::before {
    content: "✓ ";
    color: #22c55e;
    font-weight: 600;
}

/* Skeleton Loaders for Images */
.image-skeleton {
    aspect-ratio: 4 / 3;
    background: linear-gradient(90deg, 
        var(--theme-bg-tertiary) 0%, 
        var(--theme-bg-secondary) 50%, 
        var(--theme-bg-tertiary) 100%);
    background-size: 200% 100%;
    border-radius: 12px;
    animation: shimmer 1.5s ease-in-out infinite;
    border: 1px solid var(--theme-border);
}

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

/* Responsive Layout */
@media (max-width: 968px) {
    .projects-container-section.has-project-info .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-info {
        position: relative;
        top: 0;
    }
    
    .projects-images-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

.projects-view {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Folder View */
.projects-folder-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.folder-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.folder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.folder-card:hover::before {
    transform: scaleY(1);
}

.folder-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.folder-card-nested {
    margin-left: 2rem;
    border-left: 3px solid var(--color-gold);
    opacity: 0.95;
}

.folder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.folder-card:hover .folder-icon {
    transform: scale(1.1);
}

.folder-icon svg {
    width: 100%;
    height: 100%;
}

.folder-name {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.folder-indicator {
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    font-style: italic;
}

/* Images View */
/* Projects Layout - Two Column when viewing images */
.projects-container-section.has-project-info .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-images-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-content: start;
}

.image-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
    display: block !important; /* Ensure card stays visible */
    visibility: visible !important;
}

.image-card.loaded {
    opacity: 1 !important;
    transform: translateY(0);
    visibility: visible !important;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.image-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.image-name {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.loading-message,
.no-images-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-charcoal-light);
}

.loading-message {
    font-size: 1.1rem;
    font-style: italic;
}

.no-images-message p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.message-subtext {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    margin-top: 1.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    color: var(--color-white);
    font-size: 0.95rem;
}

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

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

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* Responsive Projects Page */
@media (max-width: 1024px) {
    .projects-folder-view {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .projects-images-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-hero-section {
        min-height: 40vh;
        padding: 6rem 0 2rem;
    }
    
    .projects-container-section {
        padding: 3rem 0;
    }
    
    .projects-view {
        padding: 0 1rem;
    }
    
    .projects-folder-view {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .folder-card {
        padding: 2rem 1.5rem;
    }
    
    .folder-card-nested {
        margin-left: 1rem;
    }
    
    .folder-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .projects-images-view {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .breadcrumb {
        padding: 0 1rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}

/* ============================================
   Contact & Engagement Duration Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.contact-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.contact-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.08) 50%, transparent 100%);
    animation: shimmer 10s infinite;
}

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

.contact-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Engagement Duration Section */
.engagement-duration-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.duration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.duration-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.duration-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.duration-card.expanded {
    border-color: var(--color-gold);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.duration-card-inner {
    padding: 0;
}

.duration-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    border-bottom: 1px solid var(--color-gray);
    transition: background 0.3s ease;
}

.duration-card.expanded .duration-header {
    background: rgba(212, 175, 55, 0.05);
    border-bottom-color: var(--color-gold);
}

.duration-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    flex-shrink: 0;
}

.duration-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--color-charcoal);
    flex: 1;
}

.duration-expand {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-charcoal);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-charcoal);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.duration-card.expanded .duration-expand {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-white);
    transform: rotate(180deg);
}

.duration-preview {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--color-gray);
}

.duration-preview-text {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    font-style: italic;
    line-height: 1.6;
}

.duration-content {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.duration-scope,
.duration-collaboration,
.duration-expectations {
    margin-bottom: 2rem;
}

.duration-scope:last-child,
.duration-collaboration:last-child,
.duration-expectations:last-child {
    margin-bottom: 0;
}

.scope-title,
.collaboration-title,
.expectations-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

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

.scope-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
}

.scope-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}

.collaboration-text,
.expectations-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
}

/* Engagement Process Section */
.engagement-process-section {
    padding: 6rem 0;
    background: var(--color-gray);
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-charcoal);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-gold);
}

.process-step-content {
    text-align: left;
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.process-step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin-top: 30px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Contact Interface Section */
.contact-interface-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.contact-interface-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-interface-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-interface-divider {
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 2rem;
}

.contact-interface-intro {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--color-charcoal-light);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-email-section {
    margin-bottom: 4rem;
}

.contact-email-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--color-gray);
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.email-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}

.email-content {
    flex: 1;
}

.email-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-charcoal-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.email-list {
    margin-bottom: 1.5rem;
}

.email-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.email-item-primary {
    padding: 1rem 0;
    border-bottom: 2px solid var(--color-gold);
    margin-bottom: 0.5rem;
}

.email-address {
    font-size: 1rem;
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    flex: 1;
}

.email-item-primary .email-address {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.email-address:hover {
    color: var(--color-gold);
}

.email-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-left: 1rem;
}

.email-context {
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    font-style: italic;
    margin-left: 1rem;
}

.email-description {
    font-size: 0.95rem;
    color: var(--color-charcoal-light);
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-section {
    margin-top: 3rem;
}

.engagement-form {
    background: var(--color-gray);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid var(--color-gray);
}

.form-group {
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.engagement-form input[type="text"],
.engagement-form input[type="email"],
.engagement-form input[type="tel"],
.engagement-form select,
.engagement-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background: var(--color-white);
    transition: all 0.3s ease;
}

.engagement-form input:focus,
.engagement-form select:focus,
.engagement-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: var(--color-charcoal);
    color: var(--color-white);
    border: 2px solid var(--color-charcoal);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.form-submit-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-confirmation {
    background: var(--color-gray);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--color-gold);
}

.confirmation-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.confirmation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
}

/* Location Section */
.contact-location-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.location-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.location-divider {
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 2rem;
}

.location-statement {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.location-office {
    text-align: left;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-office:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.office-location-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.office-location-address {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.office-location-phone {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .duration-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }
    
    .engagement-duration-section,
    .engagement-process-section,
    .contact-interface-section,
    .contact-location-section {
        padding: 4rem 0;
    }
    
    .duration-cards {
        padding: 0 1rem;
    }
    
    .duration-header {
        padding: 2rem 1.5rem;
    }
    
    .duration-content {
        padding: 0 1.5rem;
    }
    
    .contact-email-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .email-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .email-item-primary {
        align-items: flex-start;
    }
    
    .email-badge,
    .email-context {
        margin-left: 0;
        margin-top: 0.25rem;
    }
    
    .email-address {
        word-break: break-word;
    }
    
    .engagement-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .location-offices {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-office {
        text-align: center;
    }
}

/* ============================================
   FUTURISTIC MINIMALIST HOMEPAGE STYLES
   Modern, Clean, Welcoming, Optimistic Design
   ============================================ */

:root {
    --futuristic-accent: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --futuristic-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --futuristic-teal: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    /* Map to theme variables */
    --soft-white: var(--theme-bg-secondary);
    --soft-gray: var(--theme-bg-tertiary);
    --text-dark: var(--theme-text-primary);
    --text-light: var(--theme-text-secondary);
    --border-light: var(--theme-border);
}

/* Futuristic Hero Section - Fit to Viewport */
.futuristic-hero {
    height: 100vh;
    max-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--theme-bg-primary);
    margin-top: 0;
    transition: background-color 0.3s ease;
}

.hero-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.1), rgba(253, 160, 133, 0.1));
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

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

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 8rem 0 4rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-maroon-light);
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.hero-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--futuristic-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(0.7rem, 1.2vw, 0.95rem);
    line-height: 1.5;
    color: #000000;
    max-width: 100%;
    width: auto;
    margin: 0 auto 3rem;
    font-weight: 400;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    backdrop-filter: blur(15px) saturate(180%);
    text-align: center;
}

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

.cta-button {
    padding: clamp(0.75rem, 1.5vh, 0.9rem) clamp(1.75rem, 3vw, 2rem);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(95, 3, 3, 0.7) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(138, 5, 5, 0.65) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(95, 3, 3, 0.3);
    border: 2px solid rgba(95, 3, 3, 0.4);
    backdrop-filter: blur(10px);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 3, 3, 0.5);
    background: linear-gradient(135deg, rgba(138, 5, 5, 0.75) 0%, rgba(95, 3, 3, 0.7) 50%, rgba(26, 26, 26, 0.65) 100%);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

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

.cta-outline:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Hero Highlights - Stats & Services */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vh, 2.5rem);
    animation: fadeInRight 1s ease-out 0.3s both;
    max-height: 100%;
    overflow: hidden;
}

/* Animated Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-item {
    padding: clamp(1.25rem, 2.5vh, 1.75rem);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: var(--futuristic-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Service Highlights */
.hero-services-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1rem, 2vh, 1.25rem);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-highlight:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.service-highlight:hover .service-icon {
    background: var(--futuristic-accent);
    color: white;
    transform: scale(1.1);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-family: 'Playfair Display', serif;
}

.service-info p {
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.4;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: clamp(1rem, 2vh, 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: clamp(0.7rem, 1vw, 0.75rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: clamp(30px, 4vh, 40px);
    background: linear-gradient(180deg, var(--text-dark) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        height: 40px;
    }
    50% {
        opacity: 1;
        height: 60px;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-header-modern {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-label {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme-text-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--theme-text-primary);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.section-description-modern {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--theme-text-secondary);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-modern {
    padding: 3rem 2rem;
    background: var(--theme-card-bg);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--theme-border);
    color: var(--theme-text-primary);
}

.value-card-modern:hover {
    transform: translateY(-10px);
    background: var(--theme-bg-tertiary);
    border-color: var(--color-gold);
    border-color: var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--theme-card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-text-primary);
    transition: all 0.4s ease;
}

.value-card-modern:hover .value-icon {
    background: var(--futuristic-accent);
    color: var(--theme-text-primary);
    transform: scale(1.1);
}

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

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--theme-text-secondary);
    font-weight: 300;
    transition: color 0.3s ease;
}

/* Portfolio Preview Section */
.portfolio-preview-section {
    padding: 8rem 0;
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modern-carousel {
    margin: 4rem 0;
    position: relative;
}

.modern-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-nav-btn:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-carousel-prev {
    left: -30px;
}

.portfolio-carousel-next {
    right: -30px;
}

.portfolio-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 8rem 0;
    background: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Redesigned Why Section */
.redesigned-why-section {
    padding: 10rem 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.why-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.why-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.redesigned-why-section:hover .why-bg-image {
    transform: scale(1.05);
    filter: brightness(0.45) contrast(1.15);
}

.why-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(26, 26, 26, 0.75) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
    backdrop-filter: blur(2px);
}

.why-section-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-header-centered {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out;
}

.why-section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.why-main-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.why-headline-accent {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.why-intro-text {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-feature-card {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.why-feature-card[data-feature="1"] {
    animation-delay: 0.1s;
}

.why-feature-card[data-feature="2"] {
    animation-delay: 0.2s;
}

.why-feature-card[data-feature="3"] {
    animation-delay: 0.3s;
}

.feature-card-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-feature-card:hover .feature-card-inner {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.why-feature-card:hover .feature-card-inner::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-feature-card:hover .feature-icon-wrapper {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    stroke-width: 2;
    transition: all 0.5s ease;
}

.why-feature-card:hover .feature-icon {
    color: var(--color-gold-light);
    transform: scale(1.1);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(95, 3, 3, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
    position: relative;
}

.why-feature-card:hover .feature-number {
    color: rgba(95, 3, 3, 0.25);
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--color-maroon);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.5s ease;
}

.why-feature-card:hover .feature-title {
    color: var(--color-maroon);
    text-shadow: 0 2px 8px rgba(95, 3, 3, 0.2);
}

.feature-description {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    transition: color 0.5s ease;
    font-weight: 400;
}

.why-feature-card:hover .feature-description {
    color: #000000;
}

.feature-accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transition: all 0.5s ease;
    margin-top: auto;
}

.why-feature-card:hover .feature-accent-line {
    width: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

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

/* Responsive styles for Redesigned Why Choose section */
@media (max-width: 968px) {
    .redesigned-why-section {
        padding: 6rem 0;
        min-height: auto;
    }

    .why-header-centered {
        margin-bottom: 4rem;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .feature-card-inner {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .redesigned-why-section {
        padding: 5rem 0;
    }

    .why-header-centered {
        margin-bottom: 3rem;
    }

    .why-features-grid {
        gap: 1.5rem;
    }

    .feature-card-inner {
        padding: 2rem 1.5rem;
    }

    .why-section-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }
}

.why-choose-text {
    animation: fadeInLeft 0.8s ease-out;
}

.why-choose-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
    height: 100%;
    min-height: 500px;
}

.why-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatAnimation 6s ease-in-out infinite;
}

.why-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.15);
    animation: floatAnimationHover 3s ease-in-out infinite;
}

.why-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imagePulse 8s ease-in-out infinite;
}

.why-image-wrapper:hover .why-featured-image {
    transform: scale(1.1);
    animation: imagePulseHover 4s ease-in-out infinite;
}

.why-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(95, 3, 3, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 100%
    );
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: overlayPulse 5s ease-in-out infinite;
}

.why-image-wrapper:hover .why-image-overlay {
    opacity: 0.7;
}

.why-image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shineAnimation 4s ease-in-out infinite;
    pointer-events: none;
}

.why-image-wrapper:hover .why-image-shine {
    animation: shineAnimationFast 2s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes floatAnimationHover {
    0%, 100% {
        transform: translateY(-10px) scale(1.02) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) scale(1.02) rotate(-1deg);
    }
}

/* Image pulse animation */
@keyframes imagePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.05);
    }
}

@keyframes imagePulseHover {
    0%, 100% {
        transform: scale(1.1) brightness(1);
    }
    50% {
        transform: scale(1.12) brightness(1.08);
    }
}

/* Overlay pulse animation */
@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Shine animation */
@keyframes shineAnimation {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes shineAnimationFast {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles for Why Choose section image */
@media (max-width: 968px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-choose-image {
        min-height: 400px;
        order: -1; /* Show image first on mobile */
    }

    .why-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .why-choose-image {
        min-height: 350px;
    }

    .why-image-wrapper {
        min-height: 350px;
    }
}

.why-choose-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-light);
    margin: 2rem 0 3rem;
    font-weight: 300;
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.why-point-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    min-width: 50px;
}

.why-point-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.why-point-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

.why-choose-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 30px;
    overflow: hidden;
}

.visual-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--futuristic-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 8rem 0;
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--theme-text-primary);
    transition: color 0.3s ease;
    letter-spacing: -1px;
}

.cta-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    color: var(--theme-text-secondary);
    transition: color 0.3s ease;
}

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

/* Removed - buttons now use hero button design */

.contact-cta-section .cta-outline {
    border-color: white;
    color: white;
}

.contact-cta-section .cta-outline:hover {
    background: white;
    color: #667eea;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .futuristic-hero .hero-render-cards {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 4rem auto 0;
        justify-content: center;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-choose-visual {
        height: 300px;
    }

    .modern-nav-btn {
        display: none;
    }
}

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

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

    .hero-cta-buttons,
    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .section-title-modern {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .philosophy-section,
    .portfolio-preview-section,
    .why-choose-section,
    .contact-cta-section {
        padding: 5rem 0;
    }
}

/* ============================================
   HERO VIDEO & CONTENT IMPROVEMENTS
   Video plays once, then switches to images
   Content centered and flexible
   ============================================ */

/* Video Background - Full Screen Fit */
.futuristic-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.futuristic-hero .hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.5;
    transition: opacity 1s ease-out;
}

.futuristic-hero .hero-background video.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    visibility: hidden;
}

/* Images Carousel - Shows after video ends */
.futuristic-hero .hero-images-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in;
}

.futuristic-hero .hero-images-carousel.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.futuristic-hero .hero-images-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.futuristic-hero .hero-images-carousel img.active {
    opacity: 1;
}

/* Hero Content Layout - Centered and Flexible */
.hero-content-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-items: center;
    height: 100%;
    max-height: 100%;
}

.hero-content-main {
    justify-self: center;
    width: 100%;
    max-width: 100%;
    animation: fadeInLeft 1s ease-out;
}

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

/* Center on mobile */
@media (max-width: 1200px) {
    .hero-content-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .hero-content-main {
        text-align: center;
    }

    .hero-cta-buttons {
        justify-content: center;
    }
}

/* ============================================
   HERO VIEWPORT FITTING - One Page Display
   ============================================ */

/* Ensure hero fits exactly in viewport below navbar - No Overflow */
.futuristic-hero {
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    position: relative !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Account for navbar height */
body {
    padding-top: 0 !important;
}

.hero-content-wrapper {
    height: 100% !important;
    max-height: 100% !important;
    padding: clamp(1rem, 2vh, 1.5rem) clamp(1rem, 2vw, 2rem) clamp(3rem, 5vh, 4rem) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.hero-content-wrapper .container {
    height: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 clamp(1rem, 2vw, 2rem) !important;
    box-sizing: border-box !important;
}

.hero-content-layout {
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 80px) !important;
    gap: clamp(1.5rem, 3vw, 2.5rem) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.hero-content-main {
    height: auto !important;
    max-height: 100% !important;
    overflow: hidden !important;
}

.hero-highlights {
    height: auto !important;
    max-height: 100% !important;
    overflow: hidden !important;
}

/* Scroll indicator positioning - ensure it's visible */
.scroll-indicator-modern {
    position: absolute !important;
    bottom: clamp(1rem, 2vh, 1.5rem) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .hero-content-layout {
        gap: clamp(1rem, 2vw, 2rem) !important;
    }
}

@media (max-width: 768px) {
    .futuristic-hero {
        height: 100vh !important;
    }

    .hero-content-wrapper {
        padding: clamp(0.5rem, 1vh, 1rem) clamp(0.75rem, 1.5vw, 1rem) !important;
    }

    .hero-content-layout {
        gap: clamp(1rem, 2vh, 1.5rem) !important;
    }

    .hero-main-title {
        font-size: clamp(1.75rem, 6vw, 3rem) !important;
        margin-bottom: clamp(0.75rem, 1.5vh, 1rem) !important;
    }

    .hero-description {
        font-size: clamp(0.75rem, 2.5vw, 1rem) !important;
        margin-bottom: clamp(1rem, 2vh, 1.25rem) !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .hero-cta-buttons {
        gap: 0.75rem !important;
    }

    .cta-button {
        padding: clamp(0.7rem, 1.2vh, 0.8rem) clamp(1.5rem, 2.5vw, 1.75rem) !important;
        font-size: clamp(0.8rem, 1vw, 0.9rem) !important;
    }

    .hero-stats-grid {
        gap: 0.75rem !important;
    }

    .stat-item {
        padding: clamp(1rem, 2vh, 1.25rem) !important;
    }

    .stat-number {
        font-size: clamp(1.5rem, 3vw, 2rem) !important;
        margin-bottom: 0.25rem !important;
    }

    .stat-label {
        font-size: 0.7rem !important;
    }

    .service-highlight {
        padding: clamp(0.75rem, 1.5vh, 1rem) !important;
        gap: 0.75rem !important;
    }

    .service-icon {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
    }

    .service-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .service-info h4 {
        font-size: 0.85rem !important;
    }

    .service-info p {
        font-size: 0.75rem !important;
    }

    .hero-services-preview {
        gap: 0.5rem !important;
    }

    .scroll-indicator-modern {
        bottom: clamp(0.5rem, 1vh, 1rem) !important;
        font-size: 0.65rem !important;
    }

    .scroll-line {
        height: clamp(25px, 3vh, 35px) !important;
    }
}

/* ============================================
   SERVICE HIGHLIGHTS SECTION - Moved from Hero
   ============================================ */

.service-highlights-section {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.service-highlight-card {
    padding: clamp(2.5rem, 5vh, 3.5rem) clamp(2rem, 4vw, 2.5rem);
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.service-highlight-card:hover .service-icon-large {
    background: var(--futuristic-accent);
    color: white;
    transform: scale(1.1);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.service-info-large {
    text-align: center;
}

.service-info-large h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--theme-text-primary);
    transition: color 0.3s ease;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.service-info-large p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: var(--theme-text-secondary);
    font-weight: 300;
    transition: color 0.3s ease;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-highlights-section {
        padding: clamp(3rem, 6vh, 5rem) 0;
    }

    .service-highlights-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vh, 2rem);
        padding: 0 clamp(1.5rem, 3vw, 2rem);
    }

    .service-highlight-card {
        padding: clamp(2rem, 4vh, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
    }

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

/* ============================================
   SERVICE HIGHLIGHTS SECTION - Moved from Hero
   ============================================ */

.service-highlights-section {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.service-highlight-card {
    padding: clamp(2.5rem, 5vh, 3.5rem) clamp(2rem, 4vw, 2.5rem);
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.service-highlight-card:hover .service-icon-large {
    background: var(--futuristic-accent);
    color: white;
    transform: scale(1.1);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.service-info-large {
    text-align: center;
}

.service-info-large h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--theme-text-primary);
    transition: color 0.3s ease;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.service-info-large p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: var(--theme-text-secondary);
    font-weight: 300;
    transition: color 0.3s ease;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-highlights-section {
        padding: clamp(3rem, 6vh, 5rem) 0;
    }

    .service-highlights-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vh, 2rem);
        padding: 0 clamp(1.5rem, 3vw, 2rem);
    }

    .service-highlight-card {
        padding: clamp(2rem, 4vh, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
    }

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

/* ============================================
   OPTIMIZED ARCHITECTURAL STYLING
   Better spacing, balanced margins, realistic feel
   ============================================ */

/* Optimized Hero Section - Perfect Viewport Fit */
.optimized-hero {
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.optimized-hero-wrapper {
    width: 100% !important;
    height: 100% !important;
    padding: clamp(5rem, 8vh, 7rem) clamp(2rem, 4vw, 4rem) clamp(4rem, 8vh, 5rem) !important;
    padding-top: clamp(6rem, 10vh, 8rem) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.optimized-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 clamp(1.5rem, 3vw, 2rem) !important;
}

.hero-content-centered {
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.optimized-tagline {
    font-size: clamp(1rem, 1.3vw, 1.2rem) !important;
    letter-spacing: 2px !important;
    margin-bottom: clamp(1rem, 2vh, 1.5rem) !important;
    font-weight: 500 !important;
    color: var(--color-maroon) !important;
}

.optimized-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem) !important;
    font-weight: 300 !important;
    letter-spacing: -1px !important;
}

.optimized-description {
    font-size: clamp(0.7rem, 1.2vw, 0.95rem) !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    width: auto !important;
    margin: 0 auto clamp(2rem, 4vh, 2.5rem) !important;
    color: #000000 !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.25) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    text-align: center !important;
}

.optimized-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: clamp(1rem, 2vw, 1.5rem) !important;
    flex-wrap: wrap !important;
}

.optimized-scroll {
    bottom: clamp(1.5rem, 3vh, 2rem) !important;
    z-index: 10 !important;
}

/* Optimized Service Highlights */
.optimized-services {
    padding: clamp(5rem, 10vh, 7rem) 0 !important;
    background: var(--theme-bg-secondary) !important;
    color: var(--theme-text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Optimized Philosophy Section */
.optimized-philosophy {
    padding: clamp(5rem, 10vh, 7rem) 0 !important;
    background: var(--theme-bg-primary) !important;
    color: var(--theme-text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.optimized-header {
    text-align: center !important;
    margin-bottom: clamp(3rem, 6vh, 5rem) !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.optimized-label {
    font-size: clamp(0.875rem, 1.1vw, 1rem) !important;
    letter-spacing: 2px !important;
    color: #555 !important;
    font-weight: 500 !important;
    margin-bottom: clamp(1rem, 2vh, 1.5rem) !important;
    display: block !important;
}

.optimized-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    line-height: 1.2 !important;
    margin: clamp(0.75rem, 1.5vh, 1rem) 0 clamp(1.5rem, 3vh, 2rem) !important;
    font-weight: 300 !important;
    letter-spacing: -0.5px !important;
}

.optimized-section-desc {
    font-size: clamp(1rem, 1.2vw, 1.125rem) !important;
    line-height: 1.7 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    color: var(--text-light) !important;
    font-weight: 300 !important;
}

.optimized-values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)) !important;
    gap: clamp(2rem, 4vw, 2.5rem) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.value-card-modern {
    padding: clamp(2.5rem, 5vh, 3rem) clamp(2rem, 4vw, 2.5rem) !important;
    background: white !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.value-card-modern:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(102, 126, 234, 0.2) !important;
}

.value-icon {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto clamp(1.25rem, 2.5vh, 1.5rem) !important;
    background: var(--theme-card-bg) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--theme-text-primary) !important;
    transition: all 0.3s ease !important;
}

.value-card-modern:hover .value-icon {
    background: var(--futuristic-accent) !important;
    color: var(--theme-text-primary) !important;
    transform: scale(1.05) !important;
}

.value-icon svg {
    width: 35px !important;
    height: 35px !important;
}

.value-title {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important;
    font-weight: 600 !important;
    margin-bottom: clamp(0.75rem, 1.5vh, 1rem) !important;
    font-family: '\''Playfair Display'\'', serif !important;
    color: var(--theme-text-primary) !important;
    transition: color 0.3s ease !important;
}

.value-text {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem) !important;
    line-height: 1.7 !important;
    color: var(--theme-text-secondary) !important;
    font-weight: 300 !important;
    transition: color 0.3s ease !important;
}

/* Optimized Portfolio Section */
.optimized-portfolio {
    padding: clamp(5rem, 10vh, 7rem) 0 !important;
    background: white !important;
}

.optimized-portfolio-cta {
    text-align: center !important;
    margin-top: clamp(3rem, 6vh, 4rem) !important;
}

/* Optimized Why Choose Section */
.optimized-why-choose {
    padding: clamp(5rem, 10vh, 7rem) 0 !important;
    background: #f8f8f8 !important;
}

.optimized-why-content {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.optimized-why-desc {
    font-size: clamp(1rem, 1.2vw, 1.125rem) !important;
    line-height: 1.7 !important;
    margin: clamp(1.5rem, 3vh, 2rem) 0 clamp(2.5rem, 5vh, 3rem) !important;
    color: var(--text-light) !important;
}

.optimized-points {
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(2rem, 4vh, 2.5rem) !important;
}

.why-point {
    display: flex !important;
    gap: clamp(1.5rem, 3vw, 2rem) !important;
    align-items: flex-start !important;
}

.why-point-number {
    font-size: clamp(1.5rem, 2vw, 1.75rem) !important;
    font-weight: 700 !important;
    color: var(--text-light) !important;
    min-width: 50px !important;
    font-family: '\''Playfair Display'\'', serif !important;
}

.why-point-content h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem) !important;
    font-weight: 600 !important;
    margin-bottom: clamp(0.5rem, 1vh, 0.75rem) !important;
    font-family: '\''Playfair Display'\'', serif !important;
}

.why-point-content p {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem) !important;
    line-height: 1.7 !important;
    color: var(--text-light) !important;
    font-weight: 300 !important;
}

/* Optimized CTA Section */
.optimized-cta {
    padding: clamp(5rem, 10vh, 7rem) 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.optimized-cta-wrapper {
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.optimized-cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    line-height: 1.2 !important;
    margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem) !important;
    font-weight: 300 !important;
    color: white !important;
}

.optimized-cta-desc {
    font-size: clamp(1rem, 1.2vw, 1.125rem) !important;
    line-height: 1.7 !important;
    margin-bottom: clamp(2.5rem, 5vh, 3rem) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.optimized-cta-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: clamp(1rem, 2vw, 1.5rem) !important;
    flex-wrap: wrap !important;
}

/* Responsive Optimizations */
@media (max-width: 1200px) {
    .hero-content-centered {
        max-width: 100% !important;
    }

    .optimized-section-title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem) !important;
    }

    .optimized-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .optimized-hero-wrapper {
        padding: clamp(5rem, 8vh, 6rem) clamp(1rem, 2vw, 1.5rem) clamp(3rem, 6vh, 4rem) !important;
        padding-top: clamp(5.5rem, 9vh, 6.5rem) !important;
    }

    .optimized-title {
        font-size: clamp(2rem, 6vw, 2.75rem) !important;
    }

    .optimized-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .optimized-buttons .cta-button {
        width: 100% !important;
        max-width: 100% !important;
    }

    .optimized-services,
    .optimized-philosophy,
    .optimized-portfolio,
    .optimized-why-choose,
    .optimized-cta {
        padding: clamp(3rem, 6vh, 5rem) 0 !important;
    }

    .optimized-header {
        margin-bottom: clamp(2rem, 4vh, 3rem) !important;
    }

    .optimized-values-grid {
        grid-template-columns: 1fr !important;
        gap: clamp(1.5rem, 3vh, 2rem) !important;
    }

    .why-point {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .service-highlights-grid {
        grid-template-columns: 1fr !important;
        gap: clamp(1.5rem, 3vh, 2rem) !important;
    }

    .optimized-cta-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .optimized-cta-buttons .cta-button {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .optimized-tagline {
        font-size: 0.875rem !important;
        letter-spacing: 1.5px !important;
    }

    .optimized-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
    }

    .optimized-description {
        font-size: clamp(0.75rem, 2.5vw, 1rem) !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .optimized-section-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .optimized-cta-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
    }
}

/* ============================================
   FLOATING STATS SIDEBAR - Android-style
   Dancing element on right margin, expands on hover
   ============================================ */

.floating-stats-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-stats-trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        -4px 0 20px rgba(212, 175, 55, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: floatDance 3s ease-in-out infinite;
}

@keyframes floatDance {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-5px) translateY(-8px);
    }
    50% {
        transform: translateX(0) translateY(-10px);
    }
    75% {
        transform: translateX(-5px) translateY(-8px);
    }
}

.floating-stats-icon {
    width: 30px;
    height: 30px;
    color: white;
    animation: pulseIcon 2s ease-in-out infinite;
}

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

.floating-stats-icon svg {
    width: 100%;
    height: 100%;
}

.floating-stats-content {
    width: 0;
    overflow: hidden;
    background: var(--theme-card-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px 0 0 20px;
    transition: background-color 0.3s ease;
    padding: 0;
    box-shadow: 
        -8px 0 40px rgba(0, 0, 0, 0.15),
        inset -1px 0 0 var(--theme-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.floating-stats-sidebar.expanded {
    right: 0;
}

.floating-stats-sidebar.expanded .floating-stats-content {
    width: 320px;
    padding: 2rem 1.5rem 2rem 2rem;
    opacity: 1;
    visibility: visible;
}

.floating-stats-sidebar.expanded .floating-stats-trigger {
    animation: none;
    transform: translateX(-10px);
    box-shadow: 
        -8px 0 30px rgba(212, 175, 55, 0.5),
        0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Hover support as well */
.floating-stats-sidebar:hover {
    right: 0;
}

.floating-stats-sidebar:hover .floating-stats-content {
    width: 320px;
    padding: 2rem 1.5rem 2rem 2rem;
    opacity: 1;
    visibility: visible;
}

.floating-stats-sidebar:hover .floating-stats-trigger {
    animation: none;
    transform: translateX(-10px);
    box-shadow: 
        -8px 0 30px rgba(212, 175, 55, 0.5),
        0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-stats-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.floating-stats-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    font-family: 'Playfair Display', serif;
    margin: 0;
    transition: color 0.3s ease;
}

.floating-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.floating-stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--theme-card-bg);
    border-radius: 12px;
    border: 1px solid var(--theme-border);
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--theme-text-primary);
}

.floating-stat-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateX(-5px) scale(1.02);
}

.floating-stat-card:active {
    transform: translateX(-3px) scale(1.01);
}

.floating-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--color-gold);
    line-height: 1;
    min-width: 45px;
}

.floating-stat-plus {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0.8;
}

.floating-stat-label {
    font-size: 0.85rem;
    color: var(--theme-text-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-stats-sidebar {
        right: -10px;
    }
    
    .floating-stats-trigger {
        width: 50px;
        height: 50px;
    }
    
    .floating-stats-icon {
        width: 24px;
        height: 24px;
    }
    
    .floating-stats-sidebar:hover .floating-stats-content {
        width: 280px;
        padding: 1.5rem 1rem 1.5rem 1.5rem;
    }
    
    .floating-stat-number {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .floating-stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-stats-sidebar {
        display: none; /* Hide on very small screens */
    }
}

/* ============================================
   UNIQUE HERO STATS STYLING
   Modern, elegant stats display
   ============================================ */

.hero-stats-unique {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2.5rem, 5vh, 3.5rem);
    flex-wrap: wrap;
    padding: clamp(1.5rem, 3vh, 2rem) clamp(1rem, 2vw, 2rem);
    background: var(--theme-card-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--theme-border);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 var(--theme-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.stat-card-unique {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 120px;
    position: relative;
    background: transparent;
    color: var(--theme-text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.clickable-stat {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-stat:hover {
    transform: translateY(-5px) scale(1.05);
}

.clickable-stat:active {
    transform: translateY(-2px) scale(1.02);
}

.stat-number-unique {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--color-gold);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    position: relative;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.stat-plus {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-left: 0.15rem;
    opacity: 0.8;
    display: inline-block;
}

.stat-label-unique {
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    color: var(--theme-text-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.stat-divider-unique {
    width: 1px;
    height: 50px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%
    );
    opacity: 0.6;
}

/* Hover effects */
.stat-card-unique:hover .stat-number-unique {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat-card-unique:hover .stat-label-unique {
    color: var(--color-maroon);
    transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-stats-unique {
        gap: clamp(1rem, 2vw, 2rem);
    }
    
    .stat-card-unique {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .hero-stats-unique {
        gap: clamp(1rem, 2vw, 1.5rem);
        padding: clamp(1rem, 2vh, 1.5rem) clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .stat-card-unique {
        min-width: 80px;
    }
    
    .stat-number-unique {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }
    
    .stat-plus {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .stat-label-unique {
        font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    }
    
    .stat-divider-unique {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-stats-unique {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider-unique {
        width: 60px;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.3) 20%,
            rgba(212, 175, 55, 0.5) 50%,
            rgba(212, 175, 55, 0.3) 80%,
            transparent 100%
        );
    }
    
    .stat-card-unique {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================
   THEME TOGGLE BUTTON - Inside Floating Sidebar
   ============================================ */

.floating-theme-toggle {
    width: 100%;
    padding: 0.75rem;
    background: var(--theme-card-bg);
    border-radius: 12px;
    border: 1px solid var(--theme-border);
    color: var(--theme-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.floating-theme-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateX(-5px);
}

.floating-theme-toggle:active {
    transform: scale(0.98);
}

.theme-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: currentColor;
    flex-shrink: 0;
}

.theme-toggle-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--theme-text-primary);
    transition: color 0.3s ease;
}

.theme-icon-sun {
    opacity: 0;
    transform: rotate(90deg) scale(0);
    position: absolute;
}

.theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    position: relative;
}

[data-theme="light"] .theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    position: relative;
}

[data-theme="light"] .theme-icon-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
    position: absolute;
}

/* Comprehensive Theme Overrides - Ensure All Elements Respond to Theme */
[data-theme="light"] .hero-stats-unique {
    background: var(--theme-card-bg);
    border-color: var(--theme-border);
}

[data-theme="light"] .stat-card-unique {
    background: transparent;
    color: var(--theme-text-primary);
}

/* Make all card backgrounds theme-aware */
.card, [class*="card"], [class*="Card"] {
    background-color: var(--theme-card-bg) !important;
    color: var(--theme-text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Footer content - Force white for visibility in all themes */
.footer,
.footer *,
.footer-content, 
.footer-content *:not(a):not(.footer-logo),
.footer-content-wrapper,
.footer-content-wrapper *:not(a):not(.footer-logo),
.footer-section-title,
.footer-contact-item,
.footer-contact-item p,
.footer-value-item,
.footer-moto,
.footer-office,
.footer-office p,
.footer-directors,
.footer-director,
.footer-director p,
.footer-tagline,
.footer-tagline p,
.footer-form-label,
.footer-bottom,
.footer-bottom * {
    color: #ffffff !important;
}

/* Keep gold accents for titles and highlights */
.footer-section-title {
    color: var(--color-gold) !important;
}

.footer-contact-item strong,
.footer-value-item strong,
.footer-moto strong,
.footer-director strong,
.footer-office strong {
    color: var(--color-gold) !important;
}

/* Ensure links remain visible but styled */
.footer a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    color: var(--color-gold) !important;
}

/* Ensure all main content areas respond to theme */
main, article, aside {
    background-color: var(--theme-bg-primary) !important;
    color: var(--theme-text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Comprehensive theme application - all elements now use theme variables */

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-first approach with multiple breakpoints
   ============================================ */

/* ============================================
   BASE RESPONSIVE UTILITIES
   ============================================ */

/* Ensure all containers are responsive */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

/* Responsive Images */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGATION - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-wrapper {
        padding: 0.8rem 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Hide desktop menu items */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.99) !important;
        backdrop-filter: blur(30px) saturate(180%);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999 !important;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        width: 100vw;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .nav-item {
        width: 100%;
        margin: 0.5rem 0;
        display: block;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: space-between;
        border-radius: 8px;
        font-size: 0.95rem;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.15) !important;
        color: var(--color-gold) !important;
        border-color: rgba(212, 175, 55, 0.3);
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        background: rgba(15, 15, 15, 0.95) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        box-shadow: none;
        padding: 0.75rem 0.5rem !important;
        margin-left: 1rem;
        border-radius: 8px;
    }
    
    .dropdown-menu a {
        color: #ffffff !important;
        padding: 0.85rem 1rem !important;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(212, 175, 55, 0.2) !important;
        color: var(--color-gold) !important;
    }
    
    /* Ensure dropdown is always visible when parent nav-item is visible or clicked */
    .nav-item.dropdown.active .dropdown-menu,
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Show dropdown arrow rotated when active */
    .nav-item.dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Make all nav links fully visible in mobile menu */
    .nav-menu.active .nav-link,
    .nav-menu.active .nav-link *,
    .nav-menu.active .dropdown-menu a,
    .nav-menu.active .dropdown-menu a * {
        color: #ffffff !important;
    }
    
    /* Ensure lang toggle button is visible */
    .lang-toggle {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-menu {
        top: 55px;
        padding: 1.5rem 0.75rem;
        max-height: calc(100vh - 55px);
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.9rem 1.25rem;
    }
    
    .dropdown-menu a {
        font-size: 0.85rem;
        padding: 0.75rem 0.9rem;
    }
}

/* ============================================
   HERO SECTION - RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .hero-content-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content-main,
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .futuristic-hero,
    .optimized-hero {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .optimized-hero-wrapper {
        padding: clamp(4rem, 7vh, 5.5rem) clamp(1rem, 3vw, 1.5rem) clamp(2.5rem, 5vh, 3.5rem) !important;
        padding-top: clamp(5rem, 9vh, 6rem) !important;
    }
    
    .hero-content-centered {
        max-width: 100%;
        padding: 0;
    }
    
    .optimized-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        line-height: 1.3 !important;
    }
    
    .optimized-description {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem) !important;
        padding: 0.6rem 1rem !important;
        white-space: normal !important;
        display: block !important;
    }
    
    .optimized-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem !important;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .optimized-hero-wrapper {
        padding: clamp(3.5rem, 6vh, 4.5rem) 0.75rem clamp(2rem, 4vh, 3rem) !important;
        padding-top: clamp(4.5rem, 8vh, 5.5rem) !important;
    }
    
    .optimized-tagline {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
}

/* ============================================
   SECTIONS - RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 clamp(1.5rem, 3vw, 2rem);
    }
    
    section {
        padding: clamp(4rem, 8vh, 6rem) 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: clamp(3rem, 6vh, 5rem) 0;
    }
    
    .optimized-container {
        padding: 0 1rem !important;
    }
    
    .optimized-header {
        margin-bottom: clamp(2rem, 4vh, 3rem) !important;
    }
    
    .optimized-section-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    }
    
    .optimized-section-desc {
        font-size: clamp(0.95rem, 1.1vw, 1.05rem) !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: clamp(2.5rem, 5vh, 4rem) 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   STATS SECTION - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-stats-unique {
        gap: clamp(1rem, 2vw, 1.5rem);
        padding: clamp(1.25rem, 2.5vh, 1.75rem) clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .stat-card-unique {
        min-width: 90px;
    }
}

@media (max-width: 768px) {
    .hero-stats-unique {
        gap: clamp(0.75rem, 1.5vw, 1rem);
        padding: clamp(1rem, 2vh, 1.25rem) clamp(0.5rem, 1vw, 0.75rem);
    }
    
    .stat-number-unique {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .stat-label-unique {
        font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    }
}

@media (max-width: 480px) {
    .hero-stats-unique {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider-unique {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.5) 50%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
    }
    
    .stat-card-unique {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================
   VALUES/PHILOSOPHY GRID - RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .values-grid-modern,
    .optimized-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)) !important;
        gap: clamp(1.5rem, 3vw, 2rem) !important;
    }
}

@media (max-width: 768px) {
    .values-grid-modern,
    .optimized-values-grid {
        grid-template-columns: 1fr !important;
        gap: clamp(1.25rem, 2.5vh, 1.5rem) !important;
    }
    
    .value-card-modern {
        padding: clamp(2rem, 4vh, 2.5rem) clamp(1.5rem, 3vw, 2rem) !important;
    }
}

/* ============================================
   WHY CHOOSE SECTION - RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .redesigned-why-section {
        padding: 6rem 0;
        min-height: auto;
    }
    
    .why-header-centered {
        margin-bottom: 4rem;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .feature-card-inner {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .redesigned-why-section {
        padding: 5rem 0;
    }
    
    .why-main-headline {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .why-intro-text {
        font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    }
    
    .why-features-grid {
        gap: 1.5rem;
    }
    
    .feature-card-inner {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   PORTFOLIO PREVIEW - RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ============================================
   PROJECTS PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .projects-container-section.has-project-info .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-info {
        position: relative;
        top: 0;
    }
    
    .projects-images-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .projects-container-section {
        padding: 3rem 0;
    }
    
    .project-info {
        padding: 2rem 1.5rem;
    }
    
    .project-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .projects-images-view {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .folder-card {
        padding: 2rem 1.5rem;
    }
    
    .projects-folder-dropdown-wrapper {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        top: auto;
    }
}

@media (max-width: 480px) {
    .projects-images-view {
        grid-template-columns: 1fr;
    }
    
    .folder-card {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   EXPERTISE PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .studio-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .studio-card {
        padding: 2rem 1.5rem;
    }
    
    .studio-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .studio-cta {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   CONTACT/FORMS - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 4rem 0;
    }
    
    .cta-content-wrapper {
        padding: 0 1rem;
    }
    
    .cta-main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-buttons-group .cta-button {
        width: 100%;
    }
    
    form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   FOOTER - RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-content-wrapper {
        padding: 3rem 0 2rem;
    }
    
    .footer-logo-directors {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-directors {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content-wrapper {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

/* ============================================
   FLOATING STATS SIDEBAR - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .floating-stats-sidebar {
        right: -10px;
    }
    
    .floating-stats-trigger {
        width: 50px;
        height: 50px;
    }
    
    .floating-stats-icon {
        width: 24px;
        height: 24px;
    }
    
    .floating-stats-sidebar:hover .floating-stats-content,
    .floating-stats-sidebar.expanded .floating-stats-content {
        width: 280px;
        padding: 1.5rem 1rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-stats-sidebar {
        display: none; /* Hide on very small screens */
    }
}

/* ============================================
   TYPOGRAPHY - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h4 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    p {
        font-size: clamp(0.95rem, 1.1vw, 1rem);
    }
}

/* ============================================
   BUTTONS - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   UTILITY CLASSES - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .full-width-mobile {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .stack-mobile {
        flex-direction: column !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    button, a, .clickable-stat {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .folder-card:hover,
    .image-card:hover,
    .value-card-modern:hover {
        transform: none;
    }
}

/* ============================================
   LANDSCAPE MOBILE ORIENTATION
   ============================================ */

@media (max-width: 896px) and (orientation: landscape) {
    .futuristic-hero,
    .optimized-hero {
        min-height: auto;
        height: auto;
        padding: 2rem 0;
    }
    
    .optimized-hero-wrapper {
        padding: 3rem 1rem !important;
    }
}
