    .contact-page {
        background-color: #fff;
        min-height: 100vh;
        padding-top: 120px;
        position: relative;
        overflow: hidden;
    }

    .contact-page::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .contact-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 40px 100px 40px;
        position: relative;
        z-index: 1;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 80px;
        align-items: flex-start;
    }

    .contact-left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .contact-overline {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #EA580C;
        margin-bottom: 20px;
        display: block;
    }

    .contact-headline {
        font-family: 'Satoshi', sans-serif;
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 1;
        color: #111;
        margin: 0 0 30px 0;
        letter-spacing: -0.02em;
    }

    .contact-headline .highlight {
        color: #64748B;
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-weight: 400;
    }

    .contact-desc {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        line-height: 1.6;
        color: #4B5563;
        max-width: 90%;
        margin-bottom: 50px;
    }

    .direct-links {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

    .contact-link-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .link-icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 1px solid #E2E8F0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #111;
        background: #fff;
        transition: all 0.3s ease;
    }

    .contact-link-item:hover .link-icon-circle {
        background: #000;
        color: #fff;
        border-color: #000;
        transform: scale(1.1);
    }

    .link-content {
        display: flex;
        flex-direction: column;
    }

    .link-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        color: #94A3B8;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.05em;
        margin-bottom: 2px;
    }

    .link-value {
        font-family: 'Satoshi', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: #111;
        position: relative;
        transition: color 0.3s ease;
    }

    .contact-link-item:hover .link-value {
        color: #EA580C;
    }

    .social-row {
        display: flex;
        gap: 20px;
        margin-top: auto;
    }

    .social-pill {
        padding: 10px 24px;
        border: 1px solid #E2E8F0;
        border-radius: 50px;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .social-pill i {
        font-size: 0.9rem;
    }

    .social-pill:hover {
        background: #000;
        color: #fff;
        border-color: #000;
        transform: translateY(-2px);
    }


    .contact-right {
        position: relative;
    }

    .form-wrapper {
        background: #F8FAFC;
        border-radius: 32px;
        padding: 50px;
        border: 1px solid #F1F5F9;
    }

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

    .form-field {
        margin-bottom: 25px;
    }

    .field-label {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #111;
        margin-bottom: 10px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        background: #fff;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 16px 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        color: #111;
        transition: all 0.3s ease;
        box-sizing: border-box;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

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

    .file-attachment {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
        cursor: pointer;
        width: fit-content;
    }

    .clip-icon {
        font-size: 1.1rem;
        color: #94A3B8;
    }

    .attach-text {
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        color: #64748B;
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: color 0.3s;
    }

    .file-attachment:hover .attach-text {
        color: #111;
    }

    .send-btn {
        width: 100%;
        background: #111;
        color: #fff;
        border: none;
        padding: 20px;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .send-btn span {
        position: relative;
        z-index: 2;
    }

    /* .send-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #EA580C;
        transition: width 0.3s ease;
        z-index: 1;
    }

    .send-btn:hover::before {
        width: 100%;
    } */


    .btn-arrow {
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .send-btn:hover .btn-arrow {
        transform: translateX(5px);
    }

    body.dark-mode .contact-page {
        background-color: #000000;
    }

    body.dark-mode .contact-page::before {
        background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(17, 24, 39, 0) 70%);
    }

    body.dark-mode .contact-hero {
        background-color: #000000;
    }

    body.dark-mode .contact-overline {
        color: #F97316;
    }

    body.dark-mode .contact-headline {
        color: #F9FAFB;
    }

    body.dark-mode .contact-headline .highlight {
        color: #9CA3AF;
    }

    body.dark-mode .contact-desc {
        color: #D1D5DB;
    }

    body.dark-mode .link-icon-circle {
        background: #000000;
        border-color: #374151;
        color: #F9FAFB;
    }

    body.dark-mode .contact-link-item:hover .link-icon-circle {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    body.dark-mode .link-label {
        color: #9CA3AF;
    }

    body.dark-mode .link-value {
        color: #F9FAFB;
    }

    body.dark-mode .contact-link-item:hover .link-value {
        color: #F97316;
    }

    body.dark-mode .social-pill {
        background: transparent;
        border-color: #374151;
        color: #D1D5DB;
    }

    body.dark-mode .social-pill:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    body.dark-mode .form-wrapper {
        background: #000000;
        border-color: #374151;
    }

    body.dark-mode .field-label {
        color: #F9FAFB;
    }

    body.dark-mode .form-input,
    body.dark-mode .form-textarea {
        background: #000000;
        border-color: #374151;
        color: #F9FAFB;
    }

    body.dark-mode .form-input:focus,
    body.dark-mode .form-textarea:focus {
        border-color: #F97316;
        background: #000000;
    }

    /* body.dark-mode .send-btn {
        background: #fff;
        color: #000;
    }

    body.dark-mode .send-btn::before {
        background: #EA580C;
    }

    body.dark-mode .send-btn:hover {
        color: #fff;
    } */


    /* Responsive */
    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .contact-headline {
            font-size: 3.5rem;
        }

        .form-wrapper {
            padding: 40px 30px;
        }
    }

    @media (max-width: 768px) {
        .contact-page {
            padding-top: 100px;
        }

        .contact-wrapper {
            padding: 20px;
        }

        .contact-headline {
            font-size: 2.8rem;
        }

        .contact-desc {
            margin-bottom: 25px;
        }

        .direct-links {
            margin-bottom: 25px;
        }

        .contact-grid {
            gap: 20px;
        }

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

        .form-wrapper {
            padding: 15px 25px 25px;
            border-radius: 24px;
        }

        .link-value {
            font-size: 1.2rem;
        }

        .contact-left {
            align-items: center;
            text-align: center;
        }

        .contact-desc {
            margin-bottom: 30px;
        }

        .direct-links {
            align-items: center;
            width: 100%;
            margin-bottom: 30px;
        }

        .contact-right {
            margin-top: 40px;
        }

        .social-row {
            justify-content: center;
            flex-wrap: wrap;
        }
    }

    @media (max-width: 480px) {
        .contact-headline {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .contact-desc {
            font-size: 1rem;
            max-width: 100%;
        }

        .link-icon-circle {
            width: 50px;
            height: 50px;
            font-size: 1rem;
        }

        .link-value {
            font-size: 1.1rem;
        }

        .form-wrapper {
            padding: 25px 20px;
            border-radius: 20px;
        }

        .social-row {
            gap: 10px;
        }

        .social-pill {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }