    /* Contact Page Styles */
    .contact-hero-section {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 120px 0 100px;
        color: var(--uplancer-text);
        position: relative;
        overflow: hidden;
        min-height: 90vh;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
        opacity: 0.8;
    }

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

    .contact-hero-text {
        max-width: 600px;
    }

    .contact-hero-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 12px 24px;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 35px;
        color: var(--uplancer-purple);
        animation: fadeInUp 0.8s ease-out;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .contact-hero-badge i {
        color: var(--uplancer-orange);
        margin-right: 12px;
        font-size: 1.1rem;
    }

    .contact-hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.1;
        color: var(--uplancer-text);
        animation: fadeInUp 0.8s ease-out 0.2s both;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .contact-hero-description {
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 40px;
        color: var(--uplancer-gray);
        animation: fadeInUp 0.8s ease-out 0.4s both;
        max-width: 800px;
    }

    .contact-hero-visual {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-floating-elements {
        position: relative;
        width: 300px;
        height: 300px;
    }

    .contact-floating-element {
        position: absolute;
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #F7931E;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 2px solid #F7931E;
        animation: float 6s ease-in-out infinite;
        animation-delay: var(--delay);
    }

    .contact-floating-element:nth-child(1) {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-floating-element:nth-child(2) {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .contact-floating-element:nth-child(3) {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-floating-element:nth-child(4) {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

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

    .contact-floating-element:nth-child(2) {
        animation-name: floatRight;
    }

    @keyframes floatRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0px);
        }
        50% {
            transform: translateY(-50%) translateX(-20px);
        }
    }

    .contact-floating-element:nth-child(3) {
        animation-name: floatBottom;
    }

    @keyframes floatBottom {
        0%, 100% {
            transform: translateY(0px) translateX(-50%);
        }
        50% {
            transform: translateY(20px) translateX(-50%);
        }
    }

    .contact-floating-element:nth-child(4) {
        animation-name: floatLeft;
    }

    @keyframes floatLeft {
        0%, 100% {
            transform: translateY(-50%) translateX(0px);
        }
        50% {
            transform: translateY(-50%) translateX(20px);
        }
    }

    /* Contact Section */
    .contact-section {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 80px 0;
        position: relative;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.03) 0%, transparent 50%);
        opacity: 0.5;
    }

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

    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .contact-info-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--uplancer-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .contact-info-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        border-color: var(--uplancer-purple);
        background: rgba(255, 255, 255, 0.95);
    }

    .contact-info-card:hover::before {
        opacity: 1;
        height: 6px;
    }

    .contact-info-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: #F7931E;
        margin: 0 auto 25px;
        transition: all 0.3s ease;
        border: 2px solid rgba(247, 147, 30, 0.3);
        box-shadow: 0 8px 25px rgba(247, 147, 30, 0.2);
    }

    .contact-info-card:hover .contact-info-icon {
        transform: scale(1.15) rotate(5deg);
        background: var(--uplancer-gradient);
        color:  #F7931E;
        box-shadow: 0 15px 35px rgba(247, 147, 30, 0.5);
        border-color: transparent;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1.15) rotate(5deg);
        }
        50% {
            transform: scale(1.2) rotate(5deg);
        }
    }

    .contact-info-card h4 {
        font-weight: 700;
        color: var(--uplancer-text);
        margin-bottom: 15px;
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .contact-info-card p {
        color: var(--uplancer-gray);
        line-height: 1.6;
        margin: 0;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .contact-info-card:hover h4 {
        color: var(--uplancer-purple);
        transform: translateY(-2px);
    }

    .contact-info-card:hover p {
        color: var(--uplancer-text);
        transform: translateY(-1px);
    }

    /* Contact Form */
    .contact-form-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 50px 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.4);
        position: relative;
        overflow: hidden;
    }

    .contact-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--uplancer-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .contact-form-card:hover::before {
        opacity: 1;
        height: 6px;
    }

    .contact-form-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.95);
    }

    .form-floating {
        margin-bottom: 20px;
    }

    .form-control {
        border: 2px solid rgba(247, 147, 30, 0.2);
        border-radius: 12px;
        padding: 15px 20px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .form-control:focus {
        border-color: #F7931E;
        box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.25);
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-2px);
    }

    .form-control:hover {
        border-color: rgba(247, 147, 30, 0.4);
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
    }

    .form-floating label {
        color: var(--uplancer-gray);
        font-weight: 500;
    }

    .contact-submit-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--uplancer-gradient);
        color:  rgba(93, 57, 145, 0.3);
        padding: 16px 32px;
        border-radius: 30px;
        border: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(93, 57, 145, 0.3);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .contact-submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .contact-submit-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(93, 57, 145, 0.5);
        color:  #F7931E;
    }

    .contact-submit-btn:hover i {
        transform: translateX(8px) rotate(15deg);
    }

    .contact-submit-btn:hover::before {
        left: 100%;
    }

    .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #25D366;
        color: white;
        padding: 16px 32px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
            transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        margin-top: 20px;
    }

    .whatsapp-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
        color: white;
        text-decoration: none;
        background: #128C7E;
    }

    .whatsapp-btn:hover i {
        transform: scale(1.2);
        animation: bounce 0.6s ease-in-out;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: scale(1.2);
        }
        40% {
            transform: scale(1.3);
        }
        60% {
            transform: scale(1.25);
        }
    }

    /* Alert Styles */
    .alert-custom {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
    }

    /* Section Headings */
    .section-heading {
        font-weight: 800;
        color: var(--uplancer-text);
        margin-bottom: 1.2rem;
        position: relative;
        text-align: center;
        font-size: 2.5rem;
    }

    .section-heading::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 3px;
        background: var(--uplancer-gradient);
        border-radius: 2px;
    }

    .section-subtitle {
        text-align: center;
        color: var(--uplancer-gray);
        font-size: 1.1rem;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .contact-hero-title {
            font-size: 2.5rem;
        }
        
        .contact-hero-description {
            font-size: 1.1rem;
        }

        .contact-hero-visual {
            height: 300px;
        }

        .contact-floating-elements {
            width: 250px;
            height: 250px;
        }

        .contact-floating-element {
            width: 60px;
            height: 60px;
            font-size: 1.4rem;
        }

        .contact-info-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .contact-info-card {
            padding: 32px 24px;
        }

        .contact-info-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .contact-form-card {
            padding: 40px 30px;
        }
    }

    @media (max-width: 480px) {
        .contact-hero-content {
            gap: 30px;
        }

        .contact-hero-title {
            font-size: 2rem;
        }
        
        .contact-hero-description {
            font-size: 1rem;
        }

        .contact-hero-visual {
            height: 250px;
        }

        .contact-floating-elements {
            width: 200px;
            height: 200px;
        }

        .contact-floating-element {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .contact-info-grid {
            gap: 20px;
        }

        .contact-info-card {
            padding: 28px 20px;
        }

        .contact-info-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }

        .contact-form-card {
            padding: 30px 25px;
        }
        }
    /* Multi-step Form & Side Info Styles */
    .contact-card-inline {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border-radius: 12px;
        background: var(--card, #fff);
        border: 1px solid var(--border, #e4e4e7);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .contact-card-inline:hover {
        border-color: rgba(247, 147, 30, 0.5);
        color: inherit;
        text-decoration: none;
    }
    .contact-card-inline .icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(247, 147, 30, 0.1);
        color: #F7931E;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        transition: all 0.3s;
    }
    .contact-card-inline:hover .icon-box {
        background: #F7931E;
        color: #fff;
    }
    .contact-card-inline .label {
        font-size: 0.875rem;
        color: var(--uplancer-gray);
    }
    .contact-card-inline .value {
        font-weight: 600;
        color: var(--uplancer-text);
        margin: 0;
    }
    .working-hours-card {
        padding: 1.5rem;
        border-radius: 12px;
        background: var(--card, #fff);
        border: 1px solid var(--border, #e4e4e7);
    }

    /* Step Indicators */
    .step-tracker {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;
    }
    .step-item {
        display: flex;
        align-items: center;
        flex: 1;
    }
    .step-item:last-child {
        flex: 0;
    }
    .step-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.875rem;
        transition: all 0.3s ease;
        background: var(--muted, #f4f4f5);
        color: var(--muted-foreground, #71717a);
    }
    .step-circle.active {
        background: rgba(247, 147, 30, 0.2);
        color: #F7931E;
    }
    .step-circle.completed {
        background: #F7931E;
        color: #fff;
    }
    .step-line {
        flex: 1;
        height: 4px;
        background: var(--muted, #f4f4f5);
        margin: 0 10px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .step-line.completed {
        background: #F7931E;
    }

    /* Form Inputs */
    .form-label {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--uplancer-text);
        margin-bottom: 0.5rem;
        display: block;
    }
    /* pill buttons */
    .pill-grid {
        display: grid;
        gap: 0.75rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .pill-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    @media(max-width: 576px) {
        .pill-grid, .pill-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    }
    .pill-btn {
        padding: 12px;
        border-radius: 12px;
        border: 1px solid var(--border, #e4e4e7);
        background: transparent;
        color: var(--uplancer-text);
        font-size: 0.875rem;
        font-weight: 500;
        text-align: left;
        transition: all 0.3s;
        cursor: pointer;
        width: 100%;
    }
    .pill-btn:hover {
        border-color: rgba(247, 147, 30, 0.5);
    }
    .pill-btn.active {
        border-color: #F7931E;
        background: rgba(247, 147, 30, 0.1);
        color: #F7931E;
    }
    
    .step-pane {
        display: none;
        animation: fadeInRight 0.4s ease forwards;
    }
    .step-pane.active {
        display: block;
    }
    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .btn-nav-outline {
        border: 1px solid var(--border, #e4e4e7);
        background: transparent;
        color: var(--uplancer-text);
        padding: 10px 24px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s;
    }
    .btn-nav-outline:hover { background: var(--muted, #f4f4f5); }
    
    .btn-nav-primary {
        background: #F7931E;
        color: #fff;
        padding: 10px 24px;
        border-radius: 30px;
        border: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .btn-nav-primary:hover {
        background: #e58215;
    }
