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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-weight: 400;
    padding-top: 80px; /* Account for fixed header */
}

/* Typography - Headings use Montserrat (similar to Acumin Pro) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

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

/* Fixed Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #2c3e50;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: #f8fafc;
    color: #1e4a72;
    text-decoration: none;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #1e4a72;
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(0.9);
}

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

.tagline {
    font-size: 1.1rem;
    color: #2980b9;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    font-style: italic;
    opacity: 0.9;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    color: #1e4a72;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.value-proposition {
    font-size: 1.8rem;
    color: #2980b9;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1e4a72 0%, #2980b9 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 74, 114, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 74, 114, 0.3);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.services-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.services-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(0.8);
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #1e4a72;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a5568;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e4a72 0%, #2980b9 100%);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(30, 74, 114, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e4a72 0%, #2980b9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 74, 114, 0.15);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e4a72;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-photo {
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(30, 74, 114, 0.15);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 74, 114, 0.2);
}

.about-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1e4a72;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.about-title .bio-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    font-weight: 500;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.bio-experience,
.bio-background,
.bio-approach {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.expertise-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 74, 114, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 74, 114, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 32px;
    text-align: center;
}

.highlight-content {
    flex: 1;
}

.highlight-content strong {
    color: #1e4a72;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.highlight-content {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 1;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(0.9);
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1e4a72;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.contact-description {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 400;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(30, 74, 114, 0.08);
    border: 1px solid #e2e8f0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #1e4a72;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #1e4a72 0%, #2980b9 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 74, 114, 0.3);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Trust Signals */
.trust-signals {
    margin-top: 2rem;
    text-align: center;
}

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

.trust-item {
    font-size: 0.95rem;
    color: #1e4a72;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-text {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
    font-style: italic;
}

/* Form Message Styles */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Thank You Page Styles */
.thank-you {
    padding: 5rem 0;
    background: white;
    min-height: 60vh;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.thank-you h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1e4a72;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #1e4a72;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #2980b9;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e4a72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.contact-info h3 {
    color: #1e4a72;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
}

/* Momentum Section */
.momentum-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.momentum-section h3 {
    color: #1e4a72;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.momentum-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.momentum-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.momentum-step.active {
    background: #e6f3ff;
    color: #1e4a72;
}

.step-icon {
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 24px;
}

.momentum-step.active .step-icon {
    color: #28a745;
}

/* Urgent Section */
.urgent-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.urgent-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.urgent-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-priority {
    background: white;
    color: #ee5a24;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-priority:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #ee5a24;
    text-decoration: none;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #1e4a72 0%, #2980b9 100%);
    color: white;
}

.btn-secondary {
    background: white;
    color: #1e4a72;
    border: 2px solid #1e4a72;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 74, 114, 0.3);
}

/* Footer */
footer {
    background: #1e4a72;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Section Spacing for Fixed Header */
section {
    scroll-margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Header */
    .fixed-header {
        padding: 0.75rem 0;
    }
    
    .logo-image {
        height: 40px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Hero */
    .hero {
        min-height: calc(100vh - 70px);
        padding: 4rem 0 3rem;
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.12;
    }
    
    .services-hero-image,
    .contact-hero-image {
        width: 100%;
        opacity: 0.06;
    }
    
    /* Mobile About Section */
    .about-content {
        gap: 2rem;
    }
    
    .about-header {
        gap: 1.5rem;
    }
    
    .about-title h2 {
        font-size: 2rem;
    }
    
    .profile-photo {
        width: 140px;
        height: 140px;
    }
    
    .about-details {
        text-align: center;
    }
    
    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }
    
    section {
        scroll-margin-top: 70px;
    }
    
    .hero h2 {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
        padding: 0 1rem;
    }
    
    .services h2,
    .contact h2,
    .thank-you h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .value-proposition {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .profile-photo {
        width: 200px;
        height: 240px;
        margin: 0 auto;
    }
    
    .bio-intro,
    .bio-experience,
    .bio-approach {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .services,
    .contact,
    .thank-you {
        padding: 3rem 0;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
}
