/* ===================================
   GET IN TOUCH SECTION STYLES
   ================================== */
.get-in-touch {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-light);
}

.get-in-touch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

/* Touch Info Section - Left Side */
.touch-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.touch-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.touch-info .section-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 2.25rem;
    position: relative;
    z-index: 2;
}

.touch-intro {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.touch-details {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.touch-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.touch-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.touch-icon {
    font-size: 1.25rem;
    margin-right: var(--spacing-sm);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.touch-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.touch-label {
    font-family: var(--font-secondary);
    font-weight: var(--font-bold);
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4px;
    display: block;
}

.touch-text span:not(.touch-label) {
    font-family: var(--font-primary);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.company-brand {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.company-brand strong {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--text-light);
}

/* Touch Form Section - Right Side */
.touch-form-section {
    background-color: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.touch-form-title {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.touch-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.touch-form {
    display: flex;
    flex-direction: column;
}

.touch-form-group {
    margin-bottom: var(--spacing-sm);
}

.touch-form-label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.touch-form-input,
.touch-form-textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-medium);
    transition: var(--transition);
    background-color: var(--background-white);
    color: var(--text-primary);
}

.touch-form-input:focus,
.touch-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-focus);
    background-color: var(--accent-color);
}

.touch-form-textarea {
    resize: vertical;
    min-height: 130px;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.touch-form-textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-primary);
}

.touch-form .btn {
    margin-top: var(--spacing-md);
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .get-in-touch-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .touch-info {
        order: 2;
    }

    .touch-form-section {
        order: 1;
    }

    .touch-info,
    .touch-form-section {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .get-in-touch {
        padding: var(--spacing-xl) 0;
    }

    .touch-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .touch-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-xs);
    }

    .touch-text {
        align-items: center;
    }

    .touch-form-input,
    .touch-form-textarea {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .touch-info,
    .touch-form-section {
        padding: var(--spacing-md);
    }

    .touch-info .section-title {
        font-size: 1.75rem;
    }

    .touch-form-title {
        font-size: 1.5rem;
    }
}