* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6b7280;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Modern Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(139, 92, 246, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-nav-primary {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-nav-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

/* Hero Section - Modern Design */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-text p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease-out;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: #f8f8f8;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Hero Image/Illustration */
/*.hero-image {*/
/*    position: relative;*/
/*    animation: float 3s ease-in-out infinite;*/
/*}*/

/* .hero-illustration {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
} */

.hero-illustration i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Common HR Challenges - Modern Cards */
.challenges-section {
    padding: 100px 0;
    background: var(--light);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1rem;
}

.challenge-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.challenge-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.challenge-card:hover .challenge-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.challenge-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.challenge-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section - Enhanced */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 25px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.feature-card:hover::after {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.feature-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Social Proof - Real Company Logos */
.social-proof-section {
    padding: 100px 0;
    background: var(--light);
}

.company-logo-wrapper {
    background: var(--white);
    border-radius: 20px;
    /* padding: 2rem; */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-logo-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.company-logo {
    max-width: 140px;
    max-height: 90px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.company-logo-wrapper:hover .company-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .challenges-section,
    .features-section,
    .social-proof-section,
    .benefits-section,
    .cta-section,
    .section {
        padding: 40px 0 !important;
    }

    .company-logo {
        filter: grayscale(0%);
        opacity: 1;
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border-left: 5px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Benefits - Glass Morphism */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(360deg);
    background: rgba(255, 255, 255, 0.4);
}

.benefit-card h4 {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-subtitle {
    color: var(--white);
}

.btn-cta {
    padding: 1.2rem 3rem;
    font-weight: 800;
    border-radius: 30px;
    font-size: 1.2rem;
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    background: var(--dark);
    color: var(--white);
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

footer h5 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

footer a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.3rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .hero-illustration i {
        font-size: 8rem;
    }
}



/* About Us Page */
.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

section {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.team-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.value-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
}

.value-item .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 0;
    }
}


/* Feature Page */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}


.feature-section {
    margin-bottom: 4rem;
}

.feature-section:nth-child(even) {
    background-color: var(--light-gray);
    padding: 4rem 0;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 50vw;
    padding-right: 50vw;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.use-case {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.use-case h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: var(--primary);
    font-size: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-list li i {
    color: #10b981;
    margin-right: 0.75rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .feature-section:nth-child(even) {
        padding: 2rem 15px;
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* Pricing Page */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-card ul li i {
    color: #10b981;
    margin-right: 0.5rem;
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    font-weight: 700;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
}

/* Demo Page */
.demo-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.form-control,
.form-select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.expectations-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.expectations-card h4 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.expectations-card ul {
    list-style: none;
    padding: 0;
}

.expectations-card ul li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
}

.expectations-card ul li i {
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

.calendar-placeholder {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: var(--primary);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.calendar-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .demo-card {
        padding: 2rem;
    }

    section {
        padding: 50px 0;
    }
}

/* Contact Page */
/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info */
.contact-info {
    position: relative;
}

.info-card {
    background: white;
    border-radius: 24px;
    padding: 1rem 1rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.15);
}

.info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.info-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.info-card strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Contact Form */
.form-section {
    padding: 100px 0;
}

.form-container {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.4);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light);
}

.map-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    height: 500px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-placeholder {
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Business Hours */
.hours-section {
    padding: 100px 0;
}

.hours-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
}

.hours-card h3 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.hours-table {
    margin-bottom: 2rem;
}

.hours-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
}

.hours-table strong {
    color: var(--dark);
    font-weight: 700;
}

.alert-custom {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.alert-custom i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .info-card {
        margin-bottom: 2rem;
    }

    .contact-info {
        margin-top: 30px;
    }
}

/* FAQ Page */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.category-header h3 {
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.category-header i {
    margin-right: 1rem;
    font-size: 2rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary);
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--primary);
}

.accordion-button:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
}

.search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1.1rem;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.cta-box h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/* Register Section */
.register-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.register-container {
    max-width: 1100px;
    margin: 0 auto;
}

.register-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.register-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.register-left-content {
    position: relative;
    z-index: 1;
}

.register-left .logo-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.register-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.register-left>p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    margin: 0;
    opacity: 0.9;
}

.register-right {
    padding: 2rem;
}

.register-header {
    text-align: center;
    margin-bottom: 3rem;
}

.register-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.register-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    outline: none;
}

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--primary);
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    border: 2px solid #e2e8f0;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-register:hover::before {
    width: 300px;
    height: 300px;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.4);
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: var(--gray);
    font-weight: 600;
}

.social-login {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.social-btn:hover {
    border-color: var(--primary);
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 1.2rem;
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.login-link p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.login-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.login-link a:hover {
    color: var(--primary-dark);
}