/* --- CONTACT FORM BASE --- */
.starter-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .starter-contact-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
    .starter-contact-info { width: 45%; }
    .starter-contact-form-box { width: 55%; }
}

/* Info Side */
.starter-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.starter-contact-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.starter-contact-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.8;
}

.starter-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.starter-contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.starter-contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.starter-contact-detail-item:hover .starter-contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.starter-contact-detail-text h5 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.starter-contact-detail-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Form Side */
.starter-contact-form-box {
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.starter-form-group {
    margin-bottom: 20px;
}

.starter-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.starter-form-input, 
.starter-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

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

.starter-contact-submit {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- STYLE 1: CLASSIC (Refined Reference) --- */
.starter-contact--classic .starter-contact-info {
    padding-right: 40px;
}
.starter-contact--classic .starter-contact-title { color: #111827; }
.starter-contact--classic .starter-contact-desc { color: #4b5563; }
.starter-contact--classic .starter-contact-icon {
    background: #eff6ff;
    color: #2563eb;
}
.starter-contact--classic .starter-contact-detail-text p { color: #1f2937; }

.starter-contact--classic .starter-contact-form-box {
    background-color: #2563eb; /* Blue bg like reference */
    color: white;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

.starter-contact--classic .starter-form-label { color: rgba(255,255,255,0.9); }

.starter-contact--classic .starter-form-input,
.starter-contact--classic .starter-form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.starter-contact--classic .starter-form-input:focus,
.starter-contact--classic .starter-form-textarea:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}
.starter-contact--classic .starter-form-input::placeholder,
.starter-contact--classic .starter-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.starter-contact--classic .starter-contact-submit {
    background: white;
    color: #2563eb;
}
.starter-contact--classic .starter-contact-submit:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- STYLE 2: GLASSMORPHISM --- */
.starter-contact--glass {
    position: relative;
    padding: 40px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
}

/* Abstract Blobs */
.starter-contact--glass::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(60px);
}
.starter-contact--glass::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.starter-contact--glass .starter-contact-title,
.starter-contact--glass .starter-contact-desc,
.starter-contact--glass .starter-contact-detail-text p {
    color: white;
}
.starter-contact--glass .starter-contact-detail-text h5 { color: rgba(255,255,255,0.7); }

.starter-contact--glass .starter-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.starter-contact--glass .starter-contact-form-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.starter-contact--glass .starter-form-label { color: white; }

.starter-contact--glass .starter-form-input,
.starter-contact--glass .starter-form-textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}
.starter-contact--glass .starter-form-input:focus,
.starter-contact--glass .starter-form-textarea:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.starter-contact--glass .starter-contact-submit {
    background: white;
    color: #4f46e5;
}
.starter-contact--glass .starter-contact-submit:hover {
    background: #f3f4f6;
    transform: scale(1.02);
}

/* --- STYLE 3: FLOATING MATERIAL --- */
.starter-contact--floating .starter-contact-form-box {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    top: -20px; /* Float up effect */
}
@media (max-width: 991px) {
    .starter-contact--floating .starter-contact-form-box { top: 0; }
}

.starter-contact--floating .starter-contact-title { color: #111827; position: relative; display: inline-block; }
.starter-contact--floating .starter-contact-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #4f46e5;
    border-radius: 2px;
}

.starter-contact--floating .starter-contact-desc { color: #4b5563; margin-top: 16px; }

.starter-contact--floating .starter-contact-icon {
    background: white;
    color: #4f46e5;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.starter-contact--floating .starter-form-label { color: #374151; }

.starter-contact--floating .starter-form-input,
.starter-contact--floating .starter-form-textarea {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #111827;
}
.starter-contact--floating .starter-form-input:focus,
.starter-contact--floating .starter-form-textarea:focus {
    background: white;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.starter-contact--floating .starter-contact-submit {
    background: #4f46e5;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}
.starter-contact--floating .starter-contact-submit:hover {
    background: #4338ca;
    transform: translateY(-2px);
}