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

:root {
    --bg-dark: #0a0e17;
    --bg-darker: #060911;
    --bg-card: #0f1419;
    --bg-card-hover: #141922;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;
    --accent-orange: #f97316;
    --accent-yellow: #eab308;
    --border-color: #1e293b;
    --gradient-1: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 14, 23, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.08) 0%, transparent 70%),
                linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--accent-cyan);
    font-size: 20px;
    font-weight: 700;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Section Headers */
.section-header {
    margin-bottom: 64px;
}

.section-header.centered {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.section-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--accent-orange);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-left-width: 4px;
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-orange);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.benefit-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-left-color: var(--accent-orange);
}

.benefit-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.benefit-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.highlight-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-cyan);
}

.highlight-card p {
    color: var(--text-secondary);
}

.about-details {
    max-width: 900px;
    margin: 0 auto;
}

.about-details h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.expertise-list {
    list-style: none;
    margin-bottom: 24px;
}

.expertise-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.expertise-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.leader-profile {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 48px;
}

.leader-profile h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.leader-details h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.leader-details p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.leader-details ul {
    list-style: none;
    margin-bottom: 24px;
}

.leader-details ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
}

.leader-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.network-section {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.network-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.network-list {
    list-style: none;
}

.network-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.network-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.core-services {
    margin-bottom: 80px;
}

.services-subheading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--accent-orange);
}

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

.service-detail-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-left-color: var(--accent-orange);
    transform: translateY(-4px);
}

.service-detail-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-detail-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 20px;
}

.technical-depth {
    margin-bottom: 80px;
}

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

.tech-category {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.tech-category h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.tech-category ul {
    list-style: none;
}

.tech-category ul li {
    padding: 10px 0 10px 24px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tech-category ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

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

.sectors-column ul,
.capabilities-column ul {
    list-style: none;
}

.sectors-column ul li,
.capabilities-column ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.sectors-column ul li::before,
.capabilities-column ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 18px;
}

/* Mining Section */
.mining-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.mining-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.mining-stat {
    text-align: center;
    padding: 24px 32px;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
}

.core-capabilities {
    margin-bottom: 80px;
}

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

.capability-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-top-color: var(--accent-orange);
    transform: translateY(-4px);
}

.capability-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.capability-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.safety-philosophy {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.safety-description {
    font-size: 20px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 16px;
}

.safety-philosophy p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
}

.signature-projects-mining {
    margin-bottom: 80px;
}

.signature-project-highlight h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--accent-orange);
}

.project-list {
    display: grid;
    gap: 24px;
}

.project-highlight {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.project-highlight:hover {
    border-left-color: var(--accent-orange);
    transform: translateX(4px);
}

.project-highlight h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-highlight p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.project-gallery {
    margin-top: 80px;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 48px;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.gallery-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Indigenous Partnerships Section */
.partnerships-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.partnership-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-cyan);
}

.pillar-card p {
    color: var(--text-secondary);
}

.commitment-section {
    margin-bottom: 64px;
}

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

.commitment-group h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.commitment-group ul {
    list-style: none;
}

.commitment-group ul li {
    padding: 12px 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.commitment-group ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.approach-details {
    max-width: 900px;
    margin: 0 auto 64px;
}

.approach-details p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
}

.how-we-partner {
    margin-bottom: 64px;
}

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

.method-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-cyan);
}

.method-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.method-card ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.method-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
}

.services-for-stakeholders {
    margin-bottom: 64px;
}

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

.stakeholder-column h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.stakeholder-column ul {
    list-style: none;
}

.stakeholder-column ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.stakeholder-column ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
}

.experience-snapshot {
    max-width: 900px;
    margin: 0 auto;
}

.experience-snapshot p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(249, 115, 22, 0.08) 100%);
    text-align: center;
}

.cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.contact-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-details {
    margin-top: 32px;
}

.contact-details h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 32px;
    color: var(--accent-cyan);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-details a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-orange);
}

.response-time {
    margin-top: 32px;
    padding: 24px;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.response-time strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

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

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--accent-orange);
}

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

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

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-location {
    color: var(--text-muted);
    font-size: 13px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sectors-capabilities {
        grid-template-columns: 1fr;
    }

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

    .partnership-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .services-detailed-grid,
    .technical-categories,
    .capabilities-grid,
    .partnership-pillars,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .logo {
        font-size: 11px;
    }
}
