﻿/* ===== BASE STYLES - CARBON COPY OF HOMEPAGE ===== */
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
            color: var(--petrol-dark);
            text-align: center;
        }

        h1 { 
            font-size: clamp(2.75rem, 5vw, 4rem); 
            margin-bottom: var(--space-lg);
            animation: floatUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        }

        h2 { 
            font-size: clamp(2rem, 3.5vw, 3rem); 
            margin-bottom: var(--space-md);
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        h3 { 
            font-size: 1.5rem; 
            margin-bottom: var(--space-sm);
        }

        .lead {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--gray);
            max-width: 42rem;
            margin: 0 auto;
        }

        .section-lead {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--gray);
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .section {
            padding: var(--space-3xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        /* ===== NAVIGATION - EXACT COPY FROM HOMEPAGE ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(230, 230, 230, 0.5);
            z-index: 1000;
            padding: var(--space-sm) 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .navbar.scrolled {
            padding: var(--space-xs) 0;
            box-shadow: var(--shadow-subtle);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-3xs);
            text-decoration: none;
            flex-shrink: 0;
            animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        /* BIGGER LOGO SIZE - EXACT MATCH TO HOMEPAGE */
        .logo-image {
            display: block;
            height: 44px; /* Exactly like homepage */
            width: auto;
            transition: all 0.3s ease;
        }

        /* BIGGER LOGO TEXT - EXACT MATCH TO HOMEPAGE */
        .logo-text {
            font-family: var(--font-display);
            font-size: 1.125rem; /* Exactly like homepage */
            font-weight: 700;
            color: var(--petrol);
            white-space: nowrap;
        }

        /* Logo hover effect */
        .logo:hover .logo-image {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
            margin: 0 auto;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            color: var(--petrol);
            position: relative;
            padding: var(--space-2xs) 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            opacity: 0;
            animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .nav-link:nth-child(1) { animation-delay: 0.5s; }
        .nav-link:nth-child(2) { animation-delay: 0.55s; }
        .nav-link:nth-child(3) { animation-delay: 0.6s; }
        .nav-link:nth-child(4) { animation-delay: 0.65s; }
        .nav-link:nth-child(5) { animation-delay: 0.7s; }

        .nav-link:hover {
            color: var(--petrol-light);
        }

        .nav-link.active {
            color: var(--petrol-light);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--petrol);
        }

        .nav-cta {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white);
            background: var(--petrol);
            padding: var(--space-2xs) var(--space-sm);
            border-radius: 0;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--petrol);
            letter-spacing: 0.5px;
            white-space: nowrap;
            opacity: 0;
            animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--petrol);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--petrol);
            font-size: 1.5rem;
            cursor: pointer;
            padding: var(--space-2xs);
        }

        /* ===== PAGE HEADER - EXACT MATCH TO HOMEPAGE ===== */
        .page-header {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            background: var(--gradient-light);
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }

        .page-header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(34, 113, 128, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(26, 89, 102, 0.08) 0%, transparent 60%);
            z-index: 1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            max-width: 52rem;
            margin: 0 auto;
            text-align: center;
            padding: var(--space-2xl) 0;
        }

        .page-header h1 {
            position: relative;
            padding-bottom: var(--space-lg);
            font-size: clamp(2.25rem, 4vw, 3.5rem);
        }

        .page-header-line {
            position: relative;
            height: 4px;
            width: 120px;
            margin: 0 auto var(--space-lg);
            background: transparent;
            overflow: hidden;
        }

        /* EXACT SAME LINE ANIMATION AS HOME PAGE */
        .page-header-line::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 100%;
            background: var(--gradient-petrol);
            animation: drawLine 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        .page-header-line::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: var(--petrol);
            border-radius: 50%;
            opacity: 0;
            animation: 
                scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards,
                pulseGlow 2s ease-in-out 2.3s infinite;
        }

        /* ===== PORTFOLIO FILTER ===== */
        .portfolio-filter {
            background: var(--white);
            padding: var(--space-xl) 0;
            border-bottom: 1px solid var(--neutral-10);
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: var(--space-sm);
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto;
        }

        .filter-btn {
            padding: var(--space-xs) var(--space-lg);
            background: transparent;
            border: 1px solid var(--neutral-20);
            color: var(--gray);
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .filter-btn:hover {
            border-color: var(--petrol);
            color: var(--petrol);
        }

        .filter-btn.active {
            background: var(--petrol);
            color: var(--white);
            border-color: var(--petrol);
        }

        /* ===== PORTFOLIO GRID - USING HOMEPAGE METHODOLOGY GRID STYLE ===== */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 380px));
            justify-content: center;
            justify-items: center;
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--space-3xl) 0;
        }

        /* ===== CONSISTENT CARD ANIMATION FROM HOMEPAGE ===== */
        .portfolio-item,
        .case-study-featured,
        .testimonial,
        .industry-card,
        .result-item {
            position: relative;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--neutral-20);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            max-width: 380px;
        }

        /* Apply hover animation to ALL card elements - EXACT HOMEPAGE STYLE */
        .portfolio-item:hover,
        .case-study-featured:hover,
        .testimonial:hover,
        .industry-card:hover,
        .result-item:hover {
            transform: translateY(-8px);
            border-color: var(--petrol);
            box-shadow: var(--shadow-elevated);
        }

        /* Apply the top border animation to ALL card elements - EXACT HOMEPAGE STYLE */
        .portfolio-item::before,
        .case-study-featured::before,
        .testimonial::before,
        .industry-card::before,
        .result-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-petrol);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 1;
        }

        .portfolio-item:hover::before,
        .case-study-featured:hover::before,
        .testimonial:hover::before,
        .industry-card:hover::before,
        .result-item:hover::before {
            transform: scaleX(1);
        }

        /* ===== PORTFOLIO ITEM SPECIFIC ===== */
        .portfolio-item {
            height: 400px;
            display: flex;
            flex-direction: column;
        }

        .portfolio-image {
            height: 200px;
            background: var(--neutral-10);
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-petrol);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .portfolio-item:hover .portfolio-image::before {
            opacity: 0.1;
        }

        .image-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--petrol);
            font-size: 3rem;
            font-weight: bold;
            opacity: 0.3;
        }

        .portfolio-category {
            position: absolute;
            top: var(--space-sm);
            right: var(--space-sm);
            background: var(--petrol);
            color: var(--white);
            padding: var(--space-3xs) var(--space-sm);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .portfolio-content {
            padding: var(--space-xl);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .portfolio-stats {
            display: flex;
            gap: var(--space-lg);
            margin: var(--space-sm) 0 var(--space-md);
            padding-top: var(--space-sm);
            border-top: 1px solid var(--neutral-10);
        }

        .stat {
            text-align: center;
            flex: 1;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--petrol);
            font-family: var(--font-display);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray);
            margin-top: var(--space-3xs);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .portfolio-description {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: var(--space-md);
            flex-grow: 1;
        }

        /* ===== CASE STUDY SHOWCASE ===== */
        .case-study-showcase {
            background: var(--neutral-10);
        }

        .case-study-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 380px));
            justify-content: center;
            justify-items: center;
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .case-study-featured {
            overflow: hidden;
            width: 100%;
            max-width: 380px;
        }

        .case-study-image {
            height: 300px;
            background: var(--gradient-petrol);
            position: relative;
            overflow: hidden;
        }

        .case-study-badge {
            position: absolute;
            top: var(--space-md);
            left: var(--space-md);
            background: var(--white);
            color: var(--petrol);
            padding: var(--space-xs) var(--space-md);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .case-study-content {
            padding: var(--space-xl);
            background: var(--white);
            border: 1px solid var(--neutral-20);
            width: 100%;
            max-width: 380px;
        }

        .case-study-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
            margin: var(--space-lg) 0;
            padding: var(--space-md);
            background: var(--neutral-10);
            border: 1px solid var(--neutral-20);
        }

        /* Apply animation to result items too */
        .result-item {
            text-align: center;
            padding: var(--space-md);
            background: var(--white);
            border: 1px solid var(--neutral-20);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .result-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--petrol);
            font-family: var(--font-display);
            line-height: 1;
        }

        .result-label {
            font-size: 0.875rem;
            color: var(--gray);
            margin-top: var(--space-2xs);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--white);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background: var(--white);
            border: 1px solid var(--neutral-20);
            padding: var(--space-xl);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .testimonial-content {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--gray);
            font-style: italic;
            margin-bottom: var(--space-lg);
            position: relative;
        }

        .testimonial-content::before {
            content: '"';
            font-size: 4rem;
            color: var(--petrol);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: var(--font-display);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-petrol);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 1.25rem;
        }

        .author-info h4 {
            text-align: left;
            margin-bottom: var(--space-2xs);
            color: var(--petrol-dark);
        }

        .author-role {
            color: var(--gray);
            font-size: 0.875rem;
        }

        /* ===== INDUSTRY EXPERTISE ===== */
        .industry-expertise {
            background: var(--neutral-10);
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 280px));
            justify-content: center;
            justify-items: center;
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .industry-card {
            text-align: center;
            padding: var(--space-xl);
            background: var(--white);
            border: 1px solid var(--neutral-20);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 280px;
        }

        .industry-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--space-lg);
            border: 2px solid var(--petrol);
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: white;
            transition: all 0.4s ease;
        }

        .industry-card:hover .industry-icon {
            background: var(--gradient-petrol);
            transform: scale(1.1);
        }

        .industry-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--petrol);
            stroke-width: 1.5;
            transition: all 0.4s ease;
        }

        .industry-card:hover .industry-icon svg {
            stroke: white;
            stroke-width: 2.5;
        }

        /* ===== CTA SECTION - EXACT COPY FROM HOMEPAGE ===== */
        .cta {
            background: var(--gradient-petrol-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(230, 230, 230, 0.1) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
        }

        .cta h2 {
            color: var(--white);
        }

        .cta .lead {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: var(--space-2xl);
        }

        .cta-actions {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== BUTTONS - EXACT COPY FROM HOMEPAGE ===== */
        .btn {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            padding: var(--space-md) var(--space-xl);
            border-radius: 0;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            letter-spacing: 0.5px;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            min-width: 12rem;
            justify-content: center;
        }

        .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.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-petrol);
            color: var(--white);
            box-shadow: var(--shadow-subtle);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-elevated);
        }

        .btn-secondary {
            background: transparent;
            color: var(--petrol);
            border: 2px solid var(--petrol);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--petrol);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-subtle);
        }

        .cta .btn-primary {
            background: var(--white);
            color: var(--petrol);
        }

        .cta .btn-primary:hover {
            background: var(--neutral-10);
            color: var(--petrol);
            transform: translateY(-3px);
            box-shadow: var(--shadow-elevated);
        }

        .cta .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta .btn-secondary:hover {
            background: var(--white);
            color: var(--petrol);
            transform: translateY(-3px);
            box-shadow: var(--shadow-subtle);
        }

        /* ===== FOOTER - EXACT COPY FROM HOMEPAGE ===== */
        .footer {
            background: var(--petrol-dark);
            color: white;
            padding: var(--space-xl) 0;
            text-align: center;
        }

        .footer-content {
            max-width: 36rem;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
            font-size: 1rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
        }

        .footer-email {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-email:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== WHATSAPP - EXACT COPY FROM HOMEPAGE (GREEN) ===== */
        .whatsapp {
            position: fixed;
            bottom: var(--space-lg);
            right: var(--space-lg);
            z-index: 1000;
            opacity: 0;
            animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            background: var(--gradient-whatsapp);
            color: var(--white);
            padding: var(--space-xs) var(--space-md);
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 
                0 4px 12px rgba(37, 211, 102, 0.25),
                0 0 0 1px rgba(37, 211, 102, 0.1);
            border-radius: 2px;
            animation: pulse-whatsapp 2s ease-in-out 2.5s infinite;
        }

        .whatsapp-link:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 20px 40px rgba(37, 211, 102, 0.3),
                0 0 0 1px rgba(37, 211, 102, 0.15);
            background: linear-gradient(135deg, var(--whatsapp-green-dark) 0%, var(--whatsapp-green) 100%);
        }

        /* ===== MOBILE RESPONSIVENESS FIXES - LIKE HOMEPAGE ===== */
        @media (max-width: 1024px) {
            .nav-links {
                gap: var(--space-lg);
            }
            
            .portfolio-grid,
            .case-study-grid {
                grid-template-columns: repeat(2, minmax(0, 380px));
            }
            
            .industry-grid {
                grid-template-columns: repeat(2, minmax(0, 380px));
            }
            
            .case-study-results {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .btn {
                min-width: 10rem;
                padding: var(--space-md) var(--space-lg);
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-xl: 3rem;
                --space-2xl: 4rem;
                --space-3xl: 5rem;
            }
            
            /* NAVIGATION - EXACT HOME PAGE STYLING */
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                color: var(--petrol);
                font-size: 1.5rem;
                cursor: pointer;
                padding: var(--space-2xs);
            }
            
            /* LOGO - EXACT HOME PAGE SIZES */
            .logo-image {
                height: 36px; /* Exactly like homepage mobile */
            }
            
            .logo-text {
                font-size: 1rem; /* Exactly like homepage mobile */
            }
            
            /* PAGE HEADER ADJUSTMENTS - EXACT MATCH TO HOMEPAGE */
            .page-header {
                min-height: 60vh;
                padding: 4rem 0 2rem;
                margin-top: 60px;
            }
            
            .page-header h1 {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
            }
            
            /* PORTFOLIO GRID - SINGLE COLUMN ON MOBILE LIKE HOMEPAGE */
            .portfolio-grid,
            .case-study-grid,
            .industry-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
                padding: 0 var(--space-md);
            }
            
            /* ALL CARDS - FULL WIDTH ON MOBILE */
            .portfolio-item,
            .case-study-featured,
            .case-study-content,
            .industry-card {
                max-width: 100%;
                width: 100%;
            }
            
            /* PORTFOLIO ITEM HEIGHT - ADJUST FOR MOBILE */
            .portfolio-item {
                height: auto;
                min-height: 380px;
            }
            
            .portfolio-image {
                height: 180px;
            }
            
            /* FILTER BUTTONS - BETTER MOBILE LAYOUT */
            .filter-buttons {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: var(--space-xs);
                padding: 0 var(--space-sm);
            }
            
            .filter-btn {
                padding: var(--space-xs) var(--space-md);
                font-size: 0.8rem;
                flex: 1;
                min-width: 120px;
                max-width: 140px;
            }
            
            /* CASE STUDY RESULTS - SINGLE COLUMN ON MOBILE */
            .case-study-results {
                grid-template-columns: 1fr;
                gap: var(--space-sm);
            }
            
            /* PORTFOLIO STATS - BETTER MOBILE LAYOUT */
            .portfolio-stats {
                flex-direction: row;
                gap: var(--space-sm);
            }
            
            .stat {
                padding: 0;
            }
            
            .stat-value {
                font-size: 1.25rem;
            }
            
            /* CASE STUDY IMAGE - ADJUST HEIGHT FOR MOBILE */
            .case-study-image {
                height: 200px;
            }
            
            /* BUTTONS - FULL WIDTH ON MOBILE */
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 100%;
                padding: var(--space-md) var(--space-lg);
            }
            
            /* SECTIONS - ADJUST PADDING */
            .section {
                padding: var(--space-2xl) 0;
            }
            
            /* WHATSAPP - EXACT HOME PAGE STYLING */
            .whatsapp-link span:last-child {
                display: none;
            }
            
            .whatsapp-link {
                padding: var(--space-sm);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--gradient-whatsapp);
            }
        }

        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        @media (max-width: 480px) {
            /* LOGO - MATCH HOMEPAGE EXACTLY */
            .logo-image {
                height: 32px; /* Match homepage exactly */
            }
            
            .logo-text {
                font-size: 0.9rem; /* Match homepage exactly */
            }
            
            /* PAGE HEADER - MATCH HOMEPAGE */
            .page-header {
                padding: 3rem 0 1.5rem;
            }
            
            .page-header h1 {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
            }
            
            /* PORTFOLIO ITEMS - BETTER MOBILE SIZING */
            .portfolio-item {
                min-height: 360px;
            }
            
            .portfolio-image {
                height: 160px;
            }
            
            .portfolio-content {
                padding: var(--space-lg);
            }
            
            /* CASE STUDY CONTENT - BETTER MOBILE SIZING */
            .case-study-content {
                padding: var(--space-lg);
            }
            
            .case-study-image {
                height: 180px;
            }
            
            /* FILTER BUTTONS - SINGLE COLUMN ON VERY SMALL SCREENS */
            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                max-width: 200px;
            }
            
            /* PORTFOLIO STATS - STACK ON VERY SMALL SCREENS */
            .portfolio-stats {
                flex-direction: column;
                gap: var(--space-sm);
            }
            
            .stat {
                padding: var(--space-xs) 0;
            }
        }

        @media (max-width: 360px) {
            .logo-text {
                font-size: 0.8rem; /* Match homepage exactly */
            }
            
            .logo-image {
                height: 28px; /* Match homepage exactly */
            }
            
            .portfolio-item {
                min-height: 340px;
            }
            
            .portfolio-image {
                height: 140px;
            }
            
            .case-study-image {
                height: 160px;
            }
            
            .filter-btn {
                max-width: 180px;
                font-size: 0.75rem;
                padding: var(--space-xs) var(--space-sm);
            }
        }
