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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
}

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

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/corporate-relocation-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.7), transparent);
}

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

.hero-content {
    max-width: 900px;
    padding: 40px 20px;
}

.corp-hero h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.corp-hero p {
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: white;
    color: #2563eb;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #dbeafe;
}

.btn-secondary {
    text-decoration: none;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #111827;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.feature-card p {
    font-size: 0.875rem;
    color: #f3f4f6;
    margin: 0;
}

/* Services Section */
.corp-services {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.btn-cta {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #2563eb;
}

/* Process Section */
.corp-process {
    padding: 80px 0;
    background: #f9fafb;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.process-step {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.process-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.process-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.process-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.process-icon.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.process-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.process-icon i {
    font-size: 1.5rem;
    color: white;
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 3;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.process-step p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
}

.cta-box {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Companies Section */
.corp-companies {
    padding: 80px 0;
    background: #f9fafb;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.company-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-image {
    position: relative;
    width: 100%;
    height: 192px;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-rating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.company-rating-badge i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.company-rating-badge span {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.company-content {
    padding: 24px;
}

.company-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.company-stars {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 0.875rem;
    color: #fbbf24;
}

.stars i.text-gray-300 {
    color: #d1d5db;
}

.reviews {
    font-size: 0.875rem;
    color: #6b7280;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.info-item i {
    color: #3b82f6;
}

.info-item .highlight {
    font-weight: 600;
    color: #2563eb;
}

.company-specialties {
    margin-bottom: 24px;
}

.company-specialties h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tags span {
    background: #f9fafb;
    color: #374151;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.company-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.company-btn:hover {
    background: #2563eb;
}

.companies-cta {
    text-align: center;
}

.companies-cta .cta-box {
    max-width: 672px;
    margin: 0 auto;
}

/* Quote Form Section */
.corp-quote-form {
    padding: 60px 0;
    background: white;
}

.quote-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    min-height: 450px;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-number,
.step.completed .step-number {
    background: #4285f4;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

.step.active .step-label {
    color: #4285f4;
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
    flex: 1;
    overflow-y: visible;
}

.form-step.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 0.875rem;
    text-align: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
}

.error-message {
    color: #dc3545;
    font-size: 0.75rem;
    display: block;
    min-height: 18px;
    margin-top: 4px;
    text-align: center;
}

/* Autocomplete Suggestions */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
}

.prev-btn,
.next-btn,
.submit-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.prev-btn {
    background: #f3f4f6;
    color: #374151;
}

.prev-btn:hover {
    background: #e5e7eb;
}

.next-btn,
.submit-btn {
    background: #3b82f6;
    color: white;
    min-width: 140px;
}

.next-btn:hover,
.submit-btn:hover {
    background: #2563eb;
}

/* Message */
.message {
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .corp-hero h1 {
        font-size: 2.5rem;
    }

    .corp-hero p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 30px 20px;
    }

    .step-indicator::before {
        top: 18px;
    }

    .step {
        padding: 0 8px;
    }

    .step-number {
        width: 36px;
        height: 36px;
    }

    .step-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .corp-hero h1 {
        font-size: 2rem;
    }

    .corp-hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-box h3 {
        font-size: 1.25rem;
    }

    .cta-box p {
        font-size: 0.875rem;
    }

    .quote-form {
        padding: 20px 15px;
    }

    .step-indicator {
        margin-bottom: 30px;
    }

    .step-indicator::before {
        top: 16px;
    }

    .step {
        padding: 0 5px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .step-label {
        font-size: 0.7rem;
    }
}

