@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
    /* Professional Corporate Color Palette */
    --primary-color: #c2410c; /* Burnt Orange */
    --secondary-color: #dc2626; /* Brick Red */
    --accent-color: #6b7280; /* Grey Accent */
    --primary-gradient: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    --secondary-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --accent-gradient: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);

    /* Background Colors */
    --bg-primary: #ffffff; /* White background */
    --bg-secondary: #f9fafb; /* Light grey background */
    --bg-tertiary: #f3f4f6; /* Slightly darker grey background */

    /* Text Colors */
    --text-primary: #374151; /* Dark grey text */
    --text-secondary: #6b7280; /* Medium grey text */
    --text-muted: #9ca3af; /* Light grey text */
    --text-white: #ffffff; /* White text for dark backgrounds */

    /* Border and Divider Colors */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;

    /* Utility Colors */
    --success-color: #059669;
    --error-color: #dc2626;
    --warning-color: #d97706;
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

@keyframes scan {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Navigation */
.navbar {
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    margin: 0;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo:hover h2::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::before {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 200px 0 150px;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.trust-indicators {
    margin-bottom: 2rem;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cert-badge {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.cta-button.secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.client-logos {
    margin-top: 3rem;
}

.client-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-placeholder span {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(194, 65, 12, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(234, 88, 12, 0.04) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 48%,
        rgba(194, 65, 12, 0.02) 49%,
        rgba(194, 65, 12, 0.02) 51%,
        transparent 52%);
    animation: scan 4s linear infinite;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-gradient);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(79, 172, 254, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(30, 58, 138, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}


.services h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--primary-color);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    opacity: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
    font-size: 0.95rem;
}

.service-card.flagship {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card.flagship p:not(.flagship-label) {
    color: var(--text-primary);
    font-weight: 500;
}

.service-card.flagship::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    opacity: 0.05;
    z-index: -1;
}

.flagship-label {
    background: var(--secondary-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 65, 12, 0.3);
}

/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(194, 65, 12, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite reverse;
}

.social-proof h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric h3 {
    font-size: 3rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.metric p {
    color: var(--text-primary);
    font-weight: 600;
}

/* Case Studies Section */
.case-studies {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(194, 65, 12, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.case-studies h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-study-header h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    flex: 1;
}

.industry-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-problem,
.case-study-solution,
.case-study-results {
    margin-bottom: 2rem;
}

.case-study-problem h4,
.case-study-solution h4,
.case-study-results h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-problem p,
.case-study-solution p {
    color: var(--text-primary);
    line-height: 1.7;
}

.case-study-results ul {
    list-style: none;
    padding: 0;
}

.case-study-results li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.case-study-results li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.case-study-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.case-study-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

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


/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(194, 65, 12, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}


.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.leadership-team,
.certifications-partnerships,
.company-values {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.leadership-team h3,
.certifications-partnerships h3,
.company-values h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.team-member {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.team-member h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member .credentials {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-member .experience {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cert-item {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.cert-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cert-item ul {
    list-style: none;
    padding: 0;
}

.cert-item li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.cert-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.value-item {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.value-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-primary);
    line-height: 1.6;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(107, 114, 128, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(107, 114, 128, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.stat p {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--secondary-color),
        inset 0 1px 0 rgba(107, 114, 128, 0.3);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 65, 12, 0.2), transparent);
    transition: left 0.5s;
}

.stat:hover::before {
    left: 100%;
}


/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(194, 65, 12, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.value-props {
    margin: 2rem 0;
}

.value-prop {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.value-prop h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-prop p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(107, 114, 128, 0.1);
    color: var(--text-primary);
    font-size: 1.1rem;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-form {
    background: rgba(107, 114, 128, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 114, 128, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(107, 114, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(107, 114, 128, 0.05);
    border: 2px solid rgba(107, 114, 128, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--accent-color) !important;
    opacity: 1;
}

.form-group select {
    color: var(--text-primary) !important;
}

.form-group select option {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: rgba(107, 114, 128, 0.1);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--secondary-color);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-primary) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--accent-color) !important;
    margin-top: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(107, 114, 128, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(194, 65, 12, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer p {
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .certifications {
        justify-content: center;
    }

    .logo-placeholder {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .testimonials-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .results-metrics,
    .team-grid,
    .cert-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services h2,
    .social-proof h2,
    .case-studies h2,
    .about h2,
    .contact h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services,
    .social-proof,
    .case-studies,
    .about,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .testimonial-card,
    .case-study-card,
    .contact-form,
    .team-member,
    .cert-item,
    .value-item {
        padding: 1.5rem;
    }

    .services h2,
    .social-proof h2,
    .case-studies h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .section-intro,
    .services-intro {
        font-size: 1.1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}