.contact-hero {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(ellipse at center, rgba(211, 176, 93, 0.1) 0%, var(--bg-primary) 70%);
        padding: 150px 20px 80px;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.9) 100%);
        opacity: 0.9;
        pointer-events: none;
    }

    .contact-hero-content {
        text-align: center;
        max-width: 700px;
        position: relative;
        z-index: 2;
    }

    .contact-hero h1 {
        font-size: clamp(36px, 6vw, 56px);
        font-weight: 800;
        margin-bottom: 20px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
    }

    .contact-hero h1 span {
        background: var(--gradient-primary);
        background-clip: text;
        color: var(--primary-red);
    }

    .contact-hero p {
        font-size: 18px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info-cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .info-card {
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.3s ease;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(211, 176, 93, 0.3);
    }

    .info-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        background: rgba(211, 176, 93, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary-red);
    }

    .info-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
    }

    .info-content p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .info-content a {
        color: var(--primary-red);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info-content a:hover {
        color: #FFD700;
    }

    .contact-form-wrapper {
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px;
        position: relative;
        overflow: hidden;
    }

    .contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), #FFD700);
    }

    .form-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
    }

    .form-subtitle {
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 32px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
    }

    .input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        background: var(--bg-main);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .input-wrapper:focus-within {
        border-color: var(--primary-red);
        box-shadow: 0 0 0 3px rgba(211, 176, 93, 0.1);
    }

    .input-wrapper i {
        padding: 0 15px;
        color: var(--primary-red);
        font-size: 16px;
        opacity: 0.8;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        width: 100%;
        background: transparent;
        border: none;
        color: #ffffff;
        padding: 14px 15px 14px 0;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        outline: none;
    }

    .input-wrapper textarea {
        resize: vertical;
        min-height: 80px;
    }

    .input-wrapper input::placeholder,
    .input-wrapper textarea::placeholder {
        color: #555;
    }

    .form-checkbox-group {
        margin-top: 10px;
    }

    .custom-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        position: relative;
        user-select: none;
        -webkit-user-select: none;
    }

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkmark {
        position: relative;
        top: 2px;
        left: 0;
        height: 20px;
        width: 20px;
        min-width: 20px;
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .custom-checkbox:hover input ~ .checkmark {
        border-color: var(--primary-red);
        box-shadow: 0 0 0 3px rgba(211, 176, 93, 0.1);
    }

    .custom-checkbox input:checked ~ .checkmark {
        background-color: var(--primary-red);
        border-color: var(--primary-red);
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid var(--bg-main);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .custom-checkbox input:checked ~ .checkmark:after {
        display: block;
        animation: checkAnim 0.2s ease-in-out forwards;
    }

    .checkbox-text {
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.5;
        margin-top: 2px;
    }

    .checkbox-text a {
        color: var(--primary-red);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .checkbox-text a:hover {
        color: #FFD700;
    }

    @keyframes checkAnim {
        0% { height: 0; width: 0; opacity: 0; }
        100% { height: 10px; width: 5px; opacity: 1; }
    }

    .map-section {
        padding: 0 0 80px;
    }

    .map-wrapper {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .map-wrapper iframe {
        width: 100%;
        height: 500px;
        border: none;
        display: block;
    }

    @media (max-width: 968px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-hero {
            min-height: 50vh;
            padding: 120px 20px 60px;
        }

        .contact-section {
            padding: 60px 0;
        }

        .contact-form-wrapper {
            padding: 32px 24px;
        }

        .info-card {
            padding: 24px;
        }
    }
    .contact-socials{
            display: flex; gap: 12px; margin-top: 12px;
        }

    @media (max-width: 480px) {
        .contact-form-wrapper {
            padding: 24px 20px;
        }

        .form-row {
            grid-template-columns: 1fr !important;
        }

        .info-card {
            flex-direction: column;
            text-align: center;
        }
        .contact-socials{
            justify-content: center;
        }
        .info-icon {
            margin: 0 auto;
        }
        .info-content{
            width: 100%
        }
    }