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

:root {
    /* Magazine-inspired color palette */
    --primary-color: #2C3E50;
    --secondary-color: #C9A961;
    --accent-color: #8B4513;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --background-light: #FAF9F6;
    --background-cream: #F5F2ED;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-description {
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.03) 35px,
            rgba(255,255,255,.03) 70px
        );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

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

.hero-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #b8995a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* ================================
   About Section
   ================================ */
.about-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    background-color: var(--background-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: all var(--transition-base);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-card p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.75;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

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

.stat-number {
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: var(--font-serif);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   Services Section
   ================================ */
.services-section {
    padding: var(--section-padding);
    background-color: var(--background-cream);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Reporting styles removed - section deleted from HTML */

/* ================================
   POSM Section
   ================================ */
.posm-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--white) 50%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.posm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(44, 62, 80, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.posm-hero-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    z-index: 1;
}

.posm-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.posm-hero-text h3 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.posm-hero-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.posm-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.posm-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.posm-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.posm-icon-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.showcase-icon:hover {
    transform: translateY(-5px);
    background: rgba(201, 169, 97, 0.2);
}

.posm-grid {
    display: grid;
    gap: 60px;
    margin-bottom: 60px;
}

.posm-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.posm-section-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.posm-section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.capability-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8995a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 97, 0.2);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.capability-icon svg {
    width: 24px;
    height: 24px;
}

.capability-content strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.capability-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-timeline {
    display: grid;
    gap: 30px;
}

.process-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.process-icon {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8995a 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover .step-number::before {
    opacity: 1;
}

.process-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-content > p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.process-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-details li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.process-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    width: 16px;
    height: 16px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.posm-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.posm-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.03) 35px,
            rgba(255,255,255,.03) 70px
        );
}

.posm-cta-content {
    position: relative;
    z-index: 1;
}

.posm-cta-content h3 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.posm-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .posm-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .posm-stats {
        justify-content: center;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .posm-hero-card {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .posm-hero-text h3 {
        font-size: 1.75rem;
    }
    
    .posm-stats {
        gap: 30px;
    }
    
    .posm-stat .stat-number {
        font-size: 2rem;
    }
    
    .posm-icon-showcase {
        padding: 20px;
    }
    
    .showcase-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 24px;
    }
    
    .process-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
    }
    
    .posm-cta {
        padding: 40px 20px;
    }
    
    .posm-cta-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .posm-hero-text h3 {
        font-size: 1.5rem;
    }
    
    .posm-hero-text p {
        font-size: 1rem;
    }
    
    .posm-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .posm-section-header h3 {
        font-size: 1.5rem;
    }
    
    .capability-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .posm-cta-content h3 {
        font-size: 1.5rem;
    }
}

/* ================================
   Engagement Section
   ================================ */
.engagement-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.engagement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.engagement-card {
    background-color: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}

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

.engagement-card.highlight-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-color: var(--secondary-color);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.engagement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.engagement-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.engagement-card > p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.engagement-features {
    list-style: none;
    padding-left: 0;
}

.engagement-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.engagement-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.timeline-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.timeline-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.timeline {
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 16px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.timeline-duration {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.timeline-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.03) 35px,
            rgba(255,255,255,.03) 70px
        );
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

/* ================================
   Contact Section
   ================================ */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--background-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-intro {
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-method h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.contact-method p {
    color: var(--text-medium);
}

.contact-method a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--secondary-color);
}

.business-hours {
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.business-hours h4 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.business-hours p {
    color: var(--text-medium);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.contact-form {
    display: grid;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

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

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 16px 0;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reporting styles removed */
    
    .engagement-options {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 1px;
    }
    
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .method-card,
    .engagement-card {
        padding: 30px 20px;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ================================
   Multi-page: shared new variables
   ================================ */
:root {
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition-base: 0.3s ease;
    --shadow-medium: 0 8px 24px rgba(0,0,0,0.12);
}

/* ================================
   Navigation: logo as link + CTA link
   ================================ */
.logo {
    text-decoration: none;
}

.nav-link.nav-cta {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    background-color: #b8995a;
    transform: none;
}

.nav-link.nav-cta::after {
    display: none;
}

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

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

/* ================================
   About Card Icon
   ================================ */
.about-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.about-card-icon svg {
    width: 22px;
    height: 22px;
}

/* ================================
   Hero Decorative Shapes
   ================================ */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--secondary-color);
}

.hero-shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

/* ================================
   Page Hero (interior pages)
   ================================ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,.025) 35px,
        rgba(255,255,255,.025) 70px
    );
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,169,97,0.12) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
}

.page-hero-content h1 {
    font-size: 3.25rem;
    color: var(--white);
    margin: 12px 0 20px;
    line-height: 1.15;
}

.page-hero-content > p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.breadcrumb li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: rgba(255,255,255,0.4);
}

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

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

/* ================================
   Services Preview (Home)
   ================================ */
.services-preview-section {
    padding: var(--section-padding);
    background-color: var(--background-cream);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-preview-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    transition: all var(--transition-base);
}

.service-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.service-preview-card .service-icon {
    margin-bottom: 20px;
}

.service-preview-card h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-preview-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.975rem;
}

.section-cta-row {
    text-align: center;
}

/* ================================
   Btn Outline variant
   ================================ */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ================================
   Service Features List (services.html)
   ================================ */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.service-features li {
    padding: 7px 0 7px 22px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ================================
   Why Section (services.html)
   ================================ */
.why-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

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

.why-item {
    position: relative;
    padding-top: 16px;
}

.why-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201,169,97,0.18);
    line-height: 1;
    margin-bottom: 8px;
    user-select: none;
}

.why-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================
   POSM Intro (posm.html)
   ================================ */
.posm-intro-section {
    padding: var(--section-padding);
    background: var(--white);
}

.posm-intro-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: center;
}

.posm-intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 12px 0 20px;
}

.posm-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--background-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.stat-box-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.stat-box-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
    font-weight: 600;
}

/* ================================
   POSM Process Steps (posm.html)
   ================================ */
.process-section {
    padding: var(--section-padding);
    background: var(--background-cream);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 32px;
}

.process-step {
    flex: 1 1 160px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
}

.process-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.process-step h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-step-connector {
    flex: 0 0 40px;
    height: 2px;
    background: var(--border-color);
    margin-top: 26px;
    align-self: flex-start;
}

/* ================================
   Included Section (engagement.html)
   ================================ */
.included-section {
    padding: var(--section-padding);
    background: var(--background-cream);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

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

.included-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.included-icon svg {
    width: 26px;
    height: 26px;
}

.included-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.included-item p {
    color: var(--text-medium);
    font-size: 0.925rem;
    line-height: 1.65;
}

/* ================================
   Timeline Page Section (engagement.html)
   ================================ */
.timeline-page-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* ================================
   FAQ (engagement.html)
   ================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--background-cream);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

details[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-item:hover .faq-question,
details[open] .faq-question {
    background: var(--background-light);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.75;
}

/* ================================
   Quick Contact Cards (contact.html)
   ================================ */
.quick-contact-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.quick-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--background-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.quick-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.quick-contact-card--hours {
    cursor: default;
}

.quick-contact-card--hours:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.quick-contact-icon {
    font-size: 2.25rem;
    margin-bottom: 14px;
}

.quick-contact-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.quick-contact-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.quick-contact-action {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.quick-contact-tag {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* ================================
   Contact: What Happens Next
   ================================ */
.contact-what-happens {
    margin-top: 40px;
}

.contact-what-happens h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.what-happens-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.what-happens-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.what-step-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.what-happens-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.975rem;
}

.what-happens-list p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ================================
   Contact Form improvements
   ================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.captcha-refresh {
    margin-top: 6px;
    font-size: 0.85rem;
}

.captcha-refresh a {
    color: var(--secondary-color);
}

/* ================================
   Form status banner
   ================================ */
.form-status-banner {
    padding: 14px 18px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-status-banner[hidden] {
    display: none;
}

.form-status-banner[data-type="success"] {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-status-banner[data-type="error"] {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-status-banner[data-type="warning"] {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fcd34d;
}

/* ================================
   Footer Brand
   ================================ */
.footer-logo-link {
    text-decoration: none;
}

.footer-brand p {
    font-size: 0.95rem;
}

/* ================================
   Responsive for new components
   ================================ */
@media (max-width: 1024px) {
    .posm-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .posm-intro-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.25rem;
    }

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step-connector {
        width: 2px;
        height: 32px;
        flex: 0 0 32px;
        margin-top: 0;
        align-self: center;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .posm-intro-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

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

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

    .page-hero {
        padding: 120px 0 60px;
    }

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

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.875rem;
    }

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

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

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

    .posm-intro-stats {
        grid-template-columns: 1fr 1fr;
    }
}
