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

:root {
    --primary-pink: #E91E63;
    --secondary-pink: #F06292;
    --accent-pink: #FCE4EC;
    --dark-pink: #C2185B;
    --light-pink: #F8BBD9;
    --purple: #9C27B0;
    --orange: #FF9800;
    --blue: #2196F3;
    --green: #4CAF50;
    --yellow: #FFC107;
    --dark: #212121;
    --medium-gray: #333333;
    --gray: #444444;
    --light-gray: #F5F5F5;
    --lighter-gray: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--lighter-gray);
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: calc(100vw - 40px);
    width: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-pink);
    flex-shrink: 0;
}

.logo i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

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

.nav-link:hover {
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.demo-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .nav-link {
    display: block;
    padding: 15px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
    background: var(--accent-pink);
    transform: none;
}

.mobile-menu .demo-btn {
    margin-top: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary-pink);
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

/* Hero Visual */
.workflow-preview {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.workflow-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.workflow-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    width: 120px;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 67%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 4px;
    animation: progressFill 2s ease-in-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 67%; }
}

.workflow-steps-mini {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.mini-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mini-step.completed {
    background: var(--primary-pink);
    color: white;
}

.mini-step.active {
    background: var(--orange);
    color: white;
    animation: pulse 2s infinite;
}

.mini-step:not(.completed):not(.active) {
    background: var(--light-gray);
    color: var(--gray);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.current-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--accent-pink);
    padding: 20px;
    border-radius: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--dark);
    font-size: 0.9rem;
}

/* Workflow Section */
.workflow-section {
    padding: 100px 0;
    background: var(--lighter-gray);
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Workflow Roadmap */
.workflow-roadmap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--secondary-pink));
    transform: translateX(-50%);
    z-index: 1;
}

.workflow-step-roadmap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    z-index: 2;
}

.workflow-step-roadmap:nth-child(even) {
    flex-direction: row-reverse;
}

.workflow-step-roadmap:nth-child(even) .step-content {
    text-align: right;
    margin-right: 0;
    margin-left: 40px;
}

.workflow-step-roadmap:nth-child(odd) .step-content {
    margin-right: 40px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 3;
    border: 4px solid var(--white);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    max-width: 350px;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workflow-step-roadmap .step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary-pink);
}

.workflow-step-roadmap h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.workflow-step-roadmap p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: var(--accent-pink);
    color: var(--primary-pink);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Workflow Navigation */
.workflow-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.workflow-nav-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workflow-nav-btn:hover {
    background: var(--secondary-pink);
    transform: translateY(-2px);
}

.step-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

/* Stakeholders Section */
.stakeholders-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.stakeholder-group {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stakeholder-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.group-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.principal .group-icon {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.contractor .group-icon {
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.group-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.stakeholder-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stakeholder-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stakeholder-item:hover {
    background: var(--accent-pink);
    transform: translateX(5px);
}

.stakeholder-item i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    width: 20px;
}

.stakeholder-item span {
    font-weight: 500;
    color: var(--dark);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-pink);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-demo {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--accent-pink);
}

.comment-bubble {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-text {
    background: var(--accent-pink);
    padding: 10px 15px;
    border-radius: 15px;
    color: var(--dark);
    font-size: 0.9rem;
}

.ai-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-pink);
    font-weight: 500;
}

.ai-suggestion i {
    color: var(--yellow);
}

.email-preview {
    text-align: center;
}

.email-subject {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.email-status {
    color: var(--dark);
    font-size: 0.9rem;
}

.integration-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
}

.integration-icons i {
    color: var(--primary-pink);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-pink);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.cta-feature i {
    color: var(--accent-pink);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

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

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-pink);
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .demo-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 20px;
        padding: 15px 25px;
        max-width: none;
    }
    
    .nav-container {
        justify-content: space-between;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
    }
    
    .stakeholders-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

.workflow-step {
    animation: slideInUp 0.6s ease forwards;
}

.workflow-step:nth-child(1) { animation-delay: 0.1s; }
.workflow-step:nth-child(2) { animation-delay: 0.2s; }
.workflow-step:nth-child(3) { animation-delay: 0.3s; }
.workflow-step:nth-child(4) { animation-delay: 0.4s; }
.workflow-step:nth-child(5) { animation-delay: 0.5s; }
.workflow-step:nth-child(6) { animation-delay: 0.6s; }
.workflow-step:nth-child(7) { animation-delay: 0.7s; }
.workflow-step:nth-child(8) { animation-delay: 0.8s; }
.workflow-step:nth-child(9) { animation-delay: 0.9s; }


/* Responsive Design for Roadmap */
@media (max-width: 768px) {
    .workflow-roadmap {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .roadmap-line {
        left: 30px;
        transform: none;
    }
    
    .workflow-step-roadmap {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 60px;
        margin-bottom: 40px;
    }
    
    .workflow-step-roadmap:nth-child(even) .step-content,
    .workflow-step-roadmap:nth-child(odd) .step-content {
        text-align: left;
        margin: 20px 0 0 0;
        max-width: none;
    }
    
    .step-circle {
        position: absolute;
        left: -90px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-content {
        width: 100%;
        max-width: none;
    }
}


/* Demo Booking Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--light-gray);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Demo Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    flex: 1;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    border: none;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.form-actions .btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--light-gray);
}

.form-actions .btn-secondary:hover {
    background: var(--light-gray);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 30px;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
    }
}

/* Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

