/* ==========================================================================
   EUPRAXIA CONSULTING - PREMIUM CRO WEBSITE STYLES
   Color Palette: Navy Blue (#0A2342), Teal (#00B4D8), White (#FFFFFF)
   ========================================================================== */

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

:root {
    /* Colors */
    --primary-navy: #0A2342;
    --primary-teal: #00B4D8;
    --accent-teal-light: #48CAE4;
    --accent-teal-dark: #0096C7;
    --white: #FFFFFF;
    --light-gray: #F4F6F9;
    --medium-gray: #E8ECF0;
    --text-dark: #1A2332;
    --text-gray: #5A6C7D;
    --text-light: #8B9BAC;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 35, 66, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 35, 66, 0.16);
    --shadow-xl: 0 16px 48px rgba(10, 35, 66, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-teal-dark);
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.container-wide {
    max-width: 1400px;
}

.container-narrow {
    max-width: 900px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-teal-light) 0%, var(--primary-teal) 100%);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-teal);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-teal-light) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0;
}

.logo-accent {
    color: var(--primary-teal);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-navy);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-normal);
}

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

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

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

/* ==========================================================================
   PAGE ROUTING
   ========================================================================== */

.page {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
}

.page.active-page {
    display: block;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    color: var(--white);
    padding: 4rem 0;
    margin-bottom: var(--spacing-xl);
}

.page-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--accent-teal-light);
    max-width: 800px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 50%, #2a4a6c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(72, 202, 228, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 35, 66, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-teal-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--accent-teal-light);
}

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

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
    background: var(--white);
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

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

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ==========================================================================
   INDUSTRIES PREVIEW
   ========================================================================== */

.industries-preview {
    padding: var(--spacing-xxl) 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.industry-card i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.125rem;
    margin: 0;
}

/* ==========================================================================
   SERVICES OVERVIEW
   ========================================================================== */

.services-overview {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why-choose {
    padding: var(--spacing-xxl) 0;
    background: var(--light-gray);
}

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

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.why-card i {
    font-size: 3.5rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.service-detail {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--light-gray);
}

.service-detail-header i {
    font-size: 3rem;
    color: var(--primary-teal);
}

.service-detail-header h2 {
    margin: 0;
    font-size: 2rem;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-teal);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.feature-item p {
    margin: 0;
    color: var(--text-gray);
}

/* Service Subsections */
.service-subsection {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%);
    border-left: 4px solid var(--primary-teal);
    border-radius: 8px;
}

.service-subsection h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-subsection h3 i {
    color: var(--primary-teal);
    font-size: 1.75rem;
}

.subsection-intro {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* RFI Cards Grid */
.rfi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.rfi-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.rfi-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.rfi-card h4 {
    font-size: 1.125rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rfi-card h4 i {
    color: var(--primary-teal);
}

.rfi-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rfi-card ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.6;
}

.rfi-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

/* Country Expertise Grid */
.country-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.country-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
    transition: all var(--transition-normal);
    text-align: center;
}

.country-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.country-card h4 {
    font-size: 1.125rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.country-card p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Service Highlight Box */
.service-highlight {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
}

.service-highlight i {
    font-size: 3rem;
    color: var(--accent-teal-light);
    flex-shrink: 0;
}

.service-highlight h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

/* PDF Download Section */
.pdf-download-section {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(72, 202, 228, 0.05) 100%);
    border: 2px dashed var(--primary-teal);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0 3rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-teal-light) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.btn-download i {
    font-size: 1.5rem;
}

.pdf-note {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Collapsible Sections */
.collapsible-section {
    margin: 2rem 0;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.collapsible-section:hover {
    border-color: var(--primary-teal);
}

.collapsible-header {
    width: 100%;
    background: var(--light-gray);
    border: none;
    padding: 1.5rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
}

.collapsible-header:hover {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(72, 202, 228, 0.1) 100%);
}

.collapsible-header.active {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal-dark) 100%);
    color: var(--white);
}

.collapsible-header.active i {
    color: var(--white);
}

.collapsible-header > i:first-child {
    font-size: 1.5rem;
    color: var(--primary-teal);
}

.collapsible-header.active > i:first-child {
    color: var(--white);
}

.collapsible-header span {
    flex: 1;
}

.collapse-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
}

.collapsible-header.active .collapse-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: var(--white);
}

.collapsible-content.active {
    max-height: 10000px;
    transition: max-height 0.8s ease-in;
}

.collapsible-content > .subsection-intro,
.collapsible-content > p {
    padding: 1.5rem 2rem 0;
    margin-bottom: 1rem;
}

.collapsible-content .service-features,
.collapsible-content .rfi-grid,
.collapsible-content .country-expertise-grid,
.collapsible-content .cmc-deliverables-grid {
    padding: 0 2rem 2rem;
}

/* Global Offices Grid with Maps */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0 2rem;
}

.office-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.office-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.office-flag {
    font-size: 2rem;
}

.office-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
}

.office-address {
    margin-bottom: 1.5rem;
}

.office-address p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.office-address strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 0.5rem;
}

.office-map {
    margin-top: 1rem;
}

.office-map iframe {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.map-link:hover {
    color: var(--accent-teal-dark);
    gap: 0.75rem;
}

.map-link i {
    font-size: 0.875rem;
}

.contact-item.full-width {
    grid-column: 1 / -1;
}

/* CMC Deliverables Grid */
.cmc-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.cmc-deliverable-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
    text-align: center;
    transition: all var(--transition-normal);
}

.cmc-deliverable-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.cmc-deliverable-card i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    display: block;
}

.cmc-deliverable-card h4 {
    font-size: 1.125rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.cmc-deliverable-card p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   INDUSTRIES PAGE
   ========================================================================== */

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

.industry-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.industry-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-detail-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.industry-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.industry-detail-card > p {
    margin-bottom: 1.5rem;
}

.industry-services {
    list-style: none;
    padding: 0;
}

.industry-services li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-gray);
}

.industry-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

/* ==========================================================================
   WHY EUPRAXIA PAGE
   ========================================================================== */

.why-detail-section {
    display: grid;
    gap: 3rem;
}

.why-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.why-detail-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.why-detail-icon i {
    font-size: 3rem;
    color: var(--white);
}

.why-detail-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.why-detail-card > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-benefits {
    list-style: none;
    padding: 0;
}

.why-benefits li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-gray);
}

.why-benefits i {
    color: var(--primary-teal);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    color: var(--white);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--primary-teal);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-gray);
}

.office-location {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.office-location:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.office-location strong {
    display: block;
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-location p {
    line-height: 1.6;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.contact-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.contact-cta h4 {
    margin-bottom: 1rem;
}

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

.contact-cta li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.contact-cta i {
    color: var(--primary-teal);
    flex-shrink: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.form-message {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.form-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-message h4 {
    margin-bottom: 0.5rem;
}

.form-message p {
    margin: 0;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
}

.success-message i {
    color: #28a745;
}

.error-message {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.error-message i {
    color: #dc3545;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--accent-teal-light);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-teal-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-teal-light);
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-teal);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-teal-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: start;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: auto;
        min-height: 600px;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .industries-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .rfi-grid,
    .country-expertise-grid,
    .cmc-deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .service-subsection {
        padding: 1.5rem;
    }
    
    .pdf-download-section {
        padding: 1.5rem;
    }
    
    .btn-download {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-download i {
        font-size: 2rem;
    }
    
    .collapsible-header {
        padding: 1rem 1.5rem;
        font-size: 1.0625rem;
    }
    
    .collapsible-header > i:first-child {
        font-size: 1.25rem;
    }
    
    .collapsible-content .service-features,
    .collapsible-content .rfi-grid,
    .collapsible-content .country-expertise-grid,
    .collapsible-content .cmc-deliverables-grid {
        padding: 0 1rem 1.5rem;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        padding: 1.25rem;
    }
    
    .office-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .office-flag {
        font-size: 2.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .cta-banner {
        padding: 3rem 0;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .office-location {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .office-location strong {
        font-size: 0.95rem;
    }
    
    .why-detail-card {
        padding: 2rem;
    }
}