/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header */
.header {
    background: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-banner {
    background: #E3F2FD;
    padding: 1rem 0;
    border-radius: 0 0 0.5rem 0.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-flexhire {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.flex-text {
    color: #1976D2;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.hire-text {
    color: #f97316;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.header-apply-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.header-apply-btn:hover {
    background: #ea580c;
}

.header-apply-btn::after {
    content: '→';
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}

/* Hero Section */
.hero-section {
    margin-top: 90px;
    position: relative;
}

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        max-width: 100vw;
    }

    .hero-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }

.hero-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f97316;
    padding: 2rem;
    text-align: center;
}

.hero-overlay-box h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.hero-text-section {
    background: white;
    padding: 3rem 0;
}

.hero-description {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-apply-btn {
    display: block;
    margin: 0 auto 2rem;
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-apply-btn:hover {
    background: #ea580c;
}

.hero-social-proof {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.people-icons {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background: white;
}

.section-title-orange {
    color: #f97316;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.advantages-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.advantages-apply-btn {
    display: block;
    margin: 0 auto 3rem;
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.advantages-apply-btn:hover {
    background: #ea580c;
}

.companies-proof {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.companies-proof p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.company-logos span {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.about-cta {
    background: #f97316;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: bold;
}

.about-secondary-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #262626;
}

.about-text p {
    font-size: 1.2rem;
    color: #262626;
    margin-bottom: 1.5rem;
    text-indent: 2em;
}

.features-list {
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #262626;
}

.feature p {
    color: #262626;
}

/* Middle Banner - Removed, integrated into hero */

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f97316;
    margin-bottom: 1rem;
}

.jobs-section .section-header h2 {
    color: #f97316;
}

.section-header p {
    font-size: 1.25rem;
    color: #262626;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    font-size: 2rem;
    color: #fbbf24;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote {
    font-size: 4rem;
    color: #f97316;
    font-weight: bold;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.25rem;
    color: #262626;
    margin-bottom: 2rem;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-weight: bold;
    color: #262626;
}

.author p {
    color: #6b7280;
    font-size: 0.9rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    font-size: 1.5rem;
    color: #f97316;
}

.nav-btn:hover {
    background: #f97316;
    color: white;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #f97316;
    transform: scale(1.05);
}

/* Jobs Section */
.jobs-section {
    padding: 4rem 0;
    background: #E3F2FD;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.job-card:hover {
    border-color: #fed7d7;
    transform: translateY(-5px);
}

.job-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.job-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #262626;
    margin-bottom: 1rem;
}

.job-details {
    margin-bottom: 2rem;
}

.income {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 1rem;
}

.detail {
    font-size: 0.95rem;
    color: #262626;
    margin-bottom: 0.5rem;
}

.apply-btn {
    width: 100%;
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    margin-top: 1rem;
}

.apply-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.apply-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    position: relative;
    background: #E3F2FD;
}

.form-overlay {
    display: none;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.form-left {
    color: #333;
}

.form-left h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1976D2;
}

.form-left p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.icon {
    width: 40px;
    height: 40px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.form-right {
    display: flex;
    justify-content: center;
}

.form-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.submitted-message {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    color: #065f46;
    margin-bottom: 1rem;
}

.success-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
}

input[type="text"], input[type="tel"], input[type="number"], input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-selector {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    z-index: 10;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem 0 0 0.5rem;
    background: white;
    cursor: pointer;
}

#flag-img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.dropdown-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1rem;
}

.submit-btn:hover:not(:disabled) {
    background: #ea580c;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: red;
}

/* Country Dropdown */
.country-dropdown {
    position: fixed;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 10000;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-box {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 10001;
    background: white;
}

#country-search {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    padding-left: 2rem;
    box-sizing: border-box;
    pointer-events: auto;
    z-index: 10001;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #6b7280;
}

.countries-list {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-option:hover {
    background: #f9fafb;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.country-option span:first-of-type {
    font-weight: 500;
    min-width: 50px;
    flex-shrink: 0;
}

.country-option span:last-of-type {
    color: #6b7280;
    font-size: 0.9rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.footer {
    background: #101838;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: white;
    fill: none;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
}

.footer-links-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-links-list a:hover {
    color: #f97316;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.copyright {
    text-align: center;
    color: white;
    font-size: 1rem;
    margin: 0;
}

.footer-brand-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-flexhire-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-footer {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-footer svg {
    width: 100%;
    height: 100%;
}

.logo-text-footer {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.flex-text-footer {
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.hire-text-footer {
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    * {
        max-width: 100%;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .header {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    .header-banner {
        padding: 0.75rem 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo-flexhire {
        flex: 0 0 auto;
    }

    .header-apply-btn {
        flex: 0 0 auto;
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .hero-section {
        width: 100%;
        max-width: 100vw;
        margin-top: 60px;
        overflow-x: hidden;
    }

    .hero-image-container {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        /* margin-top: 60px; */
        height: 100%;
    }

    .hero-main-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .hero-text-section {
        width: 100%;
        max-width: 100vw;
        padding: 1rem;
        box-sizing: border-box;
    }

    .hero-overlay-box {
        padding: 0.75rem 1rem;
    }

    .hero-overlay-box h2 {
        font-size: 1.75rem;
        margin: 0;
        line-height: 1.2;
    }

    .hero-description {
        margin-bottom: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .cta-circle {
        width: 150px;
        height: 150px;
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .middle-banner {
        height: 400px;
        text-align: center;
    }

    .middle-banner h2 {
        font-size: 2.5rem;
    }

    .middle-banner p {
        font-size: 1.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-left h2 {
        font-size: 2.5rem;
    }

    .radio-group {
        flex-direction: row;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .country-dropdown {
        width: calc(100% - 2rem);
        max-width: 300px;
        left: 1rem;
        right: 1rem;
    }

    .form-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .advantages-grid,
    .jobs-grid,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-overlay-box {
        padding: 0.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-overlay-box h2 {
        font-size: 1.5rem;
        margin: 0;
        line-height: 1.2;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success Message */
.success {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.error {
    display: none;
}

/* Form Validation Styles */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.input-error {
    border-color: #ef4444;
}

/* 为性别字段的radio-group添加错误样式 */
.radio-group.input-error {
    border: 1px solid #ef4444;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

/* 隐藏浏览器原生的验证提示框（橙色提示框） */
input:invalid::-webkit-validation-bubble,
input:invalid::-webkit-validation-bubble-message,
input:invalid::-webkit-validation-bubble-arrow {
    display: none !important;
}

input:invalid::after,
input:invalid::before {
    display: none !important;
    content: none !important;
}

/* 隐藏所有浏览器原生验证提示 */
input::-webkit-validation-bubble,
input::-webkit-validation-bubble-message,
input::-webkit-validation-bubble-arrow {
    display: none !important;
}

/* Success Page Styles */
.success-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.success-title {
    color: #2e7d32;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    border-left: 4px solid #4CAF50;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-item h3 {
    color: #2e7d32;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.primary-btn {
    background: #f97316;
    color: white;
    border: none;
}

.primary-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.secondary-btn {
    background: #1976D2;
    color: white;
    border: none;
}

.secondary-btn:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.success-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 2rem;
}

.success-note p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Success Page */
@media (max-width: 768px) {
    .success-section {
        padding: 4rem 0 2rem;
    }

    .success-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .success-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}