/*
Theme Name: Mit Keda Engineering
Theme URI: https://mitkeda.com
Description: A minimal, clean, modern WordPress theme for Mit Keda Engineering Limited based on Stitch design
Version: 1.0.2
Author: Opeyemi Oladejobi Akinkunmi
Author URI: https://eZeroAndOne.io
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mitkeda
Tags: business, engineering, corporate, modern, responsive, custom-post-types
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a4471;
    --secondary-color: #878787;
    --accent-color: #f59e0b;
    --text-primary: #0e151b;
    --text-secondary: #878787;
    --background-light: #f6f7f8;
    --background-dark: #101a22;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 2rem;
    --border-radius-lg: 2rem;
    --border-radius-xl: 2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Material Symbols Configuration */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'liga';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 238, 243, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Homepage only - transparent header */
.home .site-header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.home .site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 238, 243, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    white-space: nowrap;
    pointer-events: auto;
}

.header-content > * {
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.015em;
    transition: var(--transition);
}

/* Homepage only - white text logo */
.home .logo {
    color: var(--white);
}

.home .site-header.scrolled .logo {
    color: var(--primary-color);
}

.logo .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

/* Homepage only - white icon */
.home .logo .material-symbols-outlined {
    color: var(--white);
}

.home .site-header.scrolled .logo .material-symbols-outlined {
    color: var(--primary-color);
}

.logo img {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.custom-logo-link img {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

/* Dual Logo Switching */
.custom-logo-link {
    position: relative;
}

/* Default: Show white/dark logo (for white header background) */
.logo-transparent {
    display: none !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-white {
    display: block !important;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Homepage only - show transparent/light logo */
.home .logo-transparent {
    display: block !important;
    opacity: 1;
}

.home .logo-white {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Homepage scrolled - switch to white/dark logo */
.home .site-header.scrolled .logo-transparent {
    opacity: 0;
}

.home .site-header.scrolled .logo-white {
    opacity: 1;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        flex: 1;
        justify-content: flex-end;
        gap: 2rem;
        align-items: center;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
}

/* Homepage only - white text */
.home .main-nav a {
    color: var(--white);
}

.home .site-header.scrolled .main-nav a {
    color: var(--text-primary);
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Homepage only - white hover */
.home .main-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.home .site-header.scrolled .main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.current {
    color: var(--primary-color);
    font-weight: 700;
}

/* Homepage only - white current */
.home .main-nav a.current {
    color: var(--white);
}

.home .site-header.scrolled .main-nav a.current {
    color: var(--primary-color);
}

.main-nav a.current::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Homepage only - white underline */
.home .main-nav a.current::after {
    background: var(--white);
}

.home .site-header.scrolled .main-nav a.current::after {
    background: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-quote {
    display: none;
}

@media (min-width: 768px) {
    .btn-quote {
        display: flex;
        min-width: 120px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: var(--border-radius);
        height: 2.5rem;
        padding: 0 1.25rem;
        background: var(--primary-color);
        color: #ffffff !important;
        border: 1px solid var(--primary-color);
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.015em;
        transition: var(--transition);
        text-decoration: none;
    }
    
    /* Homepage only - transparent button with white text */
    .home .btn-quote {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Homepage scrolled - blue button with white text */
    .home .site-header.scrolled .btn-quote,
    .home .site-header.scrolled .btn-quote:link,
    .home .site-header.scrolled .btn-quote:visited,
    .home .site-header.scrolled a.btn-quote {
        background: var(--primary-color) !important;
        color: #ffffff !important;
        border: 1px solid var(--primary-color) !important;
    }
    
    .btn-quote:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        background: rgba(10, 68, 113, 0.9);
        color: #ffffff !important;
    }
    
    /* Homepage only - transparent button hover */
    .home .btn-quote:hover {
        background: rgba(255, 255, 255, 0.3);
        color: #ffffff !important;
    }
    
    /* Homepage scrolled - blue button hover */
    .home .site-header.scrolled .btn-quote:hover,
    .home .site-header.scrolled .btn-quote:hover:link,
    .home .site-header.scrolled .btn-quote:hover:visited,
    .home .site-header.scrolled a.btn-quote:hover {
        background: rgba(10, 68, 113, 0.9) !important;
        color: #ffffff !important;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0;
    border-radius: 50%;
    transition: var(--transition);
}

/* Homepage only - white/transparent button */
.home .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.home .site-header.scrolled .mobile-menu-toggle {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.home .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 238, 243, 0.8);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.main-nav.active ul {
    flex-direction: column;
    gap: 1rem;
}

.main-nav.active a {
    color: var(--text-primary) !important;
}

.main-nav.active a:hover {
    color: var(--primary-color) !important;
}

.main-nav.active .header-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(231, 238, 243, 0.8);
}

.main-nav.active .btn-quote {
    display: flex;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url('images/heroBG.jpg');
}

/* Fix for mobile devices where background-attachment: fixed can cause issues */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 2.5rem;
    }
}

.hero-background {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    min-height: 60vh;
}

@media (min-width: 480px) {
    .hero-background {
        gap: 2.5rem;
        padding: 3rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.033em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 480px) {
    .hero p {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 160px;
    height: 3rem;
    padding: 0 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: normal;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: rgba(10, 68, 113, 0.9);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(50px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-divider {
    height: 4px;
    width: 5rem;
    background: var(--accent-color);
    border-radius: 9999px;
    margin: 1rem auto;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(208, 221, 231, 0.8);
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--border-radius);
    background: rgba(10, 68, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.value-icon .material-symbols-outlined {
    font-size: 1.875rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Grid */
.services-slider-wrapper {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

.services-grid {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(208, 221, 231, 0.8);
    background: var(--white);
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    flex: 0 0 calc(25% - 0.75rem);
    min-width: calc(25% - 0.75rem);
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 0.667rem);
        min-width: calc(33.333% - 0.667rem);
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.service-card h3 {
    font-size: 1.125rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    transition: var(--transition);
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 5.25rem;
}

.service-card:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.service-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

/* Projects Grid */
.projects-preview {
    background: var(--primary-color);
    padding: 5rem 0;
}

.projects-preview .section-title {
    color: var(--white);
}

.projects-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.projects-preview .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.projects-preview .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.projects-preview .btn-primary .material-symbols-outlined {
    color: var(--primary-color);
}

.projects-slider-wrapper {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.projects-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.project-card {
    background: var(--background-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(208, 221, 231, 0.8);
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.project-card-fallback-1 {
    background-image: url('images/mitkeda_image_1.jpg');
}

.project-card-fallback-2 {
    background-image: url('images/mitkeda_image_2.jpg');
}

.project-card-fallback-3 {
    background-image: url('images/mitkeda_image_3.jpg');
}

.project-card-fallback-4 {
    background-image: url('images/mitkeda_image_1.jpg');
}

@media (max-width: 1024px) {
    .project-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .project-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(10, 68, 113, 0.9) 0%, rgba(10, 68, 113, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.project-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: flex-end;
    color: var(--white);
}

.project-content h3 {
    font-size: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.project-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.project-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-content {
    flex: 1;
    max-width: 500px;
}

.cta-section h2 {
    font-size: 1.875rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-section p {
        margin-bottom: 0;
    }
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .cta-buttons-wrapper {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cta-buttons-wrapper {
        width: auto;
    }
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-section h3 {
    font-size: 1.125rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
    }
}

.footer-logo .material-symbols-outlined {
    font-size: 2rem;
    color: var(--white);
}

.footer-logo span {
    font-size: 1.25rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .footer-contact-item {
        justify-content: center;
    }
}

.footer-contact-item .material-symbols-outlined {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.footer-bottom-left {
    flex: 1;
}

@media (max-width: 768px) {
    .footer-bottom-left {
        width: 100%;
    }
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        width: 100%;
    }
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.parallax-element {
    will-change: transform;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--background-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.bg-light {
    background: var(--background-light);
}

.bg-white {
    background: var(--white);
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }


/* CRITICAL OVERRIDES - DO NOT REMOVE */
/* Force white text on CTA button when header is scrolled */
.site-header.scrolled .btn-quote {
    background-color: #0a4471 !important;
    color: #ffffff !important;
    border-color: #0a4471 !important;
}

.site-header.scrolled a.btn-quote {
    color: #ffffff !important;
}

.site-header.scrolled .btn-quote:hover {
    background-color: rgba(10, 68, 113, 0.9) !important;
    color: #ffffff !important;
}

/* Ensure Material Symbols icons display correctly */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* FINAL OVERRIDE - Button text must be white when scrolled */
.site-header.scrolled #header-cta-btn {
    background-color: #0a4471 !important;
    color: #ffffff !important;
    border-color: #0a4471 !important;
}

.site-header.scrolled #header-cta-btn:hover {
    background-color: rgba(10, 68, 113, 0.9) !important;
    color: #ffffff !important;
}

/* Prevent nav link styles from affecting button */
.site-header.scrolled .main-nav a:not(#header-cta-btn) {
    color: var(--text-primary) !important;
}

/* Force button text to always be white on blue background */
.btn-quote,
#header-cta-btn,
a.btn-quote {
    color: #ffffff !important;
}

.site-header .btn-quote,
.site-header #header-cta-btn,
.site-header a.btn-quote {
    color: #ffffff !important;
}

/* Homepage transparent header - white text on transparent button */
.home .site-header:not(.scrolled) .btn-quote,
.home .site-header:not(.scrolled) #header-cta-btn {
    color: #ffffff !important;
}


/* About Us Section */
.about-section {
    background: var(--background-light);
    padding: 0 0 5rem 0;
    margin-top: 0;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    padding-top: 8rem;
}

@media (min-width: 768px) {
    .about-top {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding-top: 10rem;
    }
}

.about-headline {
    display: flex;
    align-items: flex-start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 3rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.about-title .highlight {
    color: var(--accent-color);
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: fit-content;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-dark:hover {
    background: rgba(10, 68, 113, 0.9);
    transform: translateX(5px);
}

.btn-dark .material-symbols-outlined {
    font-size: 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(208, 221, 231, 0.5);
    align-items: center;
}

@media (min-width: 640px) {
    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    order: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    order: 2;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 4rem;
    }
}

.stat-sublabel {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    order: 3;
}




/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Project Cards */
.project-image .material-symbols-outlined {
    font-size: 4rem;
    color: var(--primary-color);
}

.project-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(208, 221, 231, 0.5);
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Insights Section */
.insights-section {
    background: var(--primary-color);
    padding: 5rem 0;
}

.insights-section .section-title {
    color: var(--white);
}

.insights-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.insights-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.insights-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.insights-section .btn-primary .material-symbols-outlined {
    color: var(--primary-color);
}

.insights-slider-wrapper {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.insights-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.insight-card {
    background: var(--background-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(208, 221, 231, 0.8);
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .insight-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .insight-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.insight-card:hover .insight-overlay {
    background: linear-gradient(to top, rgba(10, 68, 113, 0.9) 0%, rgba(10, 68, 113, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.insight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: var(--transition);
}

.insight-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.insight-icon .material-symbols-outlined {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

.insight-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: flex-end;
    color: var(--white);
}

.insight-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.insight-content h3 {
    font-size: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.insight-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Preview Section */
.contact-preview {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-preview .section-title {
    color: var(--white);
}

.contact-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.location-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.contact-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-cta-wrapper {
        justify-content: center;
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Services Dark Section */
.services-dark {
    background: var(--primary-color);
    padding: 5rem 0;
}

.services-dark .section-title {
    color: var(--white);
}

.services-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-dark .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-dark .service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.services-dark .service-card h3 {
    color: var(--white);
}

.services-dark .service-card p {
    color: rgba(255, 255, 255, 0.7);
}

.services-dark .service-card:hover h3,
.services-dark .service-card:hover p {
    color: var(--white);
}

.services-dark .service-icon {
    color: var(--white);
}

.services-dark .service-card:hover .service-icon {
    color: var(--white);
}


/* Services Dark Section - Button Override */
.services-dark .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
}

.services-dark .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.services-dark .btn-primary .material-symbols-outlined {
    background: transparent;
    color: var(--primary-color);
    border-radius: 0;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}


/* Testimonials Section */
.testimonials-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .testimonials-header {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.testimonials-title-wrapper h2 {
    margin-bottom: 0;
    line-height: 1.2;
}

.testimonials-title-wrapper .highlight {
    color: var(--primary-color);
    display: block;
}

.testimonials-intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonials-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    height: 400px;
}

.testimonial-card-1 {
    background-image: url('images/mitkeda_image_5.jpg');
}

.testimonial-card-2 {
    background-image: url('images/mitkeda_image_2.jpg');
}

.testimonial-card-3 {
    background-image: url('images/mitkeda_image_1.jpg');
}

.testimonial-card:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: flex-end;
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    color: var(--primary-color);
    background: var(--white);
    border-radius: 50%;
    padding: 0.5rem;
}

.quote-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--white);
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.author-role {
    font-size: 0.8125rem !important;
    color: var(--accent-color) !important;
    font-weight: 600;
}


/* Team Section */
.team-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.team-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .team-header {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.team-title-wrapper h2 {
    margin-bottom: 0;
    line-height: 1.2;
}

.team-title-wrapper .highlight {
    color: var(--accent-color);
}

.team-intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    min-height: 500px;
    filter: grayscale(100%);
    text-decoration: none;
    cursor: pointer;
}

.team-member-1 {
    background: var(--background-light);
}

.team-member-2 {
    background: var(--accent-color);
}

.team-member-3 {
    background: var(--white);
}

.team-member-cta {
    background: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    min-height: 500px;
    filter: none;
}

.team-member:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
    filter: grayscale(0%);
    z-index: 10;
}

.team-member:hover .team-member-info {
    background: var(--primary-color);
}

.team-member:hover .team-member-role,
.team-member:hover .team-member-name,
.team-member:hover .team-member-bio {
    color: var(--white);
}

.team-member-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-member-image .material-symbols-outlined {
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.1);
}

.team-member-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    transition: var(--transition);
}

.team-member-role {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: var(--transition);
}

.team-member-2 .team-member-role {
    color: rgba(255, 255, 255, 0.9);
}

.team-member-name {
    font-size: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    transition: var(--transition);
}

.team-member-2 .team-member-name {
    color: var(--white);
}

.team-member-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    transition: var(--transition);
}

.team-member-2 .team-member-bio {
    color: rgba(255, 255, 255, 0.9);
}

.team-cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.team-cta-content h3 {
    font-size: 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.team-cta-link {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.team-cta-link:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}

.team-cta-link .material-symbols-outlined {
    font-size: 2rem;
    color: var(--text-primary);
}

.team-cta-link:hover .material-symbols-outlined {
    color: var(--white);
}

.team-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}


/* Single Team Member Page */
.single-team .team-hero {
    padding: 8rem 0 4rem;
    background: var(--background-light);
}

.team-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .team-hero-content {
        grid-template-columns: 400px 1fr;
        gap: 4rem;
    }
}

.team-hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    background: var(--background-light);
}

.team-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.team-hero-image .material-symbols-outlined {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.1);
}

.team-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-hero-role {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.team-hero-name {
    font-size: 3rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .team-hero-name {
        font-size: 2rem;
    }
}

.team-hero-excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.team-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(208, 221, 231, 0.5);
}

.team-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.team-contact-item:hover {
    color: var(--primary-color);
}

.team-contact-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.team-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0rem;
}

.team-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.team-social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.team-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.team-content-section {
    padding: 4rem 0;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.team-content h2,
.team-content h3,
.team-content h4 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.team-content h2 {
    font-size: 2rem;
}

.team-content h3 {
    font-size: 1.5rem;
}

.team-content ul,
.team-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.team-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.team-navigation {
    padding: 2rem 0 4rem;
    text-align: center;
}

.team-navigation .btn {
    display: inline-flex;
}


/* Contact & Newsletter Section */
.contact-newsletter-section {
    background: var(--white);
    padding: 3rem 0;
    display: flex;
    align-items: center;
    opacity: 1 !important;
    transform: none !important;
}

@media (min-width: 768px) {
    .contact-newsletter-section {
        max-height: 100vh;
        overflow: hidden;
    }
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .container-full {
        padding: 0 4rem;
    }
}

.contact-newsletter-wrapper {
    width: 100%;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header-centered .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header-centered .section-subtitle {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-header-centered .section-title {
        font-size: 1.75rem;
    }
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .forms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.form-card {
    background: var(--background-light);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(208, 221, 231, 0.8);
    transition: var(--transition);
}

.form-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.form-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.form-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto;
}

.form-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.form-card-header h3 {
    font-size: 1.25rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.form-card-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.contact-form,
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-input {
    height: 2.75rem;
    padding: 0 1rem;
    border: 2px solid rgba(208, 221, 231, 0.8);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 68, 113, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%230a4471' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-select::-ms-expand {
    display: none;
}

.form-select option {
    padding: 0.5rem;
    background: var(--white);
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 68, 113, 0.1);
}

.form-textarea {
    height: auto;
    padding: 0.75rem 1rem;
    resize: vertical;
    min-height: 4rem;
}

.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding: 0 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: 'Inter Tight', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.form-button:hover {
    background: rgba(10, 68, 113, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.form-button .material-symbols-outlined {
    font-size: 1.125rem;
}

.form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.benefit-item .material-symbols-outlined {
    font-size: 1.125rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-privacy {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy .material-symbols-outlined {
    font-size: 0.875rem;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: center;
}

.form-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}


/* Services Archive Page */
.page-header {
    background: var(--primary-color);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.services-archive {
    padding: 5rem 0;
}

.services-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-archive-card {
    background: var(--background-light);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(208, 221, 231, 0.8);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-archive-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-archive-card:hover .service-archive-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.service-archive-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-archive-icon .material-symbols-outlined {
    font-size: 2rem;
}

.service-archive-card h2 {
    font-size: 1.75rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-archive-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-archive-content p {
    margin-bottom: 1rem;
}

.service-archive-content ul,
.service-archive-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-archive-content li {
    margin-bottom: 0.5rem;
}

/* Quote Section on Services Page */
.quote-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-header h2 {
    font-size: 2.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.quote-form-full {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(208, 221, 231, 0.8);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-form-full label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}


/* Single Service Page */
.service-header {
    background: var(--primary-color);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.service-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-header-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--border-radius);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 2rem;
}

.service-header-icon .material-symbols-outlined {
    font-size: 3rem;
}

.service-title {
    font-size: 3rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2rem;
    }
}

.service-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.service-content-section {
    padding: 5rem 0;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.service-content h2,
.service-content h3,
.service-content h4 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content h2 {
    font-size: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
}

.service-content ul,
.service-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.service-cta {
    background: var(--background-light);
    padding: 5rem 0;
}

.cta-box {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(208, 221, 231, 0.8);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-box {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.cta-content h2 {
    font-size: 1.75rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-shrink: 0;
    }
}


/* About Page Styles */
.about-hero {
    background: var(--primary-color);
    padding: 10rem 0 5rem;
    text-align: center;
    color: var(--white);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero .page-title {
    font-size: 3rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .about-hero .page-title {
        font-size: 2rem;
    }
}

.about-hero .page-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* About Intro Section */
.about-intro {
    padding: 5rem 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-intro-text h2 {
    font-size: 2.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-intro-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-intro-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Vision & Mission Section */
.vision-mission-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.vision-card,
.mission-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(208, 221, 231, 0.8);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.vm-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.vm-icon .material-symbols-outlined {
    font-size: 2rem;
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.75rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Core Values Section */
.core-values-section {
    padding: 5rem 0;
}

.core-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .core-values-section .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .core-values-section .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Technology & Innovation Section */
.tech-innovation-section {
    background: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.tech-innovation-content {
    max-width: 800px;
    margin: 0 auto;
}

.tech-innovation-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 2rem;
}

.tech-innovation-icon .material-symbols-outlined {
    font-size: 3rem;
}

.tech-innovation-content h2 {
    font-size: 2.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.tech-innovation-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Leadership Section */
.leadership-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.leader-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(208, 221, 231, 0.8);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.leader-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--background-light);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leader-info {
    padding: 2rem;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Company Details Section */
.company-details-section {
    padding: 5rem 0;
}

.company-details-card {
    background: var(--background-light);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    border: 1px solid rgba(208, 221, 231, 0.8);
}

.company-details-card h2 {
    font-size: 2.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.company-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .company-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(208, 221, 231, 0.8);
}

.detail-item .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
}

.about-cta-section .cta-section {
    background: var(--primary-color);
}

.about-cta-section .cta-content h2,
.about-cta-section .cta-content p {
    color: var(--white);
}

.about-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}


/* Contact Page Styles */
.contact-hero {
    background: var(--primary-color);
    padding: 10rem 0 5rem;
    text-align: center;
    color: var(--white);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .page-title {
    font-size: 3rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-hero .page-title {
        font-size: 2rem;
    }
}

.contact-hero .page-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }
}

/* Contact Information */
.contact-info-wrapper h2 {
    font-size: 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-wrapper > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.contact-info-content h4 {
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--accent-color);
}

/* Contact Social */
.contact-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(208, 221, 231, 0.5);
}

.contact-social h4 {
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-page-form .form-button {
    width: fit-content;
}

/* Business Hours Section */
.business-hours-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.business-hours-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(208, 221, 231, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.business-hours-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 2rem;
}

.business-hours-icon .material-symbols-outlined {
    font-size: 3rem;
}

.business-hours-card h2 {
    font-size: 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.business-hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .business-hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hours-item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(208, 221, 231, 0.8);
}

.hours-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hours-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}


/* Blog Archive Page Styles */
.blog-archive-section {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(208, 221, 231, 0.8);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--background-light);
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
}

.blog-card-image-fallback .material-symbols-outlined {
    font-size: 4rem;
    color: var(--white);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.blog-date .material-symbols-outlined {
    font-size: 1rem;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-title {
    font-size: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.blog-read-more:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

.blog-read-more .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Pagination */
.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: var(--border-radius);
    background: var(--white);
    border: 1px solid rgba(208, 221, 231, 0.8);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-numbers:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

.pagination .page-numbers.dots:hover {
    background: transparent;
    color: var(--text-primary);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 5rem 2rem;
}

.no-posts .material-symbols-outlined {
    font-size: 5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.no-posts h2 {
    font-size: 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-posts p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}


/* Enhanced Subtle Animations */
.service-card,
.value-card,
.project-card,
.team-member,
.blog-card,
.form-card,
.vision-card,
.mission-card,
.leader-card {
    will-change: transform;
}

/* Smooth transitions for interactive elements */
.btn,
.form-button,
.service-card,
.value-card,
.project-card,
.team-member,
.blog-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon animations */
.material-symbols-outlined {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form input animations */
.form-input,
.form-textarea,
.form-select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    transform: scale(1.02);
}

/* Social link animations */
.footer-social-link,
.contact-social-link,
.team-social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover lift effect */
.service-card:hover,
.value-card:hover,
.blog-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Button ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn::before,
.form-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before,
.form-button:active::before {
    width: 300px;
    height: 300px;
    opacity: 0;
    transition: 0s;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease-in-out;
}

img:not([src]) {
    opacity: 0;
}

/* Pulse animation for icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-icon:hover .material-symbols-outlined,
.value-icon:hover .material-symbols-outlined {
    animation: pulse 1s ease-in-out infinite;
}

/* Gradient animation for CTA sections */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-section,
.page-header,
.hero {
    background-size: 200% 200%;
}

/* Shimmer effect for loading states */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-size: 1000px 100%;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-element {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(10, 68, 113, 0.3);
    z-index: 999;
}

.back-to-top:hover {
    background: rgba(10, 68, 113, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 68, 113, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top .material-symbols-outlined {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .back-to-top .material-symbols-outlined {
        font-size: 1.25rem;
    }
}
