/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --midnight-navy: #0A1A2F;
    --executive-gold: #D4A643;
    --pure-white: #FFFFFF;
    
    /* Secondary Colors */
    --slate-gray: #CBD5E1;
    --graphite: #4B5563;
    --soft-charcoal: #1F2937;
    
    /* Accent Colors */
    --emerald: #047857;
    --ice-blue: #E0F2FE;
    
    /* Utility Colors */
    --success-green: #22C55E;
    --warning-gold: #F59E0B;
    --error-red: #DC2626;
    --info-blue: #3B82F6;
    
    /* Gradients */
    --gradient-navy-midnight: linear-gradient(135deg, #0A1A2F 0%, #000814 100%);
    --gradient-gold-light: linear-gradient(135deg, #D4A643 0%, #F3D98B 100%);
    --gradient-navy-emerald: linear-gradient(135deg, #0A1A2F 0%, #047857 100%);
    
    /* Typography Colors */
    --text-primary: #4B5563;
    --text-secondary: #1F2937;
    --text-inverse: #FFFFFF;
    --text-highlight: #D4A643;
    
    /* Legacy variables for compatibility */
    --primary-color: #0A1A2F;
    --primary-dark: #000814;
    --secondary-color: #D4A643;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --bg-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --border-color: #CBD5E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(10, 26, 47, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(10, 26, 47, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(10, 26, 47, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(10, 26, 47, 0.25);
    --shadow-glow: 0 0 20px rgba(212, 166, 67, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pure-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--midnight-navy);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(212, 166, 67, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--executive-gold);
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-inverse);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--executive-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--executive-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-inverse);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("Hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-navy-midnight);
    opacity: 0.4;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(79, 70, 229, 0.02) 100px,
            rgba(79, 70, 229, 0.02) 102px
        );
    animation: rotate 30s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-mission {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--executive-gold);
    color: var(--midnight-navy);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--midnight-navy);
}

.btn-secondary {
    background: var(--midnight-navy);
    color: var(--text-inverse);
    border: 2px solid var(--midnight-navy);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-navy-emerald);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--text-inverse);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--executive-gold);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--executive-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeInUp 0.6s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    padding: 1rem;
    background: rgba(212, 166, 67, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.section-header:hover .section-icon {
    transform: scale(1.1) rotate(5deg);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--midnight-navy);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--executive-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.consultation-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.consultation-btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Services Section */
.services {
    background: var(--pure-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: block;
    text-decoration: none;
}

.service-card:nth-child(1) {
    background: var(--gradient-navy-midnight);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #0A1A2F 0%, #047857 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #047857 0%, #0A1A2F 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, #1F2937 0%, #0A1A2F 100%);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, #0A1A2F 0%, #4B5563 100%);
}

.service-card:nth-child(6) {
    background: var(--gradient-navy-emerald);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:nth-child(1)::before { background: var(--gradient-primary); }
.service-card:nth-child(2)::before { background: var(--gradient-secondary); }
.service-card:nth-child(3)::before { background: var(--gradient-accent); }
.service-card:nth-child(4)::before { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.service-card:nth-child(5)::before { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.service-card:nth-child(6)::before { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 12px rgba(79, 70, 229, 0.3));
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--executive-gold);
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.service-card:hover .service-link {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 5px;
    transform: translateX(5px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    background: var(--slate-gray);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--midnight-navy);
    position: relative;
}

.about-intro {
    max-width: 100%;
    margin: 0 0 3rem;
    text-align: left;
}

.about-intro p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.team-member {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 16px;
    border-left: 4px solid var(--executive-gold);
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--midnight-navy);
}

.member-title {
    font-weight: 600;
    color: var(--executive-gold);
    font-size: 1.125rem;
    margin-bottom: 1rem !important;
}

.linkedin-link {
    color: var(--executive-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.linkedin-link:hover {
    color: var(--gradient-gold-light);
    text-decoration: underline;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--executive-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-primary);
    font-size: 0.875rem;
}

.about-image {
    position: relative;
}

.profile-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    transition: all 0.3s ease;
    border: 4px solid white;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.4);
}

/* Contact Section */
.contact {
    background: var(--pure-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--midnight-navy);
}

.info-item p {
    color: var(--text-primary);
    line-height: 1.7;
}

.email-link {
    color: var(--executive-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--text-highlight);
    text-decoration: underline;
}

.contact-form {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-gray);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(79, 70, 229, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--slate-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--executive-gold);
    box-shadow: 0 0 0 3px rgba(212, 166, 67, 0.15), 0 4px 6px -1px rgba(212, 166, 67, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
    display: block;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: var(--error-red);
    border: 1px solid var(--error-red);
    display: block;
}

/* What We Do Section */
.what-we-do {
    background: var(--pure-white);
    padding: 5rem 0;
}

.what-we-do-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight-navy);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--slate-gray);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--executive-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.closing-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
}

/* How We Work Section */
.how-we-work {
    background: var(--slate-gray);
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--executive-gold);
    color: var(--midnight-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--midnight-navy);
    font-weight: 700;
}

.process-item p {
    color: var(--text-primary);
    line-height: 1.7;
}

.process-closing {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Who We Work With Section */
.who-we-work-with {
    background: var(--pure-white);
    padding: 5rem 0;
}

.client-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.client-list ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0;
}

.client-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--slate-gray);
}

.client-list li:last-child {
    border-bottom: none;
}

.client-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--executive-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.client-closing {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
}

/* Not Sure Section */
.not-sure {
    background: var(--gradient-navy-midnight);
    padding: 5rem 0;
    text-align: center;
}

.not-sure-content h2 {
    font-size: 2.5rem;
    color: var(--text-inverse);
    margin-bottom: 1rem;
    font-weight: 800;
}

.not-sure-content p {
    font-size: 1.25rem;
    color: var(--text-inverse);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Why Section */
.why {
    background: var(--pure-white);
    padding: 5rem 0;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0;
}

.why-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--slate-gray);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--executive-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.why-closing {
    font-size: 1.25rem;
    color: var(--midnight-navy);
    font-weight: 600;
    line-height: 1.8;
}

/* Service Page Styles */
.service-hero {
    background: var(--gradient-navy-midnight);
    padding: 8rem 0 5rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 166, 67, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(4, 120, 87, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-icon {
    font-size: 5rem;
    display: inline-block;
    padding: 2rem;
    background: rgba(212, 166, 67, 0.1);
    border-radius: 50%;
    border: 3px solid var(--executive-gold);
    box-shadow: 0 0 30px rgba(212, 166, 67, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(212, 166, 67, 0.2);
    border: 2px solid var(--executive-gold);
    border-radius: 50px;
    color: var(--text-inverse);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 166, 67, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -0.02em;
}

.service-hero-subtitle {
    font-size: 1.5rem;
    color: var(--executive-gold);
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.service-intro {
    background: var(--pure-white);
    padding: 5rem 0;
}

.service-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-visual {
    position: relative;
}

.intro-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(10, 26, 47, 0.3);
    display: block;
    object-fit: contain;
    background: var(--slate-gray);
}

.intro-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, var(--executive-gold) 50%, var(--emerald) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(10, 26, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.intro-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.05) 50px,
        rgba(255, 255, 255, 0.05) 52px
    );
    animation: rotate 20s linear infinite;
}

.placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.intro-text-content {
    text-align: left;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1.5rem;
}

.intro-description {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.service-section {
    padding: 5rem 0;
    background: var(--pure-white);
}

.service-section.alt-bg {
    background: var(--slate-gray);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--midnight-navy);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.section-note {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.service-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--slate-gray);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--executive-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-list.negative li::before {
    content: '✗';
    color: var(--error-red);
}

.section-closing {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
    text-align: center;
}

.section-closing.emphasis {
    font-weight: 600;
    color: var(--midnight-navy);
    font-size: 1.25rem;
}

.feature-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin: 3rem 0 !important;
    width: 100% !important;
}

.feature-card {
    background: var(--pure-white) !important;
    padding: 2.5rem !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(10, 26, 47, 0.1) !important;
    border: 2px solid var(--slate-gray) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    min-height: 200px !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--executive-gold), var(--emerald));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 166, 67, 0.2);
    border-color: var(--executive-gold);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card p {
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.problem-statement {
    background: linear-gradient(135deg, rgba(212, 166, 67, 0.15) 0%, rgba(4, 120, 87, 0.15) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border-left: 6px solid var(--executive-gold);
    box-shadow: 0 10px 30px rgba(10, 26, 47, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-statement::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 166, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.problems-visual {
    margin: 2rem 0;
}

.problem-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    display: block;
    object-fit: contain;
    background: var(--slate-gray);
}

.problem-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--error-red) 0%, var(--warning-gold) 50%, var(--error-red) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.problems-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
    width: 100% !important;
}

.problem-item {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
    border-left: 5px solid var(--error-red);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.05), transparent);
    transition: width 0.4s ease;
}

.problem-item:hover::after {
    width: 100%;
}

.problem-item:hover {
    transform: translateX(10px) translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
    border-left-color: var(--warning-gold);
}

.problem-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.problem-item:hover .problem-icon {
    transform: scale(1.15);
}

.problem-item p {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
}

.cfo-services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin: 3rem 0 !important;
    width: 100% !important;
}

.cfo-service-item {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(10, 26, 47, 0.1);
    border: 3px solid transparent;
    border-top: 6px solid var(--executive-gold);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cfo-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--executive-gold), var(--emerald), var(--executive-gold));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.cfo-service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 166, 67, 0.03) 0%, rgba(4, 120, 87, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cfo-service-item:hover::after {
    opacity: 1;
}

.cfo-service-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(212, 166, 67, 0.25);
    border-color: var(--executive-gold);
}

.cfo-service-item:hover::before {
    transform: scaleX(1);
}

.service-item-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(212, 166, 67, 0.3));
    transition: transform 0.3s ease;
}

.cfo-service-item:hover .service-item-icon {
    transform: scale(1.15) rotate(-5deg);
}

.cfo-service-item h3 {
    font-size: 1.75rem;
    color: var(--midnight-navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cfo-service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cfo-service-item li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.cfo-service-item:hover li {
    transform: translateX(5px);
}

.cfo-service-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--executive-gold);
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--executive-gold);
    color: var(--midnight-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--midnight-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-primary);
    line-height: 1.7;
}

.service-cta-section {
    background: var(--gradient-navy-midnight);
    padding: 5rem 0;
    text-align: center;
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-lead {
    font-size: 1.25rem;
    color: var(--text-inverse);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    margin-bottom: 2rem;
}

.cta-details {
    font-size: 1.125rem;
    color: var(--text-inverse);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    padding: 0;
}

.cta-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-inverse);
    line-height: 1.8;
}

.cta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--executive-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.cta-note {
    font-size: 1rem;
    color: var(--text-inverse);
    opacity: 0.8;
    font-style: italic;
}

.benefits-visual-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin: 3rem 0 !important;
    width: 100% !important;
}

.benefit-visual-card {
    background: linear-gradient(135deg, var(--pure-white) 0%, rgba(4, 120, 87, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(4, 120, 87, 0.15);
    border: 3px solid transparent;
    border-left: 6px solid var(--emerald);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-visual-card:hover::before {
    opacity: 1;
}

.benefit-visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(4, 120, 87, 0.25);
    border-color: var(--emerald);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(4, 120, 87, 0.2));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-visual-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.benefit-visual-card h4 {
    font-size: 1.25rem;
    color: var(--midnight-navy);
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--midnight-navy);
    color: var(--text-inverse);
    padding: 0;
}

.footer-cta {
    background: var(--executive-gold);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--midnight-navy);
}

.footer-cta-content {
    text-align: center;
}

.footer-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1.5rem;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-cta-buttons .btn {
    min-width: 250px;
}

.footer-content {
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .not-sure-content h2 {
        font-size: 2rem;
    }

    .not-sure-content p {
        font-size: 1.125rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1.25rem;
    }

    .cfo-services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-cta-content h2 {
        font-size: 2rem;
    }

    .service-intro-content {
        grid-template-columns: 1fr;
    }

    .intro-text-content {
        text-align: center;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .benefits-visual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

